less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

46051 řádky
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. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. }
  1807. //species
  1808. function getSpeciesInfo(speciesList) {
  1809. let result = new Set();
  1810. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1811. result.add(entry)
  1812. });
  1813. return Array.from(result);
  1814. };
  1815. function getSpeciesInfoHelper(species) {
  1816. if (!speciesData[species]) {
  1817. console.warn(species + " doesn't exist");
  1818. return [];
  1819. }
  1820. if (speciesData[species].parents) {
  1821. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1822. } else {
  1823. return [species];
  1824. }
  1825. }
  1826. characterMakers.push(() => makeCharacter(
  1827. {
  1828. name: "Fen",
  1829. species: ["crux"],
  1830. description: {
  1831. title: "Bio",
  1832. text: "Very furry. Sheds on everything."
  1833. },
  1834. tags: [
  1835. "anthro",
  1836. "goo"
  1837. ]
  1838. },
  1839. {
  1840. front: {
  1841. height: math.unit(2.2428, "meter"),
  1842. weight: math.unit(124.738, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/fen/front.svg",
  1846. extra: 1804/1562,
  1847. bottom: 205/2009
  1848. }
  1849. },
  1850. diving: {
  1851. height: math.unit(3.3, "meters"),
  1852. weight: math.unit(124.738, "kg"),
  1853. name: "Diving",
  1854. image: {
  1855. source: "./media/characters/fen/diving.svg"
  1856. }
  1857. },
  1858. maw: {
  1859. height: math.unit(2.83, "feet"),
  1860. name: "Maw",
  1861. image: {
  1862. source: "./media/characters/fen/maw.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(2.2428, "meter"),
  1867. weight: math.unit(124.738, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/fen/back.svg",
  1871. },
  1872. info: {
  1873. description: {
  1874. mode: "append",
  1875. text: "\n\nHe is not currently looking at you."
  1876. }
  1877. }
  1878. },
  1879. full: {
  1880. height: math.unit(0.91, "meter"),
  1881. weight: math.unit(225, "kg"),
  1882. name: "Full",
  1883. image: {
  1884. source: "./media/characters/fen/full.svg",
  1885. extra: 1133/859,
  1886. bottom: 145/1278
  1887. },
  1888. info: {
  1889. description: {
  1890. mode: "append",
  1891. text: "\n\nMunch."
  1892. }
  1893. }
  1894. },
  1895. kneeling: {
  1896. height: math.unit(5.4, "feet"),
  1897. weight: math.unit(124.738, "kg"),
  1898. name: "Kneeling",
  1899. image: {
  1900. source: "./media/characters/fen/kneeling.svg",
  1901. extra: 563 / 507
  1902. }
  1903. },
  1904. goo: {
  1905. height: math.unit(2.8, "feet"),
  1906. weight: math.unit(125, "kg"),
  1907. capacity: math.unit(1, "people"),
  1908. name: "Goo",
  1909. image: {
  1910. source: "./media/characters/fen/goo.svg",
  1911. bottom: 116 / 613
  1912. }
  1913. },
  1914. lounging: {
  1915. height: math.unit(6.5, "feet"),
  1916. weight: math.unit(125, "kg"),
  1917. name: "Lounging",
  1918. image: {
  1919. source: "./media/characters/fen/lounging.svg"
  1920. }
  1921. },
  1922. },
  1923. [
  1924. {
  1925. name: "Small",
  1926. height: math.unit(2.2428, "meter")
  1927. },
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(12, "feet"),
  1931. default: true,
  1932. },
  1933. {
  1934. name: "Big",
  1935. height: math.unit(20, "feet")
  1936. },
  1937. {
  1938. name: "Minimacro",
  1939. height: math.unit(40, "feet"),
  1940. info: {
  1941. description: {
  1942. mode: "append",
  1943. text: "\n\nTOO DAMN BIG"
  1944. }
  1945. }
  1946. },
  1947. {
  1948. name: "Macro",
  1949. height: math.unit(100, "feet"),
  1950. info: {
  1951. description: {
  1952. mode: "append",
  1953. text: "\n\nTOO DAMN BIG"
  1954. }
  1955. }
  1956. },
  1957. {
  1958. name: "Megamacro",
  1959. height: math.unit(2, "miles")
  1960. },
  1961. {
  1962. name: "Gigamacro",
  1963. height: math.unit(10, "earths")
  1964. },
  1965. ]
  1966. ))
  1967. characterMakers.push(() => makeCharacter(
  1968. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1969. {
  1970. front: {
  1971. height: math.unit(183, "cm"),
  1972. weight: math.unit(80, "kg"),
  1973. name: "Front",
  1974. image: {
  1975. source: "./media/characters/sofia-fluttertail/front.svg",
  1976. bottom: 0.01,
  1977. extra: 2154 / 2081
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(183, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front (alt)",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(183, "cm"),
  1990. weight: math.unit(80, "kg"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/back.svg"
  1994. }
  1995. },
  1996. kneeling: {
  1997. height: math.unit(125, "cm"),
  1998. weight: math.unit(80, "kg"),
  1999. name: "Kneeling",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2002. extra: 1033 / 977,
  2003. bottom: 23.7 / 1057
  2004. }
  2005. },
  2006. maw: {
  2007. height: math.unit(183 / 5, "cm"),
  2008. name: "Maw",
  2009. image: {
  2010. source: "./media/characters/sofia-fluttertail/maw.svg"
  2011. }
  2012. },
  2013. mawcloseup: {
  2014. height: math.unit(183 / 5 * 0.41, "cm"),
  2015. name: "Maw (Closeup)",
  2016. image: {
  2017. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(1.17, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/sofia-fluttertail/paws.svg",
  2025. extra: 851 / 851,
  2026. bottom: 17 / 868
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(1.83, "meter")
  2034. },
  2035. {
  2036. name: "Size Thief",
  2037. height: math.unit(18, "feet")
  2038. },
  2039. {
  2040. name: "50 Foot Collie",
  2041. height: math.unit(50, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(96, "feet"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamerger",
  2050. height: math.unit(650, "feet")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/march/front.svg",
  2063. extra: 1992/1851,
  2064. bottom: 39/2031
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(0.9, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/march/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(7.9, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(220, "meters")
  2083. },
  2084. {
  2085. name: "Megamacro",
  2086. height: math.unit(2.98, "km"),
  2087. default: true
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(15963, "km")
  2092. },
  2093. {
  2094. name: "Teramacro",
  2095. height: math.unit(2980000000, "km")
  2096. },
  2097. {
  2098. name: "Examacro",
  2099. height: math.unit(250, "parsecs")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(6, "feet"),
  2108. weight: math.unit(60, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/noir/front.svg",
  2112. extra: 1,
  2113. bottom: 0.032
  2114. }
  2115. },
  2116. },
  2117. [
  2118. {
  2119. name: "Normal",
  2120. height: math.unit(6.6, "feet")
  2121. },
  2122. {
  2123. name: "Macro",
  2124. height: math.unit(500, "feet")
  2125. },
  2126. {
  2127. name: "Megamacro",
  2128. height: math.unit(2.5, "km"),
  2129. default: true
  2130. },
  2131. {
  2132. name: "Gigamacro",
  2133. height: math.unit(22500, "km")
  2134. },
  2135. {
  2136. name: "Teramacro",
  2137. height: math.unit(2500000000, "km")
  2138. },
  2139. {
  2140. name: "Examacro",
  2141. height: math.unit(200, "parsecs")
  2142. },
  2143. ]
  2144. ))
  2145. characterMakers.push(() => makeCharacter(
  2146. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2147. {
  2148. front: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(100, "kg"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/okuri/front.svg",
  2154. extra: 1,
  2155. bottom: 0.037
  2156. }
  2157. },
  2158. back: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(100, "kg"),
  2161. name: "Back",
  2162. image: {
  2163. source: "./media/characters/okuri/back.svg",
  2164. extra: 1,
  2165. bottom: 0.007
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(100, "miles"),
  2173. default: true
  2174. },
  2175. ]
  2176. ))
  2177. characterMakers.push(() => makeCharacter(
  2178. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2179. {
  2180. front: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(100, "kg"),
  2183. name: "Front",
  2184. image: {
  2185. source: "./media/characters/manny/front.svg",
  2186. extra: 1,
  2187. bottom: 0.06
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(100, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/manny/back.svg",
  2196. extra: 1,
  2197. bottom: 0.014
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(7, "feet"),
  2205. },
  2206. {
  2207. name: "Macro",
  2208. height: math.unit(78, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro+",
  2213. height: math.unit(300, "meters")
  2214. },
  2215. {
  2216. name: "Macro++",
  2217. height: math.unit(2400, "meters")
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(5167, "meters")
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(41769, "miles")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(100, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/adake/front-1.svg"
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front (Alt)",
  2244. image: {
  2245. source: "./media/characters/adake/front-2.svg",
  2246. extra: 1,
  2247. bottom: 0.01
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/adake/back.svg",
  2256. }
  2257. },
  2258. kneel: {
  2259. height: math.unit(5.385, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Kneeling",
  2262. image: {
  2263. source: "./media/characters/adake/kneel.svg",
  2264. bottom: 0.052
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(7, "feet"),
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(78, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Macro+",
  2280. height: math.unit(300, "meters")
  2281. },
  2282. {
  2283. name: "Macro++",
  2284. height: math.unit(2400, "meters")
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(5167, "meters")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(41769, "miles")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(1.65, "meters"),
  2301. weight: math.unit(50, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/elijah/front.svg",
  2305. extra: 858 / 830,
  2306. bottom: 95.5 / 953.8559
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(1.65, "meters"),
  2311. weight: math.unit(50, "kg"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/elijah/back.svg",
  2315. extra: 895 / 850,
  2316. bottom: 5.3 / 897.956
  2317. }
  2318. },
  2319. frontNsfw: {
  2320. height: math.unit(1.65, "meters"),
  2321. weight: math.unit(50, "kg"),
  2322. name: "Front (NSFW)",
  2323. image: {
  2324. source: "./media/characters/elijah/front-nsfw.svg",
  2325. extra: 858 / 830,
  2326. bottom: 95.5 / 953.8559
  2327. }
  2328. },
  2329. backNsfw: {
  2330. height: math.unit(1.65, "meters"),
  2331. weight: math.unit(50, "kg"),
  2332. name: "Back (NSFW)",
  2333. image: {
  2334. source: "./media/characters/elijah/back-nsfw.svg",
  2335. extra: 895 / 850,
  2336. bottom: 5.3 / 897.956
  2337. }
  2338. },
  2339. dick: {
  2340. height: math.unit(1, "feet"),
  2341. name: "Dick",
  2342. image: {
  2343. source: "./media/characters/elijah/dick.svg"
  2344. }
  2345. },
  2346. beakOpen: {
  2347. height: math.unit(1.25, "feet"),
  2348. name: "Beak (Open)",
  2349. image: {
  2350. source: "./media/characters/elijah/beak-open.svg"
  2351. }
  2352. },
  2353. beakShut: {
  2354. height: math.unit(1.25, "feet"),
  2355. name: "Beak (Shut)",
  2356. image: {
  2357. source: "./media/characters/elijah/beak-shut.svg"
  2358. }
  2359. },
  2360. footFlexing: {
  2361. height: math.unit(1.61, "feet"),
  2362. name: "Foot (Flexing)",
  2363. image: {
  2364. source: "./media/characters/elijah/foot-flexing.svg"
  2365. }
  2366. },
  2367. footStepping: {
  2368. height: math.unit(1.44, "feet"),
  2369. name: "Foot (Stepping)",
  2370. image: {
  2371. source: "./media/characters/elijah/foot-stepping.svg"
  2372. }
  2373. },
  2374. plantigradeLeg: {
  2375. height: math.unit(2.34, "feet"),
  2376. name: "Plantigrade Leg",
  2377. image: {
  2378. source: "./media/characters/elijah/plantigrade-leg.svg"
  2379. }
  2380. },
  2381. plantigradeFootLeft: {
  2382. height: math.unit(0.9, "feet"),
  2383. name: "Plantigrade Foot (Left)",
  2384. image: {
  2385. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2386. }
  2387. },
  2388. plantigradeFootRight: {
  2389. height: math.unit(0.9, "feet"),
  2390. name: "Plantigrade Foot (Right)",
  2391. image: {
  2392. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(1.65, "meters")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(55, "meters"),
  2404. default: true
  2405. },
  2406. {
  2407. name: "Macro+",
  2408. height: math.unit(105, "meters")
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(7 + 2/12, "feet"),
  2417. weight: math.unit(320, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/rai/front.svg",
  2421. extra: 1802/1696,
  2422. bottom: 68/1870
  2423. }
  2424. },
  2425. frontDressed: {
  2426. height: math.unit(7 + 2/12, "feet"),
  2427. weight: math.unit(320, "kg"),
  2428. name: "Front (Dressed)",
  2429. image: {
  2430. source: "./media/characters/rai/front-dressed.svg",
  2431. extra: 1802/1696,
  2432. bottom: 68/1870
  2433. }
  2434. },
  2435. side: {
  2436. height: math.unit(7 + 2/12, "feet"),
  2437. weight: math.unit(320, "kg"),
  2438. name: "Side",
  2439. image: {
  2440. source: "./media/characters/rai/side.svg",
  2441. extra: 1789/1710,
  2442. bottom: 115/1904
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(7 + 2/12, "feet"),
  2447. weight: math.unit(320, "kg"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/rai/back.svg",
  2451. extra: 1770/1707,
  2452. bottom: 28/1798
  2453. }
  2454. },
  2455. feral: {
  2456. height: math.unit(9.5, "feet"),
  2457. weight: math.unit(640, "kg"),
  2458. name: "Feral",
  2459. image: {
  2460. source: "./media/characters/rai/feral.svg",
  2461. extra: 945/553,
  2462. bottom: 176/1121
  2463. }
  2464. },
  2465. dragon: {
  2466. height: math.unit(23, "feet"),
  2467. weight: math.unit(50000, "lb"),
  2468. name: "Dragon",
  2469. image: {
  2470. source: "./media/characters/rai/dragon.svg",
  2471. extra: 2498 / 2030,
  2472. bottom: 85.2 / 2584
  2473. }
  2474. },
  2475. maw: {
  2476. height: math.unit(1.69, "feet"),
  2477. name: "Maw",
  2478. image: {
  2479. source: "./media/characters/rai/maw.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(7 + 2/12, "feet")
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(11, "feet")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(302, "feet"),
  2495. default: true
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2501. {
  2502. frontDressed: {
  2503. height: math.unit(216, "feet"),
  2504. weight: math.unit(7000000, "lb"),
  2505. name: "Front (Dressed)",
  2506. image: {
  2507. source: "./media/characters/jazzy/front-dressed.svg",
  2508. extra: 2738 / 2651,
  2509. bottom: 41.8 / 2786
  2510. }
  2511. },
  2512. backDressed: {
  2513. height: math.unit(216, "feet"),
  2514. weight: math.unit(7000000, "lb"),
  2515. name: "Back (Dressed)",
  2516. image: {
  2517. source: "./media/characters/jazzy/back-dressed.svg",
  2518. extra: 2775 / 2673,
  2519. bottom: 36.8 / 2817
  2520. }
  2521. },
  2522. front: {
  2523. height: math.unit(216, "feet"),
  2524. weight: math.unit(7000000, "lb"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/jazzy/front.svg",
  2528. extra: 2738 / 2651,
  2529. bottom: 41.8 / 2786
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(216, "feet"),
  2534. weight: math.unit(7000000, "lb"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/jazzy/back.svg",
  2538. extra: 2775 / 2673,
  2539. bottom: 36.8 / 2817
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(20, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/jazzy/maw.svg"
  2547. }
  2548. },
  2549. paws: {
  2550. height: math.unit(27.5, "feet"),
  2551. name: "Paws",
  2552. image: {
  2553. source: "./media/characters/jazzy/paws.svg"
  2554. }
  2555. },
  2556. eye: {
  2557. height: math.unit(4.4, "feet"),
  2558. name: "Eye",
  2559. image: {
  2560. source: "./media/characters/jazzy/eye.svg"
  2561. }
  2562. },
  2563. droneOffense: {
  2564. height: math.unit(9.5, "inches"),
  2565. name: "Drone (Offense)",
  2566. image: {
  2567. source: "./media/characters/jazzy/drone-offense.svg"
  2568. }
  2569. },
  2570. droneRecon: {
  2571. height: math.unit(9.5, "inches"),
  2572. name: "Drone (Recon)",
  2573. image: {
  2574. source: "./media/characters/jazzy/drone-recon.svg"
  2575. }
  2576. },
  2577. droneDefense: {
  2578. height: math.unit(9.5, "inches"),
  2579. name: "Drone (Defense)",
  2580. image: {
  2581. source: "./media/characters/jazzy/drone-defense.svg"
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Macro",
  2588. height: math.unit(216, "feet"),
  2589. default: true
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(9 + 6/12, "feet"),
  2598. weight: math.unit(700, "lb"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/flamm/front.svg",
  2602. extra: 1751/1632,
  2603. bottom: 46/1797
  2604. }
  2605. },
  2606. buff: {
  2607. height: math.unit(9 + 6/12, "feet"),
  2608. weight: math.unit(950, "lb"),
  2609. name: "Buff",
  2610. image: {
  2611. source: "./media/characters/flamm/buff.svg",
  2612. extra: 3018/2874,
  2613. bottom: 221/3239
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(9.5, "feet")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(200, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(5 + 3/12, "feet"),
  2634. weight: math.unit(60, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/zephiro/front.svg",
  2638. extra: 2309 / 2162,
  2639. bottom: 0.069
  2640. }
  2641. },
  2642. side: {
  2643. height: math.unit(5 + 3/12, "feet"),
  2644. weight: math.unit(60, "kg"),
  2645. name: "Side",
  2646. image: {
  2647. source: "./media/characters/zephiro/side.svg",
  2648. extra: 2403 / 2279,
  2649. bottom: 0.015
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 3/12, "feet"),
  2654. weight: math.unit(60, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/zephiro/back.svg",
  2658. extra: 2373 / 2244,
  2659. bottom: 0.013
  2660. }
  2661. },
  2662. hand: {
  2663. height: math.unit(0.68, "feet"),
  2664. name: "Hand",
  2665. image: {
  2666. source: "./media/characters/zephiro/hand.svg"
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/zephiro/paw.svg"
  2674. }
  2675. },
  2676. beans: {
  2677. height: math.unit(0.93, "feet"),
  2678. name: "Beans",
  2679. image: {
  2680. source: "./media/characters/zephiro/beans.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Micro",
  2687. height: math.unit(3, "inches")
  2688. },
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(5 + 3 / 12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(118, "feet")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(5, "feet"),
  2705. weight: math.unit(90, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/fory/front.svg",
  2709. extra: 2862 / 2674,
  2710. bottom: 180 / 3043.8
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(5, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/fory/back.svg",
  2719. extra: 2962 / 2791,
  2720. bottom: 106 / 3071.8
  2721. }
  2722. },
  2723. foot: {
  2724. height: math.unit(2.14, "feet"),
  2725. name: "Foot",
  2726. image: {
  2727. source: "./media/characters/fory/foot.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(5, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(50, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(10, "miles")
  2744. },
  2745. {
  2746. name: "Gigamacro",
  2747. height: math.unit(5, "earths")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(7, "feet"),
  2756. weight: math.unit(90, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/kurrikage/front.svg",
  2760. extra: 1845/1733,
  2761. bottom: 119/1964
  2762. }
  2763. },
  2764. back: {
  2765. height: math.unit(7, "feet"),
  2766. weight: math.unit(90, "kg"),
  2767. name: "Back",
  2768. image: {
  2769. source: "./media/characters/kurrikage/back.svg",
  2770. extra: 1790/1677,
  2771. bottom: 61/1851
  2772. }
  2773. },
  2774. dressed: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(90, "kg"),
  2777. name: "Dressed",
  2778. image: {
  2779. source: "./media/characters/kurrikage/dressed.svg",
  2780. extra: 1845/1733,
  2781. bottom: 119/1964
  2782. }
  2783. },
  2784. foot: {
  2785. height: math.unit(1.5, "feet"),
  2786. name: "Foot",
  2787. image: {
  2788. source: "./media/characters/kurrikage/foot.svg"
  2789. }
  2790. },
  2791. staff: {
  2792. height: math.unit(6.7, "feet"),
  2793. name: "Staff",
  2794. image: {
  2795. source: "./media/characters/kurrikage/staff.svg"
  2796. }
  2797. },
  2798. peek: {
  2799. height: math.unit(1.05, "feet"),
  2800. name: "Peeking",
  2801. image: {
  2802. source: "./media/characters/kurrikage/peek.svg",
  2803. bottom: 0.08
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(12, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Big",
  2815. height: math.unit(20, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(500, "feet")
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(20, "miles")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/shingo/front.svg",
  2836. extra: 1900/1825,
  2837. bottom: 82/1982
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/shingo/side.svg",
  2846. extra: 1930/1865,
  2847. bottom: 16/1946
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/shingo/back.svg",
  2856. extra: 1922/1852,
  2857. bottom: 16/1938
  2858. }
  2859. },
  2860. frontDressed: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(150, "lb"),
  2863. name: "Front-dressed",
  2864. image: {
  2865. source: "./media/characters/shingo/front-dressed.svg",
  2866. extra: 1900/1825,
  2867. bottom: 82/1982
  2868. }
  2869. },
  2870. paw: {
  2871. height: math.unit(1.29, "feet"),
  2872. name: "Paw",
  2873. image: {
  2874. source: "./media/characters/shingo/paw.svg"
  2875. }
  2876. },
  2877. hand: {
  2878. height: math.unit(1.07, "feet"),
  2879. name: "Hand",
  2880. image: {
  2881. source: "./media/characters/shingo/hand.svg"
  2882. }
  2883. },
  2884. frontAlt: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front (Alt)",
  2888. image: {
  2889. source: "./media/characters/shingo/front-alt.svg",
  2890. extra: 3511 / 3338,
  2891. bottom: 0.005
  2892. }
  2893. },
  2894. frontAlt2: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Front (Alt 2)",
  2898. image: {
  2899. source: "./media/characters/shingo/front-alt-2.svg",
  2900. extra: 706/681,
  2901. bottom: 11/717
  2902. }
  2903. },
  2904. pawAlt: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Paw (Alt)",
  2907. image: {
  2908. source: "./media/characters/shingo/paw-alt.svg"
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Micro",
  2915. height: math.unit(4, "inches")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(6, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Macro",
  2924. height: math.unit(108, "feet")
  2925. },
  2926. {
  2927. name: "Macro+",
  2928. height: math.unit(1500, "feet")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2934. {
  2935. side: {
  2936. height: math.unit(6, "feet"),
  2937. weight: math.unit(75, "kg"),
  2938. name: "Side",
  2939. image: {
  2940. source: "./media/characters/aigey/side.svg"
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(200, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(100, "miles")
  2953. },
  2954. ]
  2955. )
  2956. )
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(5 + 5 / 12, "feet"),
  2962. weight: math.unit(75, "kg"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/natasha/front.svg",
  2966. extra: 859 / 824,
  2967. bottom: 23 / 879.6
  2968. }
  2969. },
  2970. frontNsfw: {
  2971. height: math.unit(5 + 5 / 12, "feet"),
  2972. weight: math.unit(75, "kg"),
  2973. name: "Front (NSFW)",
  2974. image: {
  2975. source: "./media/characters/natasha/front-nsfw.svg",
  2976. extra: 859 / 824,
  2977. bottom: 23 / 879.6
  2978. }
  2979. },
  2980. frontErect: {
  2981. height: math.unit(5 + 5 / 12, "feet"),
  2982. weight: math.unit(75, "kg"),
  2983. name: "Front (Erect)",
  2984. image: {
  2985. source: "./media/characters/natasha/front-erect.svg",
  2986. extra: 859 / 824,
  2987. bottom: 23 / 879.6
  2988. }
  2989. },
  2990. back: {
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/natasha/back.svg",
  2996. extra: 887.9 / 852.6,
  2997. bottom: 9.7 / 896.4
  2998. }
  2999. },
  3000. backAlt: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Back (Alt)",
  3004. image: {
  3005. source: "./media/characters/natasha/back-alt.svg",
  3006. extra: 1236.7 / 1192,
  3007. bottom: 22.3 / 1258.2
  3008. }
  3009. },
  3010. dick: {
  3011. height: math.unit(1.772, "feet"),
  3012. name: "Dick",
  3013. image: {
  3014. source: "./media/characters/natasha/dick.svg"
  3015. }
  3016. },
  3017. paw: {
  3018. height: math.unit(0.250, "meters"),
  3019. name: "Paw",
  3020. image: {
  3021. source: "./media/characters/natasha/paw.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(5 + 5 / 12, "feet")
  3029. },
  3030. {
  3031. name: "Large",
  3032. height: math.unit(12, "feet")
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(100, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(260, "feet")
  3042. },
  3043. {
  3044. name: "Macro++",
  3045. height: math.unit(1, "mile")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/malik/front.svg"
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/malik/side.svg",
  3066. extra: 1.1539
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(75, "kg"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/malik/back.svg"
  3075. }
  3076. },
  3077. },
  3078. [
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(156, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro+",
  3086. height: math.unit(1188, "feet")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/sefer/front.svg",
  3099. extra: 848 / 659,
  3100. bottom: 28.3 / 876.442
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/sefer/back.svg",
  3109. extra: 864 / 695,
  3110. bottom: 10 / 871
  3111. }
  3112. },
  3113. frontDressed: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Front (Dressed)",
  3117. image: {
  3118. source: "./media/characters/sefer/front-dressed.svg",
  3119. extra: 839 / 653,
  3120. bottom: 37.6 / 878
  3121. }
  3122. },
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(6, "feet"),
  3128. default: true
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3134. {
  3135. body: {
  3136. height: math.unit(2.2428, "meter"),
  3137. weight: math.unit(124.738, "kg"),
  3138. name: "Body",
  3139. image: {
  3140. extra: 1225 / 1050,
  3141. source: "./media/characters/north/front.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Micro",
  3148. height: math.unit(4, "inches")
  3149. },
  3150. {
  3151. name: "Macro",
  3152. height: math.unit(63, "meters")
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(101, "miles"),
  3157. default: true
  3158. }
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3163. {
  3164. angled: {
  3165. height: math.unit(4, "meter"),
  3166. weight: math.unit(150, "kg"),
  3167. name: "Angled",
  3168. image: {
  3169. source: "./media/characters/talan/angled-sfw.svg",
  3170. bottom: 29 / 3734
  3171. }
  3172. },
  3173. angledNsfw: {
  3174. height: math.unit(4, "meter"),
  3175. weight: math.unit(150, "kg"),
  3176. name: "Angled (NSFW)",
  3177. image: {
  3178. source: "./media/characters/talan/angled-nsfw.svg",
  3179. bottom: 29 / 3734
  3180. }
  3181. },
  3182. frontNsfw: {
  3183. height: math.unit(4, "meter"),
  3184. weight: math.unit(150, "kg"),
  3185. name: "Front (NSFW)",
  3186. image: {
  3187. source: "./media/characters/talan/front-nsfw.svg",
  3188. bottom: 29 / 3734
  3189. }
  3190. },
  3191. sideNsfw: {
  3192. height: math.unit(4, "meter"),
  3193. weight: math.unit(150, "kg"),
  3194. name: "Side (NSFW)",
  3195. image: {
  3196. source: "./media/characters/talan/side-nsfw.svg",
  3197. bottom: 29 / 3734
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/talan/back.svg"
  3206. }
  3207. },
  3208. dickBottom: {
  3209. height: math.unit(0.621, "meter"),
  3210. name: "Dick (Bottom)",
  3211. image: {
  3212. source: "./media/characters/talan/dick-bottom.svg"
  3213. }
  3214. },
  3215. dickTop: {
  3216. height: math.unit(0.621, "meter"),
  3217. name: "Dick (Top)",
  3218. image: {
  3219. source: "./media/characters/talan/dick-top.svg"
  3220. }
  3221. },
  3222. dickSide: {
  3223. height: math.unit(0.305, "meter"),
  3224. name: "Dick (Side)",
  3225. image: {
  3226. source: "./media/characters/talan/dick-side.svg"
  3227. }
  3228. },
  3229. dickFront: {
  3230. height: math.unit(0.305, "meter"),
  3231. name: "Dick (Front)",
  3232. image: {
  3233. source: "./media/characters/talan/dick-front.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(4, "meters")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(100, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(2, "miles"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(5000, "miles")
  3254. },
  3255. {
  3256. name: "Teramacro",
  3257. height: math.unit(100, "parsecs")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front.svg"
  3270. }
  3271. },
  3272. frontAlt: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(90, "kg"),
  3275. name: "Front (alt)",
  3276. image: {
  3277. source: "./media/characters/gael'rathus/front-alt.svg"
  3278. }
  3279. },
  3280. frontAlt2: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(90, "kg"),
  3283. name: "Front (alt 2)",
  3284. image: {
  3285. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(9, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Large",
  3297. height: math.unit(25, "feet")
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(0.25, "miles")
  3302. },
  3303. {
  3304. name: "Megamacro",
  3305. height: math.unit(10, "miles")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3311. {
  3312. side: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(140, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/sosha/side.svg",
  3318. bottom: 0.042
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(12, "feet"),
  3326. default: true
  3327. }
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3332. {
  3333. side: {
  3334. height: math.unit(5 + 5 / 12, "feet"),
  3335. weight: math.unit(170, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/runnola/side.svg",
  3339. extra: 741 / 448,
  3340. bottom: 0.05
  3341. }
  3342. },
  3343. },
  3344. [
  3345. {
  3346. name: "Small",
  3347. height: math.unit(3, "feet")
  3348. },
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(5 + 5 / 12, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(10, "feet")
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(2, "meter"),
  3365. weight: math.unit(50, "kg"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/kurribird/front.svg",
  3369. bottom: 0.015
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(1.5, "meter"),
  3374. weight: math.unit(50, "kg"),
  3375. name: "Front (Alt)",
  3376. image: {
  3377. source: "./media/characters/kurribird/front-alt.svg",
  3378. extra: 1.45
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(7, "feet")
  3386. },
  3387. {
  3388. name: "Big",
  3389. height: math.unit(12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(2, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(80, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/elbial/front.svg",
  3411. extra: 1643 / 1556,
  3412. bottom: 60.2 / 1696
  3413. }
  3414. },
  3415. side: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(80, "kg"),
  3418. name: "Side",
  3419. image: {
  3420. source: "./media/characters/elbial/side.svg",
  3421. extra: 1630 / 1565,
  3422. bottom: 71.5 / 1697
  3423. }
  3424. },
  3425. back: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Back",
  3429. image: {
  3430. source: "./media/characters/elbial/back.svg",
  3431. extra: 1668 / 1595,
  3432. bottom: 5.6 / 1672
  3433. }
  3434. },
  3435. frontDressed: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Front (Dressed)",
  3439. image: {
  3440. source: "./media/characters/elbial/front-dressed.svg",
  3441. extra: 1653 / 1584,
  3442. bottom: 57 / 1708
  3443. }
  3444. },
  3445. genitals: {
  3446. height: math.unit(2 / 3.367, "meter"),
  3447. name: "Genitals",
  3448. image: {
  3449. source: "./media/characters/elbial/genitals.svg"
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Large",
  3456. height: math.unit(100, "feet")
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(500, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. },
  3467. {
  3468. name: "Gigamacro",
  3469. height: math.unit(25000, "miles")
  3470. },
  3471. {
  3472. name: "Full-Size",
  3473. height: math.unit(8000000, "gigaparsecs")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/noah/front.svg"
  3486. }
  3487. },
  3488. talons: {
  3489. height: math.unit(0.315, "meter"),
  3490. name: "Talons",
  3491. image: {
  3492. source: "./media/characters/noah/talons.svg"
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Large",
  3499. height: math.unit(50, "feet")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(750, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(50, "miles")
  3509. },
  3510. {
  3511. name: "Gigamacro",
  3512. height: math.unit(100000, "miles")
  3513. },
  3514. {
  3515. name: "Full-Size",
  3516. height: math.unit(3000000000, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/natalya/front.svg"
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/natalya/back.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(150, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(5, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(600, "kiloparsecs")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/erestrebah/front.svg",
  3565. extra: 1262/1162,
  3566. bottom: 96/1358
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(50, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/erestrebah/back.svg",
  3575. extra: 1257/1139,
  3576. bottom: 13/1270
  3577. }
  3578. },
  3579. wing: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Wing",
  3583. image: {
  3584. source: "./media/characters/erestrebah/wing.svg",
  3585. extra: 1262/1162,
  3586. bottom: 96/1358
  3587. }
  3588. },
  3589. mouth: {
  3590. height: math.unit(0.39, "feet"),
  3591. name: "Mouth",
  3592. image: {
  3593. source: "./media/characters/erestrebah/mouth.svg"
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(10, "feet")
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(50, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "feet")
  3610. },
  3611. {
  3612. name: "Macro+",
  3613. height: math.unit(750, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(3, "miles")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(2, "meter"),
  3626. weight: math.unit(80, "kg"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/jennifer/front.svg",
  3630. bottom: 0.11,
  3631. extra: 1.16
  3632. }
  3633. },
  3634. frontAlt: {
  3635. height: math.unit(2, "meter"),
  3636. weight: math.unit(80, "kg"),
  3637. name: "Front (Alt)",
  3638. image: {
  3639. source: "./media/characters/jennifer/front-alt.svg"
  3640. }
  3641. }
  3642. },
  3643. [
  3644. {
  3645. name: "Canon Height",
  3646. height: math.unit(120, "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Macro+",
  3651. height: math.unit(300, "feet")
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(20000, "feet")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(50, "kg"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/kalista/front.svg",
  3668. extra: 1947 / 1700,
  3669. bottom: 76.6 / 1412.98
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(50, "kg"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/kalista/back.svg",
  3678. extra: 1366 / 1156,
  3679. bottom: 33.9 / 1362.78
  3680. }
  3681. }
  3682. },
  3683. [
  3684. {
  3685. name: "Uncomfortably Small",
  3686. height: math.unit(10, "feet")
  3687. },
  3688. {
  3689. name: "Small",
  3690. height: math.unit(30, "feet")
  3691. },
  3692. {
  3693. name: "Macro",
  3694. height: math.unit(100, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(2000, "feet")
  3700. },
  3701. {
  3702. name: "True Form",
  3703. height: math.unit(8924, "miles")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(120, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/ggv/front.svg"
  3716. }
  3717. },
  3718. side: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(120, "kg"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/ggv/side.svg"
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Extremely Puny",
  3730. height: math.unit(9 + 5 / 12, "feet")
  3731. },
  3732. {
  3733. name: "Horribly Small",
  3734. height: math.unit(47.7, "miles"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Reasonably Sized",
  3739. height: math.unit(25000, "parsecs")
  3740. },
  3741. {
  3742. name: "Slightly Uncompressed",
  3743. height: math.unit(7.77e31, "parsecs")
  3744. },
  3745. {
  3746. name: "Omniversal",
  3747. height: math.unit(1e300, "meters")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(75, "lb"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/napalm/front.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(75, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/napalm/back.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Standard",
  3774. height: math.unit(55, "feet"),
  3775. default: true
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(7 + 5 / 6, "feet"),
  3784. weight: math.unit(325, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/asana/front.svg",
  3788. extra: 1133 / 1060,
  3789. bottom: 15.2 / 1148.6
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(7 + 5 / 6, "feet"),
  3794. weight: math.unit(325, "lb"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asana/back.svg",
  3798. extra: 1114 / 1043,
  3799. bottom: 5 / 1120
  3800. }
  3801. },
  3802. dressedDark: {
  3803. height: math.unit(7 + 5 / 6, "feet"),
  3804. weight: math.unit(325, "lb"),
  3805. name: "Dressed (Dark)",
  3806. image: {
  3807. source: "./media/characters/asana/dressed-dark.svg",
  3808. extra: 1133 / 1060,
  3809. bottom: 15.2 / 1148.6
  3810. }
  3811. },
  3812. dressedLight: {
  3813. height: math.unit(7 + 5 / 6, "feet"),
  3814. weight: math.unit(325, "lb"),
  3815. name: "Dressed (Light)",
  3816. image: {
  3817. source: "./media/characters/asana/dressed-light.svg",
  3818. extra: 1133 / 1060,
  3819. bottom: 15.2 / 1148.6
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Standard",
  3826. height: math.unit(7 + 5 / 6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Large",
  3831. height: math.unit(10, "meters")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(2500, "meters")
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(5e6, "meters")
  3840. },
  3841. {
  3842. name: "Examacro",
  3843. height: math.unit(5e12, "lightyears")
  3844. },
  3845. {
  3846. name: "Max Size",
  3847. height: math.unit(1e31, "lightyears")
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(60, "kg"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/ebony/front.svg",
  3860. bottom: 0.03,
  3861. extra: 1045 / 810 + 0.03
  3862. }
  3863. },
  3864. side: {
  3865. height: math.unit(2, "meter"),
  3866. weight: math.unit(60, "kg"),
  3867. name: "Side",
  3868. image: {
  3869. source: "./media/characters/ebony/side.svg",
  3870. bottom: 0.03,
  3871. extra: 1045 / 810 + 0.03
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/ebony/back.svg",
  3880. bottom: 0.01,
  3881. extra: 1045 / 810 + 0.01
  3882. }
  3883. },
  3884. },
  3885. [
  3886. // TODO check why I did this lol
  3887. {
  3888. name: "Standard",
  3889. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(13000, "km")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(175, "lb"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/mountain/front.svg",
  3911. extra: 972 / 955,
  3912. bottom: 64 / 1036.6
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(175, "lb"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/mountain/back.svg",
  3921. extra: 970 / 950,
  3922. bottom: 28.25 / 999
  3923. }
  3924. },
  3925. },
  3926. [
  3927. {
  3928. name: "Large",
  3929. height: math.unit(20, "meters")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(300, "meters")
  3934. },
  3935. {
  3936. name: "Gigamacro",
  3937. height: math.unit(10000, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(10e9, "lightyears")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(8, "feet"),
  3951. weight: math.unit(500, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/rick/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(8, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(5, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/ona/front.svg"
  3979. }
  3980. },
  3981. frontAlt: {
  3982. height: math.unit(8, "feet"),
  3983. weight: math.unit(120, "lb"),
  3984. name: "Front (Alt)",
  3985. image: {
  3986. source: "./media/characters/ona/front-alt.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(8, "feet"),
  3991. weight: math.unit(120, "lb"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/ona/back.svg"
  3995. }
  3996. },
  3997. foot: {
  3998. height: math.unit(1.1, "feet"),
  3999. name: "Foot",
  4000. image: {
  4001. source: "./media/characters/ona/foot.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(70, "km"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(681818, "miles")
  4014. },
  4015. {
  4016. name: "Examacro",
  4017. height: math.unit(3800000, "lightyears")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(12, "feet"),
  4026. weight: math.unit(3000, "lb"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/mech/front.svg",
  4030. extra: 2900 / 2770,
  4031. bottom: 110 / 3010
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(12, "feet"),
  4036. weight: math.unit(3000, "lb"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/mech/back.svg",
  4040. extra: 3011 / 2890,
  4041. bottom: 94 / 3105
  4042. }
  4043. },
  4044. maw: {
  4045. height: math.unit(3.07, "feet"),
  4046. name: "Maw",
  4047. image: {
  4048. source: "./media/characters/mech/maw.svg"
  4049. }
  4050. },
  4051. head: {
  4052. height: math.unit(2.82, "feet"),
  4053. name: "Head",
  4054. image: {
  4055. source: "./media/characters/mech/head.svg"
  4056. }
  4057. },
  4058. dick: {
  4059. height: math.unit(1.43, "feet"),
  4060. name: "Dick",
  4061. image: {
  4062. source: "./media/characters/mech/dick.svg"
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(12, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(300, "feet"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Macro+",
  4078. height: math.unit(1500, "feet")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(1.3, "meter"),
  4087. weight: math.unit(30, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/gregory/front.svg",
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(1.3, "meter"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(20, "meter")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2.8, "meter"),
  4111. weight: math.unit(200, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/elory/front.svg",
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(2.8, "meter"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(38, "meter")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(470, "feet"),
  4135. weight: math.unit(924, "tons"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/angelpatamon/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(470, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Deity Size I",
  4150. height: math.unit(28651.2, "km")
  4151. },
  4152. {
  4153. name: "Deity Size II",
  4154. height: math.unit(171907.2, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(7.2, "meter"),
  4163. weight: math.unit(8.2, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/cryae/side.svg",
  4167. extra: 3500 / 1500
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7.2, "meter"),
  4175. default: true
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(6, "feet"),
  4184. weight: math.unit(175, "lb"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/xera/front.svg",
  4188. extra: 2377 / 1972,
  4189. bottom: 75.5 / 2452
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(175, "lb"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/xera/side.svg",
  4198. extra: 2345 / 2019,
  4199. bottom: 39.7 / 2384
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/xera/back.svg",
  4208. extra: 2095 / 1984,
  4209. bottom: 67 / 2166
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Small",
  4216. height: math.unit(10, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(500, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Macro+",
  4225. height: math.unit(10, "km")
  4226. },
  4227. {
  4228. name: "Gigamacro",
  4229. height: math.unit(25000, "km")
  4230. },
  4231. {
  4232. name: "Teramacro",
  4233. height: math.unit(3e6, "km")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/nebula/front.svg",
  4246. extra: 2566 / 2362,
  4247. bottom: 81 / 2644
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(4.5, "meters")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(1500, "meters"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(150, "km")
  4264. },
  4265. {
  4266. name: "Gigamacro",
  4267. height: math.unit(27000, "km")
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(225, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/abysgar/front.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Small",
  4286. height: math.unit(4.5, "meters")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(1250, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(125, "km")
  4296. },
  4297. {
  4298. name: "Gigamacro",
  4299. height: math.unit(26000, "km")
  4300. }
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(180, "lb"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/yakuz/front.svg"
  4312. }
  4313. }
  4314. },
  4315. [
  4316. {
  4317. name: "Small",
  4318. height: math.unit(5, "meters")
  4319. },
  4320. {
  4321. name: "Macro",
  4322. height: math.unit(1500, "meters"),
  4323. default: true
  4324. },
  4325. {
  4326. name: "Megamacro",
  4327. height: math.unit(200, "km")
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(100000, "km")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/mirova/front.svg",
  4344. extra: 3334 / 3071,
  4345. bottom: 42 / 3375.6
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Small",
  4352. height: math.unit(5, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(900, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(135, "km")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(20000, "km")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4371. {
  4372. side: {
  4373. height: math.unit(28.35, "feet"),
  4374. weight: math.unit(99.75, "tons"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/asana-mech/side.svg",
  4378. extra: 923 / 699,
  4379. bottom: 50 / 975
  4380. }
  4381. },
  4382. chaingun: {
  4383. height: math.unit(7, "feet"),
  4384. weight: math.unit(2400, "lb"),
  4385. name: "Chaingun",
  4386. image: {
  4387. source: "./media/characters/asana-mech/chaingun.svg"
  4388. }
  4389. },
  4390. laser: {
  4391. height: math.unit(7.12, "feet"),
  4392. weight: math.unit(2000, "lb"),
  4393. name: "Laser",
  4394. image: {
  4395. source: "./media/characters/asana-mech/laser.svg"
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(28.35, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(2500, "feet")
  4408. },
  4409. {
  4410. name: "Megamacro",
  4411. height: math.unit(25, "miles")
  4412. },
  4413. {
  4414. name: "Examacro",
  4415. height: math.unit(6e8, "lightyears")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5, "meters"),
  4424. weight: math.unit(1000, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/asche/front.svg",
  4428. extra: 1258 / 1190,
  4429. bottom: 47 / 1305
  4430. }
  4431. },
  4432. frontUnderwear: {
  4433. height: math.unit(5, "meters"),
  4434. weight: math.unit(1000, "kg"),
  4435. name: "Front (Underwear)",
  4436. image: {
  4437. source: "./media/characters/asche/front-underwear.svg",
  4438. extra: 1258 / 1190,
  4439. bottom: 47 / 1305
  4440. }
  4441. },
  4442. frontDressed: {
  4443. height: math.unit(5, "meters"),
  4444. weight: math.unit(1000, "kg"),
  4445. name: "Front (Dressed)",
  4446. image: {
  4447. source: "./media/characters/asche/front-dressed.svg",
  4448. extra: 1258 / 1190,
  4449. bottom: 47 / 1305
  4450. }
  4451. },
  4452. frontArmor: {
  4453. height: math.unit(5, "meters"),
  4454. weight: math.unit(1000, "kg"),
  4455. name: "Front (Armored)",
  4456. image: {
  4457. source: "./media/characters/asche/front-armored.svg",
  4458. extra: 1374 / 1308,
  4459. bottom: 23 / 1397
  4460. }
  4461. },
  4462. mp724: {
  4463. height: math.unit(0.96, "meters"),
  4464. weight: math.unit(38, "kg"),
  4465. name: "H&K MP724",
  4466. image: {
  4467. source: "./media/characters/asche/h&k-mp724.svg"
  4468. }
  4469. },
  4470. side: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Side",
  4474. image: {
  4475. source: "./media/characters/asche/side.svg",
  4476. extra: 1717 / 1609,
  4477. bottom: 0.005
  4478. }
  4479. },
  4480. back: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Back",
  4484. image: {
  4485. source: "./media/characters/asche/back.svg",
  4486. extra: 1570 / 1501
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "DEFCON 5",
  4493. height: math.unit(5, "meters")
  4494. },
  4495. {
  4496. name: "DEFCON 4",
  4497. height: math.unit(500, "meters"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "DEFCON 3",
  4502. height: math.unit(5, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 2",
  4506. height: math.unit(500, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 1",
  4510. height: math.unit(500000, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 0",
  4514. height: math.unit(3, "gigaparsecs")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/gale/front.svg"
  4527. }
  4528. },
  4529. frontAlt1: {
  4530. height: math.unit(2, "meters"),
  4531. weight: math.unit(76, "kg"),
  4532. name: "Front (Alt 1)",
  4533. image: {
  4534. source: "./media/characters/gale/front-alt-1.svg"
  4535. }
  4536. },
  4537. frontAlt2: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(76, "kg"),
  4540. name: "Front (Alt 2)",
  4541. image: {
  4542. source: "./media/characters/gale/front-alt-2.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(7, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(150, "feet"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "Macro+",
  4558. height: math.unit(300, "feet")
  4559. },
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(5 + 10/12, "feet"),
  4567. weight: math.unit(67, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/draylen/front.svg",
  4571. extra: 832/777,
  4572. bottom: 85/917
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(5 + 10/12, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(150, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(7 + 9 / 12, "feet"),
  4593. weight: math.unit(379, "lbs"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/chez/front.svg"
  4597. }
  4598. },
  4599. side: {
  4600. height: math.unit(7 + 9 / 12, "feet"),
  4601. weight: math.unit(379, "lbs"),
  4602. name: "Side",
  4603. image: {
  4604. source: "./media/characters/chez/side.svg"
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(7 + 9 / 12, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "God King",
  4616. height: math.unit(9750000, "meters")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(275, "lbs"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/kaylum/front.svg",
  4629. bottom: 0.01,
  4630. extra: 1166 / 1031
  4631. }
  4632. },
  4633. frontWingless: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(275, "lbs"),
  4636. name: "Front (Wingless)",
  4637. image: {
  4638. source: "./media/characters/kaylum/front-wingless.svg",
  4639. bottom: 0.01,
  4640. extra: 1117 / 1031
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(3.05, "meters")
  4648. },
  4649. {
  4650. name: "Master",
  4651. height: math.unit(5.5, "meters")
  4652. },
  4653. {
  4654. name: "Rampage",
  4655. height: math.unit(19, "meters")
  4656. },
  4657. {
  4658. name: "Macro Lite",
  4659. height: math.unit(37, "meters")
  4660. },
  4661. {
  4662. name: "Hyper Predator",
  4663. height: math.unit(61, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(138, "meters"),
  4668. default: true
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(150, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/geta/front.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Micro",
  4687. height: math.unit(3, "inches"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(5 + 5 / 12, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(300, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/tyrnn/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Main Height",
  4711. height: math.unit(355, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Fave. Height",
  4716. height: math.unit(2400, "feet")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(300, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/appledectomy/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(2500, "feet")
  4736. },
  4737. {
  4738. name: "Megamacro",
  4739. height: math.unit(50, "miles"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Gigamacro",
  4744. height: math.unit(5000, "miles")
  4745. },
  4746. {
  4747. name: "Teramacro",
  4748. height: math.unit(250000, "miles")
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(200, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/vulpes/front.svg",
  4761. extra: 573 / 543,
  4762. bottom: 0.033
  4763. }
  4764. },
  4765. side: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(200, "lbs"),
  4768. name: "Side",
  4769. image: {
  4770. source: "./media/characters/vulpes/side.svg",
  4771. extra: 577 / 549,
  4772. bottom: 11 / 588
  4773. }
  4774. },
  4775. back: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(200, "lbs"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/vulpes/back.svg",
  4781. extra: 573 / 549,
  4782. bottom: 20 / 593
  4783. }
  4784. },
  4785. feet: {
  4786. height: math.unit(1.276, "feet"),
  4787. name: "Feet",
  4788. image: {
  4789. source: "./media/characters/vulpes/feet.svg"
  4790. }
  4791. },
  4792. maw: {
  4793. height: math.unit(1.18, "feet"),
  4794. name: "Maw",
  4795. image: {
  4796. source: "./media/characters/vulpes/maw.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Micro",
  4803. height: math.unit(2, "inches")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.3, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(850, "feet")
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(7500, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(570000, "miles")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/front.svg"
  4833. }
  4834. },
  4835. side: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(210, "lbs"),
  4838. name: "Side",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/side.svg"
  4841. }
  4842. },
  4843. back: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(210, "lbs"),
  4846. name: "Back",
  4847. image: {
  4848. source: "./media/characters/rain-fallen/back.svg"
  4849. }
  4850. },
  4851. feral: {
  4852. height: math.unit(9, "feet"),
  4853. weight: math.unit(700, "lbs"),
  4854. name: "Feral",
  4855. image: {
  4856. source: "./media/characters/rain-fallen/feral.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Meddling with Mortals",
  4863. height: math.unit(8 + 8/12, "feet")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(5, "meter")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(150, "meter"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(278e6, "meter")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(2e9, "meter")
  4881. },
  4882. {
  4883. name: "Teramacro",
  4884. height: math.unit(8e12, "meter")
  4885. },
  4886. {
  4887. name: "Devourer",
  4888. height: math.unit(14, "zettameters")
  4889. },
  4890. {
  4891. name: "Scarlet King",
  4892. height: math.unit(18, "yottameters")
  4893. },
  4894. {
  4895. name: "Void",
  4896. height: math.unit(1e88, "yottameters")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4902. {
  4903. standing: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Standing",
  4907. image: {
  4908. source: "./media/characters/zaakira/standing.svg",
  4909. extra: 1599/1504,
  4910. bottom: 39/1638
  4911. }
  4912. },
  4913. laying: {
  4914. height: math.unit(3, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Laying",
  4917. image: {
  4918. source: "./media/characters/zaakira/laying.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(12, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(279, "feet"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4936. {
  4937. femSfw: {
  4938. height: math.unit(8, "feet"),
  4939. weight: math.unit(350, "lb"),
  4940. name: "Fem",
  4941. image: {
  4942. source: "./media/characters/sigvald/fem-sfw.svg",
  4943. extra: 182 / 164,
  4944. bottom: 8.7 / 190.5
  4945. }
  4946. },
  4947. femNsfw: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(350, "lb"),
  4950. name: "Fem (NSFW)",
  4951. image: {
  4952. source: "./media/characters/sigvald/fem-nsfw.svg",
  4953. extra: 182 / 164,
  4954. bottom: 8.7 / 190.5
  4955. }
  4956. },
  4957. maleNsfw: {
  4958. height: math.unit(8, "feet"),
  4959. weight: math.unit(350, "lb"),
  4960. name: "Male (NSFW)",
  4961. image: {
  4962. source: "./media/characters/sigvald/male-nsfw.svg",
  4963. extra: 182 / 164,
  4964. bottom: 8.7 / 190.5
  4965. }
  4966. },
  4967. hermNsfw: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(350, "lb"),
  4970. name: "Herm (NSFW)",
  4971. image: {
  4972. source: "./media/characters/sigvald/herm-nsfw.svg",
  4973. extra: 182 / 164,
  4974. bottom: 8.7 / 190.5
  4975. }
  4976. },
  4977. dick: {
  4978. height: math.unit(2.36, "feet"),
  4979. name: "Dick",
  4980. image: {
  4981. source: "./media/characters/sigvald/dick.svg"
  4982. }
  4983. },
  4984. eye: {
  4985. height: math.unit(0.31, "feet"),
  4986. name: "Eye",
  4987. image: {
  4988. source: "./media/characters/sigvald/eye.svg"
  4989. }
  4990. },
  4991. mouth: {
  4992. height: math.unit(0.92, "feet"),
  4993. name: "Mouth",
  4994. image: {
  4995. source: "./media/characters/sigvald/mouth.svg"
  4996. }
  4997. },
  4998. paws: {
  4999. height: math.unit(2.2, "feet"),
  5000. name: "Paws",
  5001. image: {
  5002. source: "./media/characters/sigvald/paws.svg"
  5003. }
  5004. }
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(8, "feet")
  5010. },
  5011. {
  5012. name: "Large",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Larger",
  5017. height: math.unit(20, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(150, "feet")
  5022. },
  5023. {
  5024. name: "Macro+",
  5025. height: math.unit(200, "feet"),
  5026. default: true
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5032. {
  5033. side: {
  5034. height: math.unit(12, "feet"),
  5035. weight: math.unit(2000, "kg"),
  5036. name: "Side",
  5037. image: {
  5038. source: "./media/characters/scott/side.svg",
  5039. extra: 754 / 724,
  5040. bottom: 0.069
  5041. }
  5042. },
  5043. upright: {
  5044. height: math.unit(12, "feet"),
  5045. weight: math.unit(2000, "kg"),
  5046. name: "Upright",
  5047. image: {
  5048. source: "./media/characters/scott/upright.svg",
  5049. extra: 3881 / 3722,
  5050. bottom: 0.05
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(12, "feet"),
  5058. default: true
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5064. {
  5065. side: {
  5066. height: math.unit(8, "meters"),
  5067. weight: math.unit(84755, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/tobias/side.svg",
  5071. extra: 1474 / 1096,
  5072. bottom: 38.9 / 1513.1235
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(8, "meters"),
  5080. default: true
  5081. },
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5086. {
  5087. front: {
  5088. height: math.unit(5.5, "feet"),
  5089. weight: math.unit(400, "lbs"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/kieran/front.svg",
  5093. extra: 2694 / 2364,
  5094. bottom: 217 / 2908
  5095. }
  5096. },
  5097. side: {
  5098. height: math.unit(5.5, "feet"),
  5099. weight: math.unit(400, "lbs"),
  5100. name: "Side",
  5101. image: {
  5102. source: "./media/characters/kieran/side.svg",
  5103. extra: 875 / 777,
  5104. bottom: 84.6 / 959
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(5.5, "feet"),
  5112. default: true
  5113. },
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5118. {
  5119. side: {
  5120. height: math.unit(2, "meters"),
  5121. weight: math.unit(70, "kg"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/sanya/side.svg",
  5125. bottom: 0.02,
  5126. extra: 1.02
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Small",
  5133. height: math.unit(2, "meters")
  5134. },
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(3, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(16, "meters"),
  5142. default: true
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(2, "meters"),
  5151. weight: math.unit(120, "kg"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/miranda/front.svg",
  5155. extra: 195 / 185,
  5156. bottom: 10.9 / 206.5
  5157. }
  5158. },
  5159. back: {
  5160. height: math.unit(2, "meters"),
  5161. weight: math.unit(120, "kg"),
  5162. name: "Back",
  5163. image: {
  5164. source: "./media/characters/miranda/back.svg",
  5165. extra: 201 / 193,
  5166. bottom: 2.3 / 203.7
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(10, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "James", species: ["deer"], tags: ["anthro"] },
  5180. {
  5181. side: {
  5182. height: math.unit(2, "meters"),
  5183. weight: math.unit(100, "kg"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/james/front.svg",
  5187. extra: 10 / 8.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(8.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(9.5, "feet"),
  5204. weight: math.unit(2500, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/heather/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9.5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6.5, "feet"),
  5224. weight: math.unit(400, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/lukas/side.svg",
  5228. extra: 7.25 / 6.5
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(6.5, "feet"),
  5236. default: true
  5237. }
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5242. {
  5243. side: {
  5244. height: math.unit(5, "feet"),
  5245. weight: math.unit(3000, "lbs"),
  5246. name: "Side",
  5247. image: {
  5248. source: "./media/characters/louise/side.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(5, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5262. {
  5263. side: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(150, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/ramona/side.svg",
  5269. extra: 871/854,
  5270. bottom: 41/912
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(5.3, "meters"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(20, "stories")
  5283. },
  5284. {
  5285. name: "Macro+",
  5286. height: math.unit(50, "stories")
  5287. },
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5292. {
  5293. standing: {
  5294. height: math.unit(5.75, "feet"),
  5295. weight: math.unit(160, "lbs"),
  5296. name: "Standing",
  5297. image: {
  5298. source: "./media/characters/deerpuff/standing.svg",
  5299. extra: 682 / 624
  5300. }
  5301. },
  5302. sitting: {
  5303. height: math.unit(5.75 / 1.79, "feet"),
  5304. weight: math.unit(160, "lbs"),
  5305. name: "Sitting",
  5306. image: {
  5307. source: "./media/characters/deerpuff/sitting.svg",
  5308. bottom: 44 / 400,
  5309. extra: 1
  5310. }
  5311. },
  5312. taurLaying: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(400, "lbs"),
  5315. name: "Taur (Laying)",
  5316. image: {
  5317. source: "./media/characters/deerpuff/taur-laying.svg"
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Puffball",
  5324. height: math.unit(6, "inches")
  5325. },
  5326. {
  5327. name: "Normalpuff",
  5328. height: math.unit(5.75, "feet")
  5329. },
  5330. {
  5331. name: "Macropuff",
  5332. height: math.unit(1500, "feet"),
  5333. default: true
  5334. },
  5335. {
  5336. name: "Megapuff",
  5337. height: math.unit(500, "miles")
  5338. },
  5339. {
  5340. name: "Gigapuff",
  5341. height: math.unit(250000, "miles")
  5342. },
  5343. {
  5344. name: "Omegapuff",
  5345. height: math.unit(1000, "lightyears")
  5346. },
  5347. ]
  5348. ))
  5349. characterMakers.push(() => makeCharacter(
  5350. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5351. {
  5352. stomping: {
  5353. height: math.unit(6, "feet"),
  5354. weight: math.unit(170, "lbs"),
  5355. name: "Stomping",
  5356. image: {
  5357. source: "./media/characters/vivian/stomping.svg"
  5358. }
  5359. },
  5360. sitting: {
  5361. height: math.unit(6 / 1.75, "feet"),
  5362. weight: math.unit(170, "lbs"),
  5363. name: "Sitting",
  5364. image: {
  5365. source: "./media/characters/vivian/sitting.svg",
  5366. bottom: 1 / 6.4,
  5367. extra: 1,
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(7, "feet"),
  5375. default: true
  5376. },
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(10, "stories")
  5380. },
  5381. {
  5382. name: "Macro+",
  5383. height: math.unit(30, "stories")
  5384. },
  5385. {
  5386. name: "Megamacro",
  5387. height: math.unit(10, "miles")
  5388. },
  5389. {
  5390. name: "Megamacro+",
  5391. height: math.unit(2750000, "meters")
  5392. },
  5393. ]
  5394. ))
  5395. characterMakers.push(() => makeCharacter(
  5396. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5397. {
  5398. front: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(160, "lbs"),
  5401. name: "Front",
  5402. image: {
  5403. source: "./media/characters/prince/front.svg",
  5404. extra: 3400 / 3000
  5405. }
  5406. },
  5407. jumping: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(160, "lbs"),
  5410. name: "Jumping",
  5411. image: {
  5412. source: "./media/characters/prince/jump.svg",
  5413. extra: 2555 / 2134
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(7.75, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Not cute",
  5425. height: math.unit(17, "feet")
  5426. },
  5427. {
  5428. name: "I said NOT",
  5429. height: math.unit(91, "feet")
  5430. },
  5431. {
  5432. name: "Please stop",
  5433. height: math.unit(560, "feet")
  5434. },
  5435. {
  5436. name: "What have you done",
  5437. height: math.unit(2200, "feet")
  5438. },
  5439. {
  5440. name: "Deer God",
  5441. height: math.unit(3.6, "miles")
  5442. },
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5447. {
  5448. standing: {
  5449. height: math.unit(6, "feet"),
  5450. weight: math.unit(300, "lbs"),
  5451. name: "Standing",
  5452. image: {
  5453. source: "./media/characters/psymon/standing.svg",
  5454. extra: 1888 / 1810,
  5455. bottom: 0.05
  5456. }
  5457. },
  5458. slithering: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(300, "lbs"),
  5461. name: "Slithering",
  5462. image: {
  5463. source: "./media/characters/psymon/slithering.svg",
  5464. extra: 1330 / 1224
  5465. }
  5466. },
  5467. slitheringAlt: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(300, "lbs"),
  5470. name: "Slithering (Alt)",
  5471. image: {
  5472. source: "./media/characters/psymon/slithering-alt.svg",
  5473. extra: 1330 / 1224
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(11.25, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Large",
  5485. height: math.unit(27, "feet")
  5486. },
  5487. {
  5488. name: "Giant",
  5489. height: math.unit(87, "feet")
  5490. },
  5491. {
  5492. name: "Macro",
  5493. height: math.unit(365, "feet")
  5494. },
  5495. {
  5496. name: "Megamacro",
  5497. height: math.unit(3, "miles")
  5498. },
  5499. {
  5500. name: "World Serpent",
  5501. height: math.unit(8000, "miles")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5507. {
  5508. front: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(180, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/daimos/front.svg",
  5514. extra: 4160 / 3897,
  5515. bottom: 0.021
  5516. }
  5517. }
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(8, "feet"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Big Dog",
  5527. height: math.unit(22, "feet")
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(127, "feet")
  5532. },
  5533. {
  5534. name: "Megamacro",
  5535. height: math.unit(3600, "feet")
  5536. },
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5541. {
  5542. side: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(180, "lbs"),
  5545. name: "Side",
  5546. image: {
  5547. source: "./media/characters/blake/side.svg",
  5548. extra: 1212 / 1120,
  5549. bottom: 0.05
  5550. }
  5551. },
  5552. crouched: {
  5553. height: math.unit(6 * 0.57, "feet"),
  5554. weight: math.unit(180, "lbs"),
  5555. name: "Crouched",
  5556. image: {
  5557. source: "./media/characters/blake/crouched.svg",
  5558. extra: 840 / 587,
  5559. bottom: 0.04
  5560. }
  5561. },
  5562. bent: {
  5563. height: math.unit(6 * 0.75, "feet"),
  5564. weight: math.unit(180, "lbs"),
  5565. name: "Bent",
  5566. image: {
  5567. source: "./media/characters/blake/bent.svg",
  5568. extra: 592 / 544,
  5569. bottom: 0.035
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(8 + 1 / 6, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Big Backside",
  5581. height: math.unit(37, "feet")
  5582. },
  5583. {
  5584. name: "Subway Shredder",
  5585. height: math.unit(72, "feet")
  5586. },
  5587. {
  5588. name: "City Carver",
  5589. height: math.unit(1675, "feet")
  5590. },
  5591. {
  5592. name: "Tectonic Tweaker",
  5593. height: math.unit(2300, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(180, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/guisetto/front.svg",
  5606. extra: 856 / 817,
  5607. bottom: 0.06
  5608. }
  5609. },
  5610. airborne: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(180, "lbs"),
  5613. name: "Airborne",
  5614. image: {
  5615. source: "./media/characters/guisetto/airborne.svg",
  5616. extra: 584 / 525
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Normal",
  5623. height: math.unit(10 + 11 / 12, "feet"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Large",
  5628. height: math.unit(35, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(475, "feet")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(180, "lbs"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/luxor/front.svg",
  5645. extra: 2940 / 2152
  5646. }
  5647. },
  5648. back: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/luxor/back.svg",
  5654. extra: 1083 / 960
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(5 + 5 / 6, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Lamp",
  5666. height: math.unit(50, "feet")
  5667. },
  5668. {
  5669. name: "Lämp",
  5670. height: math.unit(300, "feet")
  5671. },
  5672. {
  5673. name: "The sun is a lamp",
  5674. height: math.unit(250000, "miles")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(50, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/huoyan/front.svg"
  5687. }
  5688. },
  5689. side: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(180, "lbs"),
  5692. name: "Side",
  5693. image: {
  5694. source: "./media/characters/huoyan/side.svg"
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Chef",
  5701. height: math.unit(9, "feet")
  5702. },
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(65, "feet"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(780, "feet")
  5711. },
  5712. {
  5713. name: "Flaming Mountain",
  5714. height: math.unit(4.8, "miles")
  5715. },
  5716. {
  5717. name: "Celestial",
  5718. height: math.unit(765000, "miles")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(5 + 3 / 4, "feet"),
  5727. weight: math.unit(120, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/tails/front.svg"
  5731. }
  5732. }
  5733. },
  5734. [
  5735. {
  5736. name: "Normal",
  5737. height: math.unit(5 + 3 / 4, "feet"),
  5738. default: true
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(4, "feet"),
  5747. weight: math.unit(50, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/rainy/front.svg"
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Macro",
  5757. height: math.unit(800, "feet"),
  5758. default: true
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(150, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/rainier/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Micro",
  5777. height: math.unit(2, "mm"),
  5778. default: true
  5779. }
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(8 + 4/12, "feet"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/andy-renard/front.svg",
  5790. extra: 1839/1726,
  5791. bottom: 134/1973
  5792. }
  5793. },
  5794. back: {
  5795. height: math.unit(8 + 4/12, "feet"),
  5796. name: "Back",
  5797. image: {
  5798. source: "./media/characters/andy-renard/back.svg",
  5799. extra: 1838/1710,
  5800. bottom: 105/1943
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Tall",
  5807. height: math.unit(8 + 4/12, "feet")
  5808. },
  5809. {
  5810. name: "Mini Macro",
  5811. height: math.unit(15, "feet"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(100, "feet")
  5817. },
  5818. {
  5819. name: "Mega Macro",
  5820. height: math.unit(1000, "feet")
  5821. },
  5822. {
  5823. name: "Giga Macro",
  5824. height: math.unit(10, "miles")
  5825. },
  5826. {
  5827. name: "God Macro",
  5828. height: math.unit(1, "multiverse")
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5834. {
  5835. front: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(210, "lbs"),
  5838. name: "Front",
  5839. image: {
  5840. source: "./media/characters/cimmaron/front-sfw.svg",
  5841. extra: 701 / 676,
  5842. bottom: 0.046
  5843. }
  5844. },
  5845. back: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Back",
  5849. image: {
  5850. source: "./media/characters/cimmaron/back-sfw.svg",
  5851. extra: 701 / 676,
  5852. bottom: 0.046
  5853. }
  5854. },
  5855. frontNsfw: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(210, "lbs"),
  5858. name: "Front (NSFW)",
  5859. image: {
  5860. source: "./media/characters/cimmaron/front-nsfw.svg",
  5861. extra: 701 / 676,
  5862. bottom: 0.046
  5863. }
  5864. },
  5865. backNsfw: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(210, "lbs"),
  5868. name: "Back (NSFW)",
  5869. image: {
  5870. source: "./media/characters/cimmaron/back-nsfw.svg",
  5871. extra: 701 / 676,
  5872. bottom: 0.046
  5873. }
  5874. },
  5875. dick: {
  5876. height: math.unit(1.714, "feet"),
  5877. name: "Dick",
  5878. image: {
  5879. source: "./media/characters/cimmaron/dick.svg"
  5880. }
  5881. },
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(6, "feet"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Macro Mayor",
  5891. height: math.unit(350, "meters")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(200, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/akari/front.svg",
  5904. extra: 962 / 901,
  5905. bottom: 0.04
  5906. }
  5907. }
  5908. },
  5909. [
  5910. {
  5911. name: "Micro",
  5912. height: math.unit(5, "inches"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(7, "feet")
  5918. },
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(140, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/cynosura/front.svg",
  5930. extra: 896 / 847
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(140, "lbs"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/cynosura/back.svg",
  5939. extra: 1365 / 1250
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(4, "inches")
  5947. },
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(5.75, "feet"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Tall",
  5955. height: math.unit(10, "feet")
  5956. },
  5957. {
  5958. name: "Big",
  5959. height: math.unit(20, "feet")
  5960. },
  5961. {
  5962. name: "Macro",
  5963. height: math.unit(50, "feet")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(13 + 2/12, "feet"),
  5972. weight: math.unit(800, "kg"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/gin/front.svg",
  5976. extra: 1312/1191,
  5977. bottom: 45/1357
  5978. }
  5979. },
  5980. mouth: {
  5981. height: math.unit(2.39 * 1.8, "feet"),
  5982. name: "Mouth",
  5983. image: {
  5984. source: "./media/characters/gin/mouth.svg"
  5985. }
  5986. },
  5987. hand: {
  5988. height: math.unit(1.57 * 2.19, "feet"),
  5989. name: "Hand",
  5990. image: {
  5991. source: "./media/characters/gin/hand.svg"
  5992. }
  5993. },
  5994. foot: {
  5995. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5996. name: "Foot",
  5997. image: {
  5998. source: "./media/characters/gin/foot.svg"
  5999. }
  6000. },
  6001. sole: {
  6002. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6003. name: "Sole",
  6004. image: {
  6005. source: "./media/characters/gin/sole.svg"
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Very Small",
  6012. height: math.unit(13 + 2 / 12, "feet")
  6013. },
  6014. {
  6015. name: "Micro",
  6016. height: math.unit(600, "miles")
  6017. },
  6018. {
  6019. name: "Regular",
  6020. height: math.unit(20, "earths"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(2.2, "solarradii")
  6026. },
  6027. {
  6028. name: "Teramacro",
  6029. height: math.unit(1.2, "galaxies")
  6030. },
  6031. {
  6032. name: "Omegamacro",
  6033. height: math.unit(200, "universes")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(6 + 1 / 6, "feet"),
  6042. weight: math.unit(178, "lbs"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/guy/front.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Normal",
  6052. height: math.unit(6 + 1 / 6, "feet"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Large",
  6057. height: math.unit(25 + 7 / 12, "feet")
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(60 + 9 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro+",
  6065. height: math.unit(246, "feet")
  6066. },
  6067. {
  6068. name: "Macro++",
  6069. height: math.unit(878, "feet")
  6070. }
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(9, "feet"),
  6078. weight: math.unit(800, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/tiberius/front.svg",
  6082. extra: 2295 / 2071
  6083. }
  6084. },
  6085. back: {
  6086. height: math.unit(9, "feet"),
  6087. weight: math.unit(800, "lbs"),
  6088. name: "Back",
  6089. image: {
  6090. source: "./media/characters/tiberius/back.svg",
  6091. extra: 2373 / 2160
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(9, "feet"),
  6099. default: true
  6100. }
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6105. {
  6106. front: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(600, "lbs"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/surgo/front.svg",
  6112. extra: 3591 / 2227
  6113. }
  6114. },
  6115. back: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(600, "lbs"),
  6118. name: "Back",
  6119. image: {
  6120. source: "./media/characters/surgo/back.svg",
  6121. extra: 3557 / 2228
  6122. }
  6123. },
  6124. laying: {
  6125. height: math.unit(6 * 0.85, "feet"),
  6126. weight: math.unit(600, "lbs"),
  6127. name: "Laying",
  6128. image: {
  6129. source: "./media/characters/surgo/laying.svg"
  6130. }
  6131. },
  6132. },
  6133. [
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(6, "feet"),
  6137. default: true
  6138. }
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6143. {
  6144. side: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(150, "lbs"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/cibus/side.svg",
  6150. extra: 800 / 400
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(6, "feet"),
  6158. default: true
  6159. }
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(240, "lbs"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/nibbles/front.svg"
  6171. }
  6172. },
  6173. side: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(240, "lbs"),
  6176. name: "Side",
  6177. image: {
  6178. source: "./media/characters/nibbles/side.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(9, "feet"),
  6186. default: true
  6187. }
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6192. {
  6193. side: {
  6194. height: math.unit(5 + 1 / 6, "feet"),
  6195. weight: math.unit(130, "lbs"),
  6196. name: "Side",
  6197. image: {
  6198. source: "./media/characters/rikky/side.svg",
  6199. extra: 851 / 801
  6200. }
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5 + 1 / 6, "feet")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(152, "feet"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Megamacro",
  6215. height: math.unit(7, "miles")
  6216. }
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6221. {
  6222. side: {
  6223. height: math.unit(370, "cm"),
  6224. weight: math.unit(350, "lbs"),
  6225. name: "Side",
  6226. image: {
  6227. source: "./media/characters/malfressa/side.svg"
  6228. }
  6229. },
  6230. walking: {
  6231. height: math.unit(370, "cm"),
  6232. weight: math.unit(350, "lbs"),
  6233. name: "Walking",
  6234. image: {
  6235. source: "./media/characters/malfressa/walking.svg"
  6236. }
  6237. },
  6238. feral: {
  6239. height: math.unit(2500, "cm"),
  6240. weight: math.unit(100000, "lbs"),
  6241. name: "Feral",
  6242. image: {
  6243. source: "./media/characters/malfressa/feral.svg",
  6244. extra: 2108 / 837,
  6245. bottom: 0.02
  6246. }
  6247. },
  6248. },
  6249. [
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(370, "cm")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(300, "meters"),
  6257. default: true
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(60, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/jaro/front.svg"
  6270. }
  6271. },
  6272. back: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(60, "kg"),
  6275. name: "Back",
  6276. image: {
  6277. source: "./media/characters/jaro/back.svg"
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Micro",
  6284. height: math.unit(7, "inches")
  6285. },
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(5.5, "feet"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Minimacro",
  6293. height: math.unit(20, "feet")
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(200, "meters")
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6303. {
  6304. front: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(195, "lb"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/rogue/front.svg"
  6310. }
  6311. },
  6312. },
  6313. [
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(90, "feet"),
  6317. default: true
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(5 + 8 / 12, "feet"),
  6326. weight: math.unit(140, "lb"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/piper/front.svg",
  6330. extra: 3948/3655,
  6331. bottom: 0/3948
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Micro",
  6338. height: math.unit(2, "inches")
  6339. },
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(5 + 8 / 12, "feet")
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(250, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Megamacro",
  6351. height: math.unit(7, "miles")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(220, "lb"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/gemini/front.svg"
  6364. }
  6365. },
  6366. back: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(220, "lb"),
  6369. name: "Back",
  6370. image: {
  6371. source: "./media/characters/gemini/back.svg"
  6372. }
  6373. },
  6374. kneeling: {
  6375. height: math.unit(6 / 1.5, "feet"),
  6376. weight: math.unit(220, "lb"),
  6377. name: "Kneeling",
  6378. image: {
  6379. source: "./media/characters/gemini/kneeling.svg",
  6380. bottom: 0.02
  6381. }
  6382. },
  6383. },
  6384. [
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(300, "meters"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(6900, "meters")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6398. {
  6399. anthro: {
  6400. height: math.unit(2.35, "meters"),
  6401. weight: math.unit(73, "kg"),
  6402. name: "Anthro",
  6403. image: {
  6404. source: "./media/characters/alicia/anthro.svg",
  6405. extra: 2571 / 2385,
  6406. bottom: 75 / 2648
  6407. }
  6408. },
  6409. paw: {
  6410. height: math.unit(1.32, "feet"),
  6411. name: "Paw",
  6412. image: {
  6413. source: "./media/characters/alicia/paw.svg"
  6414. }
  6415. },
  6416. feral: {
  6417. height: math.unit(1.69, "meters"),
  6418. weight: math.unit(73, "kg"),
  6419. name: "Feral",
  6420. image: {
  6421. source: "./media/characters/alicia/feral.svg",
  6422. extra: 2123 / 1715,
  6423. bottom: 222 / 2349
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(2.35, "meters")
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(60, "meters"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Megamacro",
  6439. height: math.unit(10000, "kilometers")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(7, "feet"),
  6448. weight: math.unit(250, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/archy/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Micro",
  6458. height: math.unit(1, "inch")
  6459. },
  6460. {
  6461. name: "Shorty",
  6462. height: math.unit(5, "feet")
  6463. },
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(7, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(600, "meters"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(1, "mile")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(1.65, "meters"),
  6484. weight: math.unit(74, "kg"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/berri/front.svg",
  6488. extra: 857 / 837,
  6489. bottom: 18 / 877
  6490. }
  6491. },
  6492. bum: {
  6493. height: math.unit(1.46, "feet"),
  6494. name: "Bum",
  6495. image: {
  6496. source: "./media/characters/berri/bum.svg"
  6497. }
  6498. },
  6499. mouth: {
  6500. height: math.unit(0.44, "feet"),
  6501. name: "Mouth",
  6502. image: {
  6503. source: "./media/characters/berri/mouth.svg"
  6504. }
  6505. },
  6506. paw: {
  6507. height: math.unit(0.826, "feet"),
  6508. name: "Paw",
  6509. image: {
  6510. source: "./media/characters/berri/paw.svg"
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(1.65, "meters")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(60, "m"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(9.213, "km")
  6527. },
  6528. {
  6529. name: "Planet Eater",
  6530. height: math.unit(489, "megameters")
  6531. },
  6532. {
  6533. name: "Teramacro",
  6534. height: math.unit(2471635000000, "meters")
  6535. },
  6536. {
  6537. name: "Examacro",
  6538. height: math.unit(8.0624e+26, "meters")
  6539. }
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(1.72, "meters"),
  6547. weight: math.unit(68, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/lexi/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Very Smol",
  6557. height: math.unit(10, "mm")
  6558. },
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(6.8, "cm"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(1.72, "m")
  6567. }
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(1.69, "meters"),
  6575. weight: math.unit(68, "kg"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/martin/front.svg",
  6579. extra: 596 / 581
  6580. }
  6581. }
  6582. },
  6583. [
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(6.85, "cm"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(1.69, "m")
  6592. }
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(1.69, "meters"),
  6600. weight: math.unit(68, "kg"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/juno/front.svg"
  6604. }
  6605. }
  6606. },
  6607. [
  6608. {
  6609. name: "Micro",
  6610. height: math.unit(7, "cm")
  6611. },
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(1.89, "m")
  6615. },
  6616. {
  6617. name: "Macro",
  6618. height: math.unit(353, "meters"),
  6619. default: true
  6620. }
  6621. ]
  6622. ))
  6623. characterMakers.push(() => makeCharacter(
  6624. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6625. {
  6626. front: {
  6627. height: math.unit(1.93, "meters"),
  6628. weight: math.unit(83, "kg"),
  6629. name: "Front",
  6630. image: {
  6631. source: "./media/characters/samantha/front.svg"
  6632. }
  6633. },
  6634. frontClothed: {
  6635. height: math.unit(1.93, "meters"),
  6636. weight: math.unit(83, "kg"),
  6637. name: "Front (Clothed)",
  6638. image: {
  6639. source: "./media/characters/samantha/front-clothed.svg"
  6640. }
  6641. },
  6642. back: {
  6643. height: math.unit(1.93, "meters"),
  6644. weight: math.unit(83, "kg"),
  6645. name: "Back",
  6646. image: {
  6647. source: "./media/characters/samantha/back.svg"
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(1.93, "m")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(74, "meters"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Macro+",
  6663. height: math.unit(223, "meters"),
  6664. },
  6665. {
  6666. name: "Megamacro",
  6667. height: math.unit(8381, "meters"),
  6668. },
  6669. {
  6670. name: "Megamacro+",
  6671. height: math.unit(12000, "kilometers")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(1.92, "meters"),
  6680. weight: math.unit(80, "kg"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/dr-clay/front.svg"
  6684. }
  6685. },
  6686. frontClothed: {
  6687. height: math.unit(1.92, "meters"),
  6688. weight: math.unit(80, "kg"),
  6689. name: "Front (Clothed)",
  6690. image: {
  6691. source: "./media/characters/dr-clay/front-clothed.svg"
  6692. }
  6693. }
  6694. },
  6695. [
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.92, "m")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(214, "meters"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Macro+",
  6707. height: math.unit(12.237, "meters"),
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(557, "megameters"),
  6712. },
  6713. {
  6714. name: "Unimaginable",
  6715. height: math.unit(120e9, "lightyears")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(2, "meters"),
  6724. weight: math.unit(80, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Teramacro",
  6734. height: math.unit(500000, "lightyears"),
  6735. default: true
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6741. {
  6742. crux: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(150, "kg"),
  6745. name: "Crux",
  6746. image: {
  6747. source: "./media/characters/vemus/crux.svg",
  6748. extra: 1074/936,
  6749. bottom: 23/1097
  6750. }
  6751. },
  6752. skunkTanuki: {
  6753. height: math.unit(2, "meters"),
  6754. weight: math.unit(150, "kg"),
  6755. name: "Skunk-Tanuki",
  6756. image: {
  6757. source: "./media/characters/vemus/skunk-tanuki.svg",
  6758. extra: 926/893,
  6759. bottom: 20/946
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(3.75, "meters"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Big",
  6771. height: math.unit(8, "meters")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(100, "meters")
  6776. },
  6777. {
  6778. name: "Macro+",
  6779. height: math.unit(1500, "meters")
  6780. },
  6781. {
  6782. name: "Stellar",
  6783. height: math.unit(14e8, "meters")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(2, "meters"),
  6792. weight: math.unit(70, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/beherit/front.svg",
  6796. extra: 1408 / 1242
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(6, "feet")
  6804. },
  6805. {
  6806. name: "Lorg",
  6807. height: math.unit(25, "feet"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Lorger",
  6812. height: math.unit(75, "feet")
  6813. },
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(200, "meters")
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(2, "meters"),
  6825. weight: math.unit(150, "kg"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/everett/front.svg",
  6829. extra: 2038 / 1737,
  6830. bottom: 0.03
  6831. }
  6832. },
  6833. paw: {
  6834. height: math.unit(2 / 3.6, "meters"),
  6835. name: "Paw",
  6836. image: {
  6837. source: "./media/characters/everett/paw.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(15, "feet"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Lorg",
  6849. height: math.unit(70, "feet"),
  6850. default: true
  6851. },
  6852. {
  6853. name: "Lorger",
  6854. height: math.unit(250, "feet")
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(500, "meters")
  6859. },
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6864. {
  6865. front: {
  6866. height: math.unit(2, "meters"),
  6867. weight: math.unit(86, "kg"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/rose/front.svg",
  6871. extra: 1785/1636,
  6872. bottom: 30/1815
  6873. }
  6874. },
  6875. frontSporty: {
  6876. height: math.unit(2, "meters"),
  6877. weight: math.unit(86, "kg"),
  6878. name: "Front (Sporty)",
  6879. image: {
  6880. source: "./media/characters/rose/front-sporty.svg",
  6881. extra: 350/335,
  6882. bottom: 10/360
  6883. }
  6884. },
  6885. frontAlt: {
  6886. height: math.unit(1.6, "meters"),
  6887. weight: math.unit(86, "kg"),
  6888. name: "Front (Alt)",
  6889. image: {
  6890. source: "./media/characters/rose/front-alt.svg",
  6891. extra: 299/283,
  6892. bottom: 3/302
  6893. }
  6894. },
  6895. plush: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(86/3, "kg"),
  6898. name: "Plush",
  6899. image: {
  6900. source: "./media/characters/rose/plush.svg",
  6901. extra: 361/337,
  6902. bottom: 11/372
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "True Micro",
  6909. height: math.unit(9, "cm")
  6910. },
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(16, "cm")
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(1.85, "meters"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Mini-Macro",
  6922. height: math.unit(5, "meters")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(15, "meters")
  6927. },
  6928. {
  6929. name: "True Macro",
  6930. height: math.unit(40, "meters")
  6931. },
  6932. {
  6933. name: "City Scale",
  6934. height: math.unit(1, "km")
  6935. },
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6940. {
  6941. front: {
  6942. height: math.unit(2, "meters"),
  6943. weight: math.unit(350, "lbs"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/regal/front.svg"
  6947. }
  6948. },
  6949. back: {
  6950. height: math.unit(2, "meters"),
  6951. weight: math.unit(350, "lbs"),
  6952. name: "Back",
  6953. image: {
  6954. source: "./media/characters/regal/back.svg"
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(350, "feet"),
  6962. default: true
  6963. }
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(4 + 11 / 12, "feet"),
  6971. weight: math.unit(100, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/opal/front.svg"
  6975. }
  6976. },
  6977. frontAlt: {
  6978. height: math.unit(4 + 11 / 12, "feet"),
  6979. weight: math.unit(100, "lbs"),
  6980. name: "Front (Alt)",
  6981. image: {
  6982. source: "./media/characters/opal/front-alt.svg"
  6983. }
  6984. },
  6985. },
  6986. [
  6987. {
  6988. name: "Small",
  6989. height: math.unit(4 + 11 / 12, "feet")
  6990. },
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(20, "feet"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(120, "feet")
  6999. },
  7000. {
  7001. name: "Megamacro",
  7002. height: math.unit(80, "miles")
  7003. },
  7004. {
  7005. name: "True Size",
  7006. height: math.unit(100000, "lightyears")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(6, "feet"),
  7015. weight: math.unit(200, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/vector-wuff/front.svg"
  7019. }
  7020. }
  7021. },
  7022. [
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(2.8, "meters")
  7026. },
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(450, "meters"),
  7030. default: true
  7031. },
  7032. {
  7033. name: "Megamacro",
  7034. height: math.unit(15, "kilometers")
  7035. }
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(256, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/dannik/front.svg"
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(69.57, "meters"),
  7054. default: true
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(120, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/azura-saharah/front.svg"
  7067. }
  7068. },
  7069. back: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(120, "lbs"),
  7072. name: "Back",
  7073. image: {
  7074. source: "./media/characters/azura-saharah/back.svg"
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(100, "feet"),
  7082. default: true
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7088. {
  7089. side: {
  7090. height: math.unit(5 + 4 / 12, "feet"),
  7091. weight: math.unit(163, "lbs"),
  7092. name: "Side",
  7093. image: {
  7094. source: "./media/characters/kennedy/side.svg"
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Standard Doggo",
  7101. height: math.unit(5 + 4 / 12, "feet")
  7102. },
  7103. {
  7104. name: "Big Doggo",
  7105. height: math.unit(25 + 3 / 12, "feet"),
  7106. default: true
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(90, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/odi-lunar/front.svg"
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Micro",
  7125. height: math.unit(3, "inches"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(5.5, "feet")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7136. {
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(220, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/mandake/back.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(7, "feet"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Macro",
  7154. height: math.unit(78, "feet")
  7155. },
  7156. {
  7157. name: "Macro+",
  7158. height: math.unit(300, "meters")
  7159. },
  7160. {
  7161. name: "Macro++",
  7162. height: math.unit(2400, "feet")
  7163. },
  7164. {
  7165. name: "Megamacro",
  7166. height: math.unit(5167, "meters")
  7167. },
  7168. {
  7169. name: "Gigamacro",
  7170. height: math.unit(41769, "miles")
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(120, "lbs"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/yozey/front.svg"
  7183. }
  7184. },
  7185. frontAlt: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(120, "lbs"),
  7188. name: "Front (Alt)",
  7189. image: {
  7190. source: "./media/characters/yozey/front-alt.svg"
  7191. }
  7192. },
  7193. side: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(120, "lbs"),
  7196. name: "Side",
  7197. image: {
  7198. source: "./media/characters/yozey/side.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(3, "inches"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(6, "feet")
  7211. }
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(103, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/valeska-voss/front.svg"
  7223. }
  7224. }
  7225. },
  7226. [
  7227. {
  7228. name: "Mini-Sized Sub",
  7229. height: math.unit(3.1, "inches")
  7230. },
  7231. {
  7232. name: "Mid-Sized Sub",
  7233. height: math.unit(6.2, "inches")
  7234. },
  7235. {
  7236. name: "Full-Sized Sub",
  7237. height: math.unit(9.3, "inches")
  7238. },
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(5 + 2 / 12, "foot"),
  7242. default: true
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(160, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/gene-zeta/front.svg",
  7255. extra: 3006 / 2826,
  7256. bottom: 182 / 3188
  7257. }
  7258. }
  7259. },
  7260. [
  7261. {
  7262. name: "Micro",
  7263. height: math.unit(6, "inches")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(5 + 11 / 12, "foot"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(140, "feet")
  7273. },
  7274. {
  7275. name: "Supercharged",
  7276. height: math.unit(2500, "feet")
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(350, "lbs"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/razinox/front.svg",
  7289. extra: 1686 / 1548,
  7290. bottom: 28.2 / 1868
  7291. }
  7292. },
  7293. back: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(350, "lbs"),
  7296. name: "Back",
  7297. image: {
  7298. source: "./media/characters/razinox/back.svg",
  7299. extra: 1660 / 1590,
  7300. bottom: 15 / 1665
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(10 + 8 / 12, "foot")
  7308. },
  7309. {
  7310. name: "Minimacro",
  7311. height: math.unit(15, "foot")
  7312. },
  7313. {
  7314. name: "Macro",
  7315. height: math.unit(60, "foot"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Megamacro",
  7320. height: math.unit(5, "miles")
  7321. },
  7322. {
  7323. name: "Gigamacro",
  7324. height: math.unit(6000, "miles")
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7330. {
  7331. front: {
  7332. height: math.unit(6, "feet"),
  7333. weight: math.unit(150, "lbs"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/cobalt/front.svg"
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(8 + 1 / 12, "foot")
  7344. },
  7345. {
  7346. name: "Macro",
  7347. height: math.unit(111, "foot"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Supracosmic",
  7352. height: math.unit(1e42, "feet")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(140, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/amanda/front.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Micro",
  7371. height: math.unit(5, "inches"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(2.75, "meters"),
  7381. weight: math.unit(1200, "lb"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/teal/front.svg",
  7385. extra: 2463 / 2320,
  7386. bottom: 166 / 2629
  7387. }
  7388. },
  7389. back: {
  7390. height: math.unit(2.75, "meters"),
  7391. weight: math.unit(1200, "lb"),
  7392. name: "Back",
  7393. image: {
  7394. source: "./media/characters/teal/back.svg",
  7395. extra: 2580 / 2489,
  7396. bottom: 151 / 2731
  7397. }
  7398. },
  7399. sitting: {
  7400. height: math.unit(1.9, "meters"),
  7401. weight: math.unit(1200, "lb"),
  7402. name: "Sitting",
  7403. image: {
  7404. source: "./media/characters/teal/sitting.svg",
  7405. extra: 623 / 590,
  7406. bottom: 121 / 744
  7407. }
  7408. },
  7409. standing: {
  7410. height: math.unit(2.75, "meters"),
  7411. weight: math.unit(1200, "lb"),
  7412. name: "Standing",
  7413. image: {
  7414. source: "./media/characters/teal/standing.svg",
  7415. extra: 923 / 893,
  7416. bottom: 60 / 983
  7417. }
  7418. },
  7419. stretching: {
  7420. height: math.unit(3.65, "meters"),
  7421. weight: math.unit(1200, "lb"),
  7422. name: "Stretching",
  7423. image: {
  7424. source: "./media/characters/teal/stretching.svg",
  7425. extra: 1276 / 1244,
  7426. bottom: 0 / 1276
  7427. }
  7428. },
  7429. legged: {
  7430. height: math.unit(1.3, "meters"),
  7431. weight: math.unit(100, "lb"),
  7432. name: "Legged",
  7433. image: {
  7434. source: "./media/characters/teal/legged.svg",
  7435. extra: 462 / 437,
  7436. bottom: 24 / 486
  7437. }
  7438. },
  7439. naga: {
  7440. height: math.unit(5.4, "meters"),
  7441. weight: math.unit(4000, "lb"),
  7442. name: "Naga",
  7443. image: {
  7444. source: "./media/characters/teal/naga.svg",
  7445. extra: 1902 / 1858,
  7446. bottom: 0 / 1902
  7447. }
  7448. },
  7449. hand: {
  7450. height: math.unit(0.52, "meters"),
  7451. name: "Hand",
  7452. image: {
  7453. source: "./media/characters/teal/hand.svg"
  7454. }
  7455. },
  7456. maw: {
  7457. height: math.unit(0.43, "meters"),
  7458. name: "Maw",
  7459. image: {
  7460. source: "./media/characters/teal/maw.svg"
  7461. }
  7462. },
  7463. slit: {
  7464. height: math.unit(0.25, "meters"),
  7465. name: "Slit",
  7466. image: {
  7467. source: "./media/characters/teal/slit.svg"
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(2.75, "meters"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(300, "feet")
  7480. },
  7481. {
  7482. name: "Macro+",
  7483. height: math.unit(2000, "feet")
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7489. {
  7490. frontCat: {
  7491. height: math.unit(6, "feet"),
  7492. weight: math.unit(180, "lbs"),
  7493. name: "Front (Cat)",
  7494. image: {
  7495. source: "./media/characters/ravin-amulet/front-cat.svg"
  7496. }
  7497. },
  7498. frontCatAlt: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(180, "lbs"),
  7501. name: "Front (Alt, Cat)",
  7502. image: {
  7503. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7504. }
  7505. },
  7506. frontWerewolf: {
  7507. height: math.unit(6 * 1.2, "feet"),
  7508. weight: math.unit(225, "lbs"),
  7509. name: "Front (Werewolf)",
  7510. image: {
  7511. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7512. }
  7513. },
  7514. backWerewolf: {
  7515. height: math.unit(6 * 1.2, "feet"),
  7516. weight: math.unit(225, "lbs"),
  7517. name: "Back (Werewolf)",
  7518. image: {
  7519. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7520. }
  7521. },
  7522. },
  7523. [
  7524. {
  7525. name: "Nano",
  7526. height: math.unit(1, "micrometer")
  7527. },
  7528. {
  7529. name: "Micro",
  7530. height: math.unit(1, "inch")
  7531. },
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(6, "feet"),
  7535. default: true
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(60, "feet")
  7540. }
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(165, "lbs"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/fluoresce/front.svg"
  7552. }
  7553. }
  7554. },
  7555. [
  7556. {
  7557. name: "Micro",
  7558. height: math.unit(6, "cm")
  7559. },
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(5 + 7 / 12, "feet"),
  7563. default: true
  7564. },
  7565. {
  7566. name: "Macro",
  7567. height: math.unit(56, "feet")
  7568. },
  7569. {
  7570. name: "Megamacro",
  7571. height: math.unit(1.9, "miles")
  7572. },
  7573. ]
  7574. ))
  7575. characterMakers.push(() => makeCharacter(
  7576. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7577. {
  7578. front: {
  7579. height: math.unit(9 + 6 / 12, "feet"),
  7580. weight: math.unit(523, "lbs"),
  7581. name: "Side",
  7582. image: {
  7583. source: "./media/characters/aurora/side.svg"
  7584. }
  7585. }
  7586. },
  7587. [
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(9 + 6 / 12, "feet")
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(96, "feet"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "Macro+",
  7599. height: math.unit(243, "feet")
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7605. {
  7606. front: {
  7607. height: math.unit(194, "cm"),
  7608. weight: math.unit(90, "kg"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/ranek/front.svg"
  7612. }
  7613. },
  7614. side: {
  7615. height: math.unit(194, "cm"),
  7616. weight: math.unit(90, "kg"),
  7617. name: "Side",
  7618. image: {
  7619. source: "./media/characters/ranek/side.svg"
  7620. }
  7621. },
  7622. back: {
  7623. height: math.unit(194, "cm"),
  7624. weight: math.unit(90, "kg"),
  7625. name: "Back",
  7626. image: {
  7627. source: "./media/characters/ranek/back.svg"
  7628. }
  7629. },
  7630. feral: {
  7631. height: math.unit(30, "cm"),
  7632. weight: math.unit(1.6, "lbs"),
  7633. name: "Feral",
  7634. image: {
  7635. source: "./media/characters/ranek/feral.svg"
  7636. }
  7637. },
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(194, "cm"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Macro",
  7647. height: math.unit(100, "meters")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(5 + 6 / 12, "feet"),
  7656. weight: math.unit(153, "lbs"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/andrew-cooper/front.svg"
  7660. }
  7661. },
  7662. },
  7663. [
  7664. {
  7665. name: "Nano",
  7666. height: math.unit(1, "mm")
  7667. },
  7668. {
  7669. name: "Micro",
  7670. height: math.unit(2, "inches")
  7671. },
  7672. {
  7673. name: "Normal",
  7674. height: math.unit(5 + 6 / 12, "feet"),
  7675. default: true
  7676. }
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(6, "feet"),
  7684. weight: math.unit(180, "lbs"),
  7685. name: "Front",
  7686. image: {
  7687. source: "./media/characters/akane-sato/front.svg",
  7688. extra: 1219 / 1140
  7689. }
  7690. },
  7691. back: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(180, "lbs"),
  7694. name: "Back",
  7695. image: {
  7696. source: "./media/characters/akane-sato/back.svg",
  7697. extra: 1219 / 1170
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(2.5, "meters")
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(250, "meters"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Megamacro",
  7713. height: math.unit(25, "km")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(65, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/rook/front.svg",
  7726. extra: 960 / 950
  7727. }
  7728. }
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(8.8, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(88, "feet"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(8, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(12 + 2 / 12, "feet"),
  7751. weight: math.unit(808, "lbs"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/prodigy/front.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(12 + 2 / 12, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(143, "feet")
  7767. },
  7768. {
  7769. name: "Macro+",
  7770. height: math.unit(400, "feet")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(6, "feet"),
  7779. weight: math.unit(225, "lbs"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/daniel/front.svg"
  7783. }
  7784. },
  7785. leaning: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(225, "lbs"),
  7788. name: "Leaning",
  7789. image: {
  7790. source: "./media/characters/daniel/leaning.svg"
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Macro",
  7797. height: math.unit(1000, "feet"),
  7798. default: true
  7799. },
  7800. ]
  7801. ))
  7802. characterMakers.push(() => makeCharacter(
  7803. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7804. {
  7805. front: {
  7806. height: math.unit(6, "feet"),
  7807. weight: math.unit(88, "lbs"),
  7808. name: "Front",
  7809. image: {
  7810. source: "./media/characters/chiros/front.svg",
  7811. extra: 306 / 226
  7812. }
  7813. },
  7814. side: {
  7815. height: math.unit(6, "feet"),
  7816. weight: math.unit(88, "lbs"),
  7817. name: "Side",
  7818. image: {
  7819. source: "./media/characters/chiros/side.svg",
  7820. extra: 306 / 226
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(6, "cm"),
  7828. default: true
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(100, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/selka/front.svg",
  7841. extra: 947 / 887
  7842. }
  7843. }
  7844. },
  7845. [
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(5, "cm"),
  7849. default: true
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(8 + 3 / 12, "feet"),
  7858. weight: math.unit(424, "lbs"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/verin/front.svg",
  7862. extra: 1845 / 1550
  7863. }
  7864. },
  7865. frontArmored: {
  7866. height: math.unit(8 + 3 / 12, "feet"),
  7867. weight: math.unit(424, "lbs"),
  7868. name: "Front (Armored)",
  7869. image: {
  7870. source: "./media/characters/verin/front-armor.svg",
  7871. extra: 1845 / 1550,
  7872. bottom: 0.01
  7873. }
  7874. },
  7875. back: {
  7876. height: math.unit(8 + 3 / 12, "feet"),
  7877. weight: math.unit(424, "lbs"),
  7878. name: "Back",
  7879. image: {
  7880. source: "./media/characters/verin/back.svg",
  7881. bottom: 0.1,
  7882. extra: 1
  7883. }
  7884. },
  7885. foot: {
  7886. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7887. name: "Foot",
  7888. image: {
  7889. source: "./media/characters/verin/foot.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(8 + 3 / 12, "feet")
  7897. },
  7898. {
  7899. name: "Minimacro",
  7900. height: math.unit(21, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(626, "feet")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(2.718, "meters"),
  7914. weight: math.unit(150, "lbs"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/sovrim-terraquian/front.svg"
  7918. }
  7919. },
  7920. back: {
  7921. height: math.unit(2.718, "meters"),
  7922. weight: math.unit(150, "lbs"),
  7923. name: "Back",
  7924. image: {
  7925. source: "./media/characters/sovrim-terraquian/back.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(2, "inches")
  7933. },
  7934. {
  7935. name: "Small",
  7936. height: math.unit(1, "meter")
  7937. },
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(Math.E, "meters"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(20, "meters")
  7946. },
  7947. {
  7948. name: "Macro+",
  7949. height: math.unit(400, "meters")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(7, "feet"),
  7958. weight: math.unit(489, "lbs"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/reece-silvermane/front.svg",
  7962. bottom: 0.02,
  7963. extra: 1
  7964. }
  7965. },
  7966. },
  7967. [
  7968. {
  7969. name: "Macro",
  7970. height: math.unit(1.5, "miles"),
  7971. default: true
  7972. },
  7973. ]
  7974. ))
  7975. characterMakers.push(() => makeCharacter(
  7976. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7977. {
  7978. front: {
  7979. height: math.unit(6, "feet"),
  7980. weight: math.unit(78, "kg"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/kane/front.svg",
  7984. extra: 978 / 899
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(2.1, "m"),
  7992. },
  7993. {
  7994. name: "Macro",
  7995. height: math.unit(1, "km"),
  7996. default: true
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(6, "feet"),
  8005. weight: math.unit(200, "kg"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/tegon/front.svg",
  8009. bottom: 0.01,
  8010. extra: 1
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Micro",
  8017. height: math.unit(1, "inch")
  8018. },
  8019. {
  8020. name: "Normal",
  8021. height: math.unit(6 + 3 / 12, "feet"),
  8022. default: true
  8023. },
  8024. {
  8025. name: "Macro",
  8026. height: math.unit(300, "feet")
  8027. },
  8028. {
  8029. name: "Megamacro",
  8030. height: math.unit(69, "miles")
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8036. {
  8037. side: {
  8038. height: math.unit(6, "feet"),
  8039. weight: math.unit(2304, "lbs"),
  8040. name: "Side",
  8041. image: {
  8042. source: "./media/characters/arcturax/side.svg",
  8043. extra: 790 / 376,
  8044. bottom: 0.01
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(2, "inch")
  8052. },
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(6, "feet")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(39, "feet"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(7, "miles")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8070. {
  8071. front: {
  8072. height: math.unit(6, "feet"),
  8073. weight: math.unit(50, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/sentri/front.svg",
  8077. extra: 1750 / 1570,
  8078. bottom: 0.025
  8079. }
  8080. },
  8081. frontAlt: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(50, "lbs"),
  8084. name: "Front (Alt)",
  8085. image: {
  8086. source: "./media/characters/sentri/front-alt.svg",
  8087. extra: 1750 / 1570,
  8088. bottom: 0.025
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Normal",
  8095. height: math.unit(15, "feet"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(2500, "feet")
  8101. }
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(5 + 8 / 12, "feet"),
  8109. weight: math.unit(130, "lbs"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/corvin/front.svg",
  8113. extra: 1803 / 1629
  8114. }
  8115. },
  8116. frontShirt: {
  8117. height: math.unit(5 + 8 / 12, "feet"),
  8118. weight: math.unit(130, "lbs"),
  8119. name: "Front (Shirt)",
  8120. image: {
  8121. source: "./media/characters/corvin/front-shirt.svg",
  8122. extra: 1803 / 1629
  8123. }
  8124. },
  8125. frontPoncho: {
  8126. height: math.unit(5 + 8 / 12, "feet"),
  8127. weight: math.unit(130, "lbs"),
  8128. name: "Front (Poncho)",
  8129. image: {
  8130. source: "./media/characters/corvin/front-poncho.svg",
  8131. extra: 1803 / 1629
  8132. }
  8133. },
  8134. side: {
  8135. height: math.unit(5 + 8 / 12, "feet"),
  8136. weight: math.unit(130, "lbs"),
  8137. name: "Side",
  8138. image: {
  8139. source: "./media/characters/corvin/side.svg",
  8140. extra: 1012 / 945
  8141. }
  8142. },
  8143. back: {
  8144. height: math.unit(5 + 8 / 12, "feet"),
  8145. weight: math.unit(130, "lbs"),
  8146. name: "Back",
  8147. image: {
  8148. source: "./media/characters/corvin/back.svg",
  8149. extra: 1803 / 1629
  8150. }
  8151. },
  8152. },
  8153. [
  8154. {
  8155. name: "Micro",
  8156. height: math.unit(3, "inches")
  8157. },
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(5 + 8 / 12, "feet")
  8161. },
  8162. {
  8163. name: "Macro",
  8164. height: math.unit(300, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Megamacro",
  8169. height: math.unit(500, "miles")
  8170. }
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(6, "feet"),
  8178. weight: math.unit(135, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/q/front.svg",
  8182. extra: 854 / 752,
  8183. bottom: 0.005
  8184. }
  8185. },
  8186. back: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(130, "lbs"),
  8189. name: "Back",
  8190. image: {
  8191. source: "./media/characters/q/back.svg",
  8192. extra: 854 / 752
  8193. }
  8194. },
  8195. },
  8196. [
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(90, "feet"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Extra Macro",
  8204. height: math.unit(300, "feet"),
  8205. },
  8206. {
  8207. name: "BIG WALF",
  8208. height: math.unit(750, "feet"),
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(6, "feet"),
  8217. weight: math.unit(150, "lbs"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/carley/front.svg",
  8221. extra: 3927 / 3540,
  8222. bottom: 29.2 / 735
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(6 + 3 / 12, "feet")
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(185, "feet"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Megamacro",
  8238. height: math.unit(8, "miles"),
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(3, "feet"),
  8247. weight: math.unit(28, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/citrine/front.svg"
  8251. }
  8252. }
  8253. },
  8254. [
  8255. {
  8256. name: "Normal",
  8257. height: math.unit(3, "feet"),
  8258. default: true
  8259. }
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8264. {
  8265. front: {
  8266. height: math.unit(14, "feet"),
  8267. weight: math.unit(1450, "kg"),
  8268. capacity: math.unit(15, "people"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/aura-starwind/front.svg",
  8272. extra: 1440/1327,
  8273. bottom: 11/1451
  8274. }
  8275. },
  8276. side: {
  8277. height: math.unit(14, "feet"),
  8278. weight: math.unit(1450, "kg"),
  8279. capacity: math.unit(15, "people"),
  8280. name: "Side",
  8281. image: {
  8282. source: "./media/characters/aura-starwind/side.svg",
  8283. extra: 1654 / 1497
  8284. }
  8285. },
  8286. taur: {
  8287. height: math.unit(18, "feet"),
  8288. weight: math.unit(5500, "kg"),
  8289. capacity: math.unit(50, "people"),
  8290. name: "Taur",
  8291. image: {
  8292. source: "./media/characters/aura-starwind/taur.svg",
  8293. extra: 1760 / 1650
  8294. }
  8295. },
  8296. feral: {
  8297. height: math.unit(46, "feet"),
  8298. weight: math.unit(25000, "kg"),
  8299. capacity: math.unit(120, "people"),
  8300. name: "Feral",
  8301. image: {
  8302. source: "./media/characters/aura-starwind/feral.svg"
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(14, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "Macro",
  8314. height: math.unit(50, "meters")
  8315. },
  8316. {
  8317. name: "Megamacro",
  8318. height: math.unit(5000, "meters")
  8319. },
  8320. {
  8321. name: "Gigamacro",
  8322. height: math.unit(100000, "kilometers")
  8323. },
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(2 + 7 / 12, "feet"),
  8331. weight: math.unit(32, "lbs"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/rivet/front.svg",
  8335. extra: 1716 / 1658,
  8336. bottom: 0.03
  8337. }
  8338. },
  8339. foot: {
  8340. height: math.unit(0.551, "feet"),
  8341. name: "Rivet's Foot",
  8342. image: {
  8343. source: "./media/characters/rivet/foot.svg"
  8344. },
  8345. rename: true
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Micro",
  8351. height: math.unit(1.5, "inches"),
  8352. },
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(2 + 7 / 12, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Macro",
  8360. height: math.unit(85, "feet")
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(2.2, "km")
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(5 + 9 / 12, "feet"),
  8373. weight: math.unit(150, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/coffee/front.svg",
  8377. extra: 3666 / 3032,
  8378. bottom: 0.04
  8379. }
  8380. },
  8381. foot: {
  8382. height: math.unit(1.29, "feet"),
  8383. name: "Foot",
  8384. image: {
  8385. source: "./media/characters/coffee/foot.svg"
  8386. }
  8387. },
  8388. },
  8389. [
  8390. {
  8391. name: "Micro",
  8392. height: math.unit(2, "inches"),
  8393. },
  8394. {
  8395. name: "Normal",
  8396. height: math.unit(5 + 9 / 12, "feet"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Macro",
  8401. height: math.unit(800, "feet")
  8402. },
  8403. {
  8404. name: "Megamacro",
  8405. height: math.unit(25, "miles")
  8406. }
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(200, "lbs"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/chari-gal/front.svg",
  8418. extra: 1568 / 1385,
  8419. bottom: 0.047
  8420. }
  8421. },
  8422. gigantamax: {
  8423. height: math.unit(6 * 16, "feet"),
  8424. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8425. name: "Gigantamax",
  8426. image: {
  8427. source: "./media/characters/chari-gal/gigantamax.svg",
  8428. extra: 1124 / 888,
  8429. bottom: 0.03
  8430. }
  8431. },
  8432. },
  8433. [
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(5 + 7 / 12, "feet")
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(200, "feet"),
  8441. default: true
  8442. }
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(6, "feet"),
  8450. weight: math.unit(150, "lbs"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/nova/front.svg",
  8454. extra: 5000 / 4722,
  8455. bottom: 0.02
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Micro-",
  8462. height: math.unit(0.8, "inches")
  8463. },
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(2, "inches"),
  8467. default: true
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(3 + 1 / 12, "feet"),
  8476. weight: math.unit(21.7, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/argent/front.svg",
  8480. extra: 1471 / 1331,
  8481. bottom: 100.8 / 1575.5
  8482. }
  8483. }
  8484. },
  8485. [
  8486. {
  8487. name: "Micro",
  8488. height: math.unit(2, "inches")
  8489. },
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(3 + 1 / 12, "feet"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(120, "feet")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8503. {
  8504. lamp: {
  8505. height: math.unit(7 * 1559 / 989, "feet"),
  8506. name: "Magic Lamp",
  8507. image: {
  8508. source: "./media/characters/mira-al-cul/lamp.svg",
  8509. extra: 1617 / 1559
  8510. }
  8511. },
  8512. front: {
  8513. height: math.unit(7, "feet"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/mira-al-cul/front.svg",
  8517. extra: 1044 / 990
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Heavily Restricted",
  8524. height: math.unit(7 * 1559 / 989, "feet")
  8525. },
  8526. {
  8527. name: "Freshly Freed",
  8528. height: math.unit(50 * 1559 / 989, "feet")
  8529. },
  8530. {
  8531. name: "World Encompassing",
  8532. height: math.unit(10000 * 1559 / 989, "miles")
  8533. },
  8534. {
  8535. name: "Galactic",
  8536. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8537. },
  8538. {
  8539. name: "Palmed Universe",
  8540. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Multiversal Matriarch",
  8545. height: math.unit(8.87e10, "yottameters")
  8546. },
  8547. {
  8548. name: "Void Mother",
  8549. height: math.unit(3.14e110, "yottaparsecs")
  8550. },
  8551. {
  8552. name: "Toying with Transcendence",
  8553. height: math.unit(1e307, "meters")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8559. {
  8560. front: {
  8561. height: math.unit(17 + 1 / 12, "feet"),
  8562. weight: math.unit(476.2 * 5, "lbs"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/kuro-shi-uchū/front.svg",
  8566. extra: 2329 / 1835,
  8567. bottom: 0.02
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Micro",
  8574. height: math.unit(2, "inches")
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(12, "meters")
  8579. },
  8580. {
  8581. name: "Planetary",
  8582. height: math.unit(0.00929, "AU"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Universal",
  8587. height: math.unit(20, "gigaparsecs")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(5 + 2 / 12, "feet"),
  8596. weight: math.unit(120, "lbs"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/katherine/front.svg",
  8600. extra: 2075 / 1969
  8601. }
  8602. },
  8603. dress: {
  8604. height: math.unit(5 + 2 / 12, "feet"),
  8605. weight: math.unit(120, "lbs"),
  8606. name: "Dress",
  8607. image: {
  8608. source: "./media/characters/katherine/dress.svg",
  8609. extra: 2258 / 2064
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Micro",
  8616. height: math.unit(1, "inches"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(5 + 2 / 12, "feet")
  8622. },
  8623. {
  8624. name: "Macro",
  8625. height: math.unit(100, "meters")
  8626. },
  8627. {
  8628. name: "Megamacro",
  8629. height: math.unit(80, "miles")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(7 + 8 / 12, "feet"),
  8638. weight: math.unit(250, "lbs"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/yevis/front.svg",
  8642. extra: 1938 / 1755
  8643. }
  8644. }
  8645. },
  8646. [
  8647. {
  8648. name: "Mortal",
  8649. height: math.unit(7 + 8 / 12, "feet")
  8650. },
  8651. {
  8652. name: "Battle",
  8653. height: math.unit(25 + 11 / 12, "feet")
  8654. },
  8655. {
  8656. name: "Wrath",
  8657. height: math.unit(1654 + 11 / 12, "feet")
  8658. },
  8659. {
  8660. name: "Planet Destroyer",
  8661. height: math.unit(12000, "miles")
  8662. },
  8663. {
  8664. name: "Galaxy Conqueror",
  8665. height: math.unit(1.45, "zettameters"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Universal War",
  8670. height: math.unit(184, "gigaparsecs")
  8671. },
  8672. {
  8673. name: "Eternity War",
  8674. height: math.unit(1.98e55, "yottaparsecs")
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(5 + 8 / 12, "feet"),
  8683. weight: math.unit(63, "kg"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/xavier/front.svg",
  8687. extra: 944 / 883
  8688. }
  8689. },
  8690. frontStretch: {
  8691. height: math.unit(5 + 8 / 12, "feet"),
  8692. weight: math.unit(63, "kg"),
  8693. name: "Stretching",
  8694. image: {
  8695. source: "./media/characters/xavier/front-stretch.svg",
  8696. extra: 962 / 820
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(5 + 8 / 12, "feet")
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(100, "meters"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "McLargeHuge",
  8712. height: math.unit(10, "miles")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8718. {
  8719. front: {
  8720. height: math.unit(5 + 5 / 12, "feet"),
  8721. weight: math.unit(150, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/joshii/front.svg",
  8725. extra: 765 / 653,
  8726. bottom: 51 / 816
  8727. }
  8728. },
  8729. foot: {
  8730. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8731. name: "Foot",
  8732. image: {
  8733. source: "./media/characters/joshii/foot.svg"
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Micro",
  8740. height: math.unit(2, "inches"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(5 + 5 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(785, "feet")
  8750. },
  8751. {
  8752. name: "Megamacro",
  8753. height: math.unit(24.5, "miles")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(6, "feet"),
  8762. weight: math.unit(150, "lb"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/goddess-elizabeth/front.svg",
  8766. extra: 1800 / 1525,
  8767. bottom: 0.005
  8768. }
  8769. },
  8770. foot: {
  8771. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8772. name: "Foot",
  8773. image: {
  8774. source: "./media/characters/goddess-elizabeth/foot.svg"
  8775. }
  8776. },
  8777. mouth: {
  8778. height: math.unit(6, "feet"),
  8779. name: "Mouth",
  8780. image: {
  8781. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Micro",
  8788. height: math.unit(12, "feet")
  8789. },
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(80, "miles"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(15000, "parsecs")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(5 + 9 / 12, "feet"),
  8806. weight: math.unit(144, "lb"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/kara/front.svg"
  8810. }
  8811. },
  8812. feet: {
  8813. height: math.unit(6 / 6.765, "feet"),
  8814. name: "Kara's Feet",
  8815. rename: true,
  8816. image: {
  8817. source: "./media/characters/kara/feet.svg"
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(5 + 9 / 12, "feet")
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(174, "feet"),
  8829. default: true
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(18, "feet"),
  8838. weight: math.unit(4050, "lb"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/tyrone/front.svg",
  8842. extra: 2405 / 2270,
  8843. bottom: 182 / 2587
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(18, "feet"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(300, "feet")
  8856. },
  8857. {
  8858. name: "Megamacro",
  8859. height: math.unit(15, "km")
  8860. },
  8861. {
  8862. name: "Gigamacro",
  8863. height: math.unit(500, "km")
  8864. },
  8865. {
  8866. name: "Teramacro",
  8867. height: math.unit(0.5, "gigameters")
  8868. },
  8869. {
  8870. name: "Omnimacro",
  8871. height: math.unit(1e252, "yottauniverse")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(7 + 8 / 12, "feet"),
  8880. weight: math.unit(120, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/danny/front.svg",
  8884. extra: 1490 / 1350
  8885. }
  8886. },
  8887. back: {
  8888. height: math.unit(7 + 8 / 12, "feet"),
  8889. weight: math.unit(120, "lb"),
  8890. name: "Back",
  8891. image: {
  8892. source: "./media/characters/danny/back.svg",
  8893. extra: 1490 / 1350
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(7 + 8 / 12, "feet"),
  8901. default: true
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(3.5, "inches"),
  8910. weight: math.unit(19, "grams"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/mallow/front.svg",
  8914. extra: 471 / 431
  8915. }
  8916. },
  8917. back: {
  8918. height: math.unit(3.5, "inches"),
  8919. weight: math.unit(19, "grams"),
  8920. name: "Back",
  8921. image: {
  8922. source: "./media/characters/mallow/back.svg",
  8923. extra: 471 / 431
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(3.5, "inches"),
  8931. default: true
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(9, "feet"),
  8940. weight: math.unit(230, "kg"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/starry-aqua/front.svg"
  8944. }
  8945. },
  8946. back: {
  8947. height: math.unit(9, "feet"),
  8948. weight: math.unit(230, "kg"),
  8949. name: "Back",
  8950. image: {
  8951. source: "./media/characters/starry-aqua/back.svg"
  8952. }
  8953. },
  8954. hand: {
  8955. height: math.unit(9 * 0.1168, "feet"),
  8956. name: "Hand",
  8957. image: {
  8958. source: "./media/characters/starry-aqua/hand.svg"
  8959. }
  8960. },
  8961. foot: {
  8962. height: math.unit(9 * 0.18, "feet"),
  8963. name: "Foot",
  8964. image: {
  8965. source: "./media/characters/starry-aqua/foot.svg"
  8966. }
  8967. }
  8968. },
  8969. [
  8970. {
  8971. name: "Micro",
  8972. height: math.unit(3, "inches")
  8973. },
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(9, "feet")
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(300, "feet"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "Megamacro",
  8985. height: math.unit(3200, "feet")
  8986. }
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(15, "feet"),
  8994. weight: math.unit(5026, "lb"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/luka-towers/front.svg",
  8998. extra: 1269/1133,
  8999. bottom: 51/1320
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(15, "feet"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Minimacro",
  9011. height: math.unit(25, "feet")
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(320, "feet")
  9016. },
  9017. {
  9018. name: "Megamacro",
  9019. height: math.unit(35000, "feet")
  9020. },
  9021. {
  9022. name: "Gigamacro",
  9023. height: math.unit(4000, "miles")
  9024. },
  9025. {
  9026. name: "Teramacro",
  9027. height: math.unit(15000, "miles")
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(150, "lb"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/natalie-nightring/front.svg",
  9040. extra: 1,
  9041. bottom: 0.06
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Uh Oh",
  9048. height: math.unit(0.1, "mm")
  9049. },
  9050. {
  9051. name: "Small",
  9052. height: math.unit(3, "inches")
  9053. },
  9054. {
  9055. name: "Human Scale",
  9056. height: math.unit(6, "feet")
  9057. },
  9058. {
  9059. name: "Librarian",
  9060. height: math.unit(50, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Immense",
  9065. height: math.unit(200, "miles")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(180, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/danni-rosie/front.svg",
  9078. extra: 1260 / 1128,
  9079. bottom: 0.022
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Micro",
  9086. height: math.unit(2, "inches"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 9 / 12, "feet"),
  9096. weight: math.unit(220, "lb"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/samantha-kruse/front.svg",
  9100. extra: (985 / 935),
  9101. bottom: 0.03
  9102. }
  9103. },
  9104. frontUndressed: {
  9105. height: math.unit(5 + 9 / 12, "feet"),
  9106. weight: math.unit(220, "lb"),
  9107. name: "Front (Undressed)",
  9108. image: {
  9109. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9110. extra: (973 / 923),
  9111. bottom: 0.025
  9112. }
  9113. },
  9114. fat: {
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. weight: math.unit(900, "lb"),
  9117. name: "Front (Fat)",
  9118. image: {
  9119. source: "./media/characters/samantha-kruse/fat.svg",
  9120. extra: 2688 / 2561
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Normal",
  9127. height: math.unit(5 + 9 / 12, "feet"),
  9128. default: true
  9129. }
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9134. {
  9135. back: {
  9136. height: math.unit(5 + 4 / 12, "feet"),
  9137. weight: math.unit(4963, "lb"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/amelia-rosie/back.svg",
  9141. extra: 1113 / 963,
  9142. bottom: 0.01
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Level 0",
  9149. height: math.unit(5 + 4 / 12, "feet")
  9150. },
  9151. {
  9152. name: "Level 1",
  9153. height: math.unit(164597, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Level 2",
  9158. height: math.unit(956243, "miles")
  9159. },
  9160. {
  9161. name: "Level 3",
  9162. height: math.unit(29421709423, "miles")
  9163. },
  9164. {
  9165. name: "Level 4",
  9166. height: math.unit(154, "lightyears")
  9167. },
  9168. {
  9169. name: "Level 5",
  9170. height: math.unit(4738272, "lightyears")
  9171. },
  9172. {
  9173. name: "Level 6",
  9174. height: math.unit(145787152896, "lightyears")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 11 / 12, "feet"),
  9183. weight: math.unit(65, "kg"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/rook-kitara/front.svg",
  9187. extra: 1347 / 1274,
  9188. bottom: 0.005
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Totally Unfair",
  9195. height: math.unit(1.8, "mm")
  9196. },
  9197. {
  9198. name: "Lap Rookie",
  9199. height: math.unit(1.4, "feet")
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 11 / 12, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "How Did This Happen",
  9208. height: math.unit(80, "miles")
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(7, "feet"),
  9217. weight: math.unit(300, "lb"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/pisces/front.svg",
  9221. extra: 2255 / 2115,
  9222. bottom: 0.03
  9223. }
  9224. },
  9225. back: {
  9226. height: math.unit(7, "feet"),
  9227. weight: math.unit(300, "lb"),
  9228. name: "Back",
  9229. image: {
  9230. source: "./media/characters/pisces/back.svg",
  9231. extra: 2146 / 2055,
  9232. bottom: 0.04
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(7, "feet"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Swimming Pool",
  9244. height: math.unit(12.2, "meters")
  9245. },
  9246. {
  9247. name: "Olympic Swimming Pool",
  9248. height: math.unit(56.3, "meters")
  9249. },
  9250. {
  9251. name: "Lake Superior",
  9252. height: math.unit(93900, "meters")
  9253. },
  9254. {
  9255. name: "Mediterranean Sea",
  9256. height: math.unit(644457, "meters")
  9257. },
  9258. {
  9259. name: "World's Oceans",
  9260. height: math.unit(4567491, "meters")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(2.3, "meters"),
  9269. weight: math.unit(120, "kg"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/zelas/front.svg"
  9273. }
  9274. },
  9275. side: {
  9276. height: math.unit(2.3, "meters"),
  9277. weight: math.unit(120, "kg"),
  9278. name: "Side",
  9279. image: {
  9280. source: "./media/characters/zelas/side.svg"
  9281. }
  9282. },
  9283. back: {
  9284. height: math.unit(2.3, "meters"),
  9285. weight: math.unit(120, "kg"),
  9286. name: "Back",
  9287. image: {
  9288. source: "./media/characters/zelas/back.svg"
  9289. }
  9290. },
  9291. foot: {
  9292. height: math.unit(1.116, "feet"),
  9293. name: "Foot",
  9294. image: {
  9295. source: "./media/characters/zelas/foot.svg"
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(2.3, "meters")
  9303. },
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(30, "meters"),
  9307. default: true
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(1, "inch"),
  9316. weight: math.unit(0.21, "grams"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/talbot/front.svg",
  9320. extra: 594 / 544
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(1, "inch"),
  9328. default: true
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9334. {
  9335. front: {
  9336. height: math.unit(3 + 3 / 12, "feet"),
  9337. weight: math.unit(51.8, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/fliss/front.svg",
  9341. extra: 840 / 640
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Teeny Tiny",
  9348. height: math.unit(1, "mm")
  9349. },
  9350. {
  9351. name: "Small",
  9352. height: math.unit(1, "inch"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Standard Sylveon",
  9357. height: math.unit(3 + 3 / 12, "feet")
  9358. },
  9359. {
  9360. name: "Large Nuisance",
  9361. height: math.unit(33, "feet")
  9362. },
  9363. {
  9364. name: "City Filler",
  9365. height: math.unit(3000, "feet")
  9366. },
  9367. {
  9368. name: "New Horizon",
  9369. height: math.unit(6000, "miles")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(5, "cm"),
  9378. weight: math.unit(1.94, "g"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/fleta/front.svg",
  9382. extra: 835 / 803
  9383. }
  9384. },
  9385. back: {
  9386. height: math.unit(5, "cm"),
  9387. weight: math.unit(1.94, "g"),
  9388. name: "Back",
  9389. image: {
  9390. source: "./media/characters/fleta/back.svg",
  9391. extra: 835 / 803
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Micro",
  9398. height: math.unit(5, "cm"),
  9399. default: true
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9405. {
  9406. front: {
  9407. height: math.unit(6, "feet"),
  9408. weight: math.unit(225, "lb"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/dominic/front.svg",
  9412. extra: 1770 / 1620,
  9413. bottom: 0.025
  9414. }
  9415. },
  9416. back: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(225, "lb"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/dominic/back.svg",
  9422. extra: 1745 / 1620,
  9423. bottom: 0.065
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Nano",
  9430. height: math.unit(0.1, "mm")
  9431. },
  9432. {
  9433. name: "Micro-",
  9434. height: math.unit(1, "mm")
  9435. },
  9436. {
  9437. name: "Micro",
  9438. height: math.unit(4, "inches")
  9439. },
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(6 + 4 / 12, "feet"),
  9443. default: true
  9444. },
  9445. {
  9446. name: "Macro",
  9447. height: math.unit(115, "feet")
  9448. },
  9449. {
  9450. name: "Macro+",
  9451. height: math.unit(955, "feet")
  9452. },
  9453. {
  9454. name: "Megamacro",
  9455. height: math.unit(8990, "feet")
  9456. },
  9457. {
  9458. name: "Gigmacro",
  9459. height: math.unit(9310, "miles")
  9460. },
  9461. {
  9462. name: "Teramacro",
  9463. height: math.unit(1567005010, "miles")
  9464. },
  9465. {
  9466. name: "Examacro",
  9467. height: math.unit(1425, "parsecs")
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(400, "feet"),
  9476. weight: math.unit(44444444, "lb"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/major-colonel/front.svg"
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(400, "feet"),
  9484. weight: math.unit(44444444, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/major-colonel/back.svg"
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(400, "feet"),
  9495. default: true
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9501. {
  9502. catFront: {
  9503. height: math.unit(6, "feet"),
  9504. weight: math.unit(120, "lb"),
  9505. name: "Front (Cat Side)",
  9506. image: {
  9507. source: "./media/characters/axel-lycan/cat-front.svg",
  9508. extra: 430 / 402,
  9509. bottom: 43 / 472.35
  9510. }
  9511. },
  9512. catBack: {
  9513. height: math.unit(6, "feet"),
  9514. weight: math.unit(120, "lb"),
  9515. name: "Back (Cat Side)",
  9516. image: {
  9517. source: "./media/characters/axel-lycan/cat-back.svg",
  9518. extra: 447 / 419,
  9519. bottom: 23.3 / 469
  9520. }
  9521. },
  9522. wolfFront: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(120, "lb"),
  9525. name: "Front (Wolf Side)",
  9526. image: {
  9527. source: "./media/characters/axel-lycan/wolf-front.svg",
  9528. extra: 485 / 456,
  9529. bottom: 19 / 504
  9530. }
  9531. },
  9532. wolfBack: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(120, "lb"),
  9535. name: "Back (Wolf Side)",
  9536. image: {
  9537. source: "./media/characters/axel-lycan/wolf-back.svg",
  9538. extra: 475 / 438,
  9539. bottom: 39.2 / 514
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(1, "km"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(5 + 9 / 12, "feet"),
  9556. weight: math.unit(175, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/vanrel-hyena/front.svg",
  9560. extra: 1086 / 1010,
  9561. bottom: 0.04
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(5 + 9 / 12, "feet"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9575. {
  9576. front: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(103, "lb"),
  9579. name: "Front",
  9580. image: {
  9581. source: "./media/characters/abbott-absol/front.svg",
  9582. extra: 2010 / 1842
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Megamicro",
  9589. height: math.unit(0.1, "mm")
  9590. },
  9591. {
  9592. name: "Micro",
  9593. height: math.unit(1, "inch")
  9594. },
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(6, "feet"),
  9598. default: true
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(264, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/hector/front.svg",
  9611. extra: 2280 / 2130,
  9612. bottom: 0.07
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(12.25, "foot"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(160, "feet")
  9625. },
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9630. {
  9631. front: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(150, "lb"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/sal/front.svg",
  9637. extra: 1846 / 1699,
  9638. bottom: 0.04
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(10, "miles"),
  9646. default: true
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9652. {
  9653. front: {
  9654. height: math.unit(3, "meters"),
  9655. weight: math.unit(450, "kg"),
  9656. name: "front",
  9657. image: {
  9658. source: "./media/characters/ranger/front.svg",
  9659. extra: 2401 / 2243,
  9660. bottom: 0.05
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(3, "meters"),
  9668. default: true
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(14, "feet"),
  9677. weight: math.unit(800, "kg"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/theresa/front.svg",
  9681. extra: 3575 / 3346,
  9682. bottom: 0.03
  9683. }
  9684. },
  9685. },
  9686. [
  9687. {
  9688. name: "Normal",
  9689. height: math.unit(14, "feet"),
  9690. default: true
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9696. {
  9697. front: {
  9698. height: math.unit(6, "feet"),
  9699. weight: math.unit(3, "kg"),
  9700. name: "Front",
  9701. image: {
  9702. source: "./media/characters/ine/front.svg",
  9703. extra: 678 / 539,
  9704. bottom: 0.023
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(2.265, "feet"),
  9712. default: true
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(5, "feet"),
  9721. weight: math.unit(30, "kg"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/vial/front.svg",
  9725. extra: 1365 / 1277,
  9726. bottom: 0.04
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5, "feet"),
  9734. default: true
  9735. },
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9740. {
  9741. side: {
  9742. height: math.unit(3.4, "meters"),
  9743. weight: math.unit(1000, "lb"),
  9744. name: "Side",
  9745. image: {
  9746. source: "./media/characters/rovoska/side.svg",
  9747. extra: 4403 / 1515
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(3.4, "meters"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(8, "feet"),
  9764. weight: math.unit(315, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/gunner-rotthbauer/front.svg"
  9768. }
  9769. },
  9770. back: {
  9771. height: math.unit(8, "feet"),
  9772. weight: math.unit(315, "lb"),
  9773. name: "Back",
  9774. image: {
  9775. source: "./media/characters/gunner-rotthbauer/back.svg"
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(3.5, "inches")
  9783. },
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(8, "feet"),
  9787. default: true
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(250, "feet")
  9792. },
  9793. {
  9794. name: "Megamacro",
  9795. height: math.unit(1, "AU")
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(5 + 5 / 12, "feet"),
  9804. weight: math.unit(140, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/allatia/front.svg",
  9808. extra: 1227 / 1180,
  9809. bottom: 0.027
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5 + 5 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(250, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Megamacro",
  9825. height: math.unit(8, "miles")
  9826. }
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(120, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/tene/front.svg",
  9838. extra: 1728 / 1578,
  9839. bottom: 0.022
  9840. }
  9841. },
  9842. stomping: {
  9843. height: math.unit(2.025, "meters"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Stomping",
  9846. image: {
  9847. source: "./media/characters/tene/stomping.svg",
  9848. extra: 938 / 873,
  9849. bottom: 0.01
  9850. }
  9851. },
  9852. sitting: {
  9853. height: math.unit(1, "meter"),
  9854. weight: math.unit(120, "lb"),
  9855. name: "Sitting",
  9856. image: {
  9857. source: "./media/characters/tene/sitting.svg",
  9858. extra: 437 / 415,
  9859. bottom: 0.1
  9860. }
  9861. },
  9862. feral: {
  9863. height: math.unit(3.9, "feet"),
  9864. weight: math.unit(250, "lb"),
  9865. name: "Feral",
  9866. image: {
  9867. source: "./media/characters/tene/feral.svg",
  9868. extra: 717 / 458,
  9869. bottom: 0.179
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(6, "feet")
  9877. },
  9878. {
  9879. name: "Macro",
  9880. height: math.unit(300, "feet"),
  9881. default: true
  9882. },
  9883. {
  9884. name: "Megamacro",
  9885. height: math.unit(5, "miles")
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9891. {
  9892. side: {
  9893. height: math.unit(6, "feet"),
  9894. name: "Side",
  9895. image: {
  9896. source: "./media/characters/evander/side.svg",
  9897. extra: 877 / 477
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(0.83, "meters"),
  9905. default: true
  9906. },
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9911. {
  9912. front: {
  9913. height: math.unit(12, "feet"),
  9914. weight: math.unit(1000, "lb"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9918. extra: 1762 / 1611
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(12, "feet"),
  9923. weight: math.unit(1000, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9927. extra: 1762 / 1611
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(12, "feet"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Kaiju",
  9939. height: math.unit(150, "feet")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9945. {
  9946. front: {
  9947. height: math.unit(6, "feet"),
  9948. weight: math.unit(150, "lb"),
  9949. name: "Front",
  9950. image: {
  9951. source: "./media/characters/zero-alurus/front.svg"
  9952. }
  9953. },
  9954. back: {
  9955. height: math.unit(6, "feet"),
  9956. weight: math.unit(150, "lb"),
  9957. name: "Back",
  9958. image: {
  9959. source: "./media/characters/zero-alurus/back.svg"
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(5 + 10 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Macro",
  9970. height: math.unit(60, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Macro+",
  9975. height: math.unit(450, "feet")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(6, "feet"),
  9984. weight: math.unit(200, "lb"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/mega-shi/front.svg",
  9988. extra: 1279 / 1250,
  9989. bottom: 0.02
  9990. }
  9991. },
  9992. back: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(200, "lb"),
  9995. name: "Back",
  9996. image: {
  9997. source: "./media/characters/mega-shi/back.svg",
  9998. extra: 1279 / 1250,
  9999. bottom: 0.02
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Micro",
  10006. height: math.unit(16 + 6 / 12, "feet")
  10007. },
  10008. {
  10009. name: "Third Dimension",
  10010. height: math.unit(40, "meters")
  10011. },
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(660, "feet"),
  10015. default: true
  10016. },
  10017. {
  10018. name: "Megamacro",
  10019. height: math.unit(10, "miles")
  10020. },
  10021. {
  10022. name: "Planetary Launch",
  10023. height: math.unit(500, "miles")
  10024. },
  10025. {
  10026. name: "Interstellar",
  10027. height: math.unit(1e9, "miles")
  10028. },
  10029. {
  10030. name: "Leaving the Universe",
  10031. height: math.unit(1, "gigaparsec")
  10032. },
  10033. {
  10034. name: "Travelling Universes",
  10035. height: math.unit(30e15, "parsecs")
  10036. },
  10037. ]
  10038. ))
  10039. characterMakers.push(() => makeCharacter(
  10040. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10041. {
  10042. front: {
  10043. height: math.unit(6, "feet"),
  10044. weight: math.unit(150, "lb"),
  10045. name: "Front",
  10046. image: {
  10047. source: "./media/characters/odyssey/front.svg",
  10048. extra: 1782 / 1582,
  10049. bottom: 0.01
  10050. }
  10051. },
  10052. side: {
  10053. height: math.unit(5.7, "feet"),
  10054. weight: math.unit(140, "lb"),
  10055. name: "Side",
  10056. image: {
  10057. source: "./media/characters/odyssey/side.svg",
  10058. extra: 6462 / 5700
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(5 + 4 / 12, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(1, "km")
  10070. },
  10071. {
  10072. name: "Megamacro",
  10073. height: math.unit(3000, "km")
  10074. },
  10075. {
  10076. name: "Gigamacro",
  10077. height: math.unit(1, "AU"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Omniversal",
  10082. height: math.unit(100e14, "lightyears")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(300, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/mekuto/front.svg",
  10095. extra: 921 / 832,
  10096. bottom: 0.03
  10097. }
  10098. },
  10099. hand: {
  10100. height: math.unit(6 / 10.24, "feet"),
  10101. name: "Hand",
  10102. image: {
  10103. source: "./media/characters/mekuto/hand.svg"
  10104. }
  10105. },
  10106. foot: {
  10107. height: math.unit(6 / 5.05, "feet"),
  10108. name: "Foot",
  10109. image: {
  10110. source: "./media/characters/mekuto/foot.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Minimicro",
  10117. height: math.unit(0.2, "inches")
  10118. },
  10119. {
  10120. name: "Micro",
  10121. height: math.unit(1.5, "inches")
  10122. },
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(5 + 11 / 12, "feet"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Minimacro",
  10130. height: math.unit(17 + 9 / 12, "feet")
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(177.5, "feet")
  10135. },
  10136. {
  10137. name: "Megamacro",
  10138. height: math.unit(152, "miles")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6.5, "inches"),
  10147. weight: math.unit(13, "oz"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/dafydd-tomos/front.svg",
  10151. extra: 2990 / 2603,
  10152. bottom: 0.03
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Micro",
  10159. height: math.unit(6.5, "inches"),
  10160. default: true
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(6, "feet"),
  10169. weight: math.unit(150, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/splinter/front.svg",
  10173. extra: 2990 / 2882,
  10174. bottom: 0.04
  10175. }
  10176. },
  10177. back: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Back",
  10181. image: {
  10182. source: "./media/characters/splinter/back.svg",
  10183. extra: 2990 / 2882,
  10184. bottom: 0.04
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(6, "feet")
  10192. },
  10193. {
  10194. name: "Macro",
  10195. height: math.unit(230, "meters"),
  10196. default: true
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(4 + 10 / 12, "feet"),
  10205. weight: math.unit(480, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/snow-gabumon/front.svg",
  10209. extra: 1140 / 963,
  10210. bottom: 0.058
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(4 + 10 / 12, "feet"),
  10215. weight: math.unit(480, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/snow-gabumon/back.svg",
  10219. extra: 1115 / 962,
  10220. bottom: 0.041
  10221. }
  10222. },
  10223. frontUndresed: {
  10224. height: math.unit(4 + 10 / 12, "feet"),
  10225. weight: math.unit(480, "lb"),
  10226. name: "Front (Undressed)",
  10227. image: {
  10228. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10229. extra: 1061 / 960,
  10230. bottom: 0.045
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Micro",
  10237. height: math.unit(1, "inch")
  10238. },
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(4 + 10 / 12, "feet"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(200, "feet")
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(120, "miles")
  10251. },
  10252. {
  10253. name: "Gigamacro",
  10254. height: math.unit(9800, "miles")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(1.7, "meters"),
  10263. weight: math.unit(140, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/moody/front.svg",
  10267. extra: 3226 / 3007,
  10268. bottom: 0.087
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(1, "mm")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(1.7, "meters"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(80, "meters")
  10285. },
  10286. {
  10287. name: "Macro+",
  10288. height: math.unit(500, "meters")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(150, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/zyas/front.svg",
  10301. extra: 1180 / 1120,
  10302. bottom: 0.045
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(10, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Macro",
  10314. height: math.unit(500, "feet")
  10315. },
  10316. {
  10317. name: "Megamacro",
  10318. height: math.unit(5, "miles")
  10319. },
  10320. {
  10321. name: "Teramacro",
  10322. height: math.unit(150000, "miles")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(150, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/cuon/front.svg",
  10335. extra: 1390 / 1320,
  10336. bottom: 0.008
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Micro",
  10343. height: math.unit(3, "inches")
  10344. },
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(18 + 9 / 12, "feet"),
  10348. default: true
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(360, "feet")
  10353. },
  10354. {
  10355. name: "Megamacro",
  10356. height: math.unit(360, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(2.4, "meters"),
  10365. weight: math.unit(70, "kg"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/nyanuxk/front.svg",
  10369. extra: 1172 / 1084,
  10370. bottom: 0.065
  10371. }
  10372. },
  10373. side: {
  10374. height: math.unit(2.4, "meters"),
  10375. weight: math.unit(70, "kg"),
  10376. name: "Side",
  10377. image: {
  10378. source: "./media/characters/nyanuxk/side.svg",
  10379. extra: 1190 / 1132,
  10380. bottom: 0.007
  10381. }
  10382. },
  10383. back: {
  10384. height: math.unit(2.4, "meters"),
  10385. weight: math.unit(70, "kg"),
  10386. name: "Back",
  10387. image: {
  10388. source: "./media/characters/nyanuxk/back.svg",
  10389. extra: 1200 / 1141,
  10390. bottom: 0.015
  10391. }
  10392. },
  10393. foot: {
  10394. height: math.unit(0.52, "meters"),
  10395. name: "Foot",
  10396. image: {
  10397. source: "./media/characters/nyanuxk/foot.svg"
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Micro",
  10404. height: math.unit(2, "cm")
  10405. },
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(2.4, "meters"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Smaller Macro",
  10413. height: math.unit(120, "meters")
  10414. },
  10415. {
  10416. name: "Bigger Macro",
  10417. height: math.unit(1.2, "km")
  10418. },
  10419. {
  10420. name: "Megamacro",
  10421. height: math.unit(15, "kilometers")
  10422. },
  10423. {
  10424. name: "Gigamacro",
  10425. height: math.unit(2000, "km")
  10426. },
  10427. {
  10428. name: "Teramacro",
  10429. height: math.unit(500000, "km")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10435. {
  10436. side: {
  10437. height: math.unit(6, "feet"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/ailbhe/side.svg",
  10441. extra: 757 / 464,
  10442. bottom: 0.041
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(1.07, "meters"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(120, "kg"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/zevulfius/front.svg",
  10463. extra: 965 / 903
  10464. }
  10465. },
  10466. side: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(120, "kg"),
  10469. name: "Side",
  10470. image: {
  10471. source: "./media/characters/zevulfius/side.svg",
  10472. extra: 939 / 900
  10473. }
  10474. },
  10475. back: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(120, "kg"),
  10478. name: "Back",
  10479. image: {
  10480. source: "./media/characters/zevulfius/back.svg",
  10481. extra: 918 / 854,
  10482. bottom: 0.005
  10483. }
  10484. },
  10485. foot: {
  10486. height: math.unit(6 / 3.72, "feet"),
  10487. name: "Foot",
  10488. image: {
  10489. source: "./media/characters/zevulfius/foot.svg"
  10490. }
  10491. },
  10492. },
  10493. [
  10494. {
  10495. name: "Macro",
  10496. height: math.unit(750, "meters")
  10497. },
  10498. {
  10499. name: "Megamacro",
  10500. height: math.unit(20, "km"),
  10501. default: true
  10502. },
  10503. {
  10504. name: "Gigamacro",
  10505. height: math.unit(2000, "km")
  10506. },
  10507. {
  10508. name: "Teramacro",
  10509. height: math.unit(250000, "km")
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(100, "feet"),
  10518. weight: math.unit(350, "kg"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/rikes/front.svg",
  10522. extra: 1565 / 1483,
  10523. bottom: 0.017
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Macro",
  10530. height: math.unit(100, "feet"),
  10531. default: true
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(8, "feet"),
  10540. weight: math.unit(356, "lb"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/adam-silver-mane/front.svg",
  10544. extra: 1036/937,
  10545. bottom: 63/1099
  10546. }
  10547. },
  10548. side: {
  10549. height: math.unit(8, "feet"),
  10550. weight: math.unit(356, "lb"),
  10551. name: "Side",
  10552. image: {
  10553. source: "./media/characters/adam-silver-mane/side.svg",
  10554. extra: 997/901,
  10555. bottom: 59/1056
  10556. }
  10557. },
  10558. frontNsfw: {
  10559. height: math.unit(8, "feet"),
  10560. weight: math.unit(356, "lb"),
  10561. name: "Front (NSFW)",
  10562. image: {
  10563. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10564. extra: 1036/937,
  10565. bottom: 63/1099
  10566. }
  10567. },
  10568. sideNsfw: {
  10569. height: math.unit(8, "feet"),
  10570. weight: math.unit(356, "lb"),
  10571. name: "Side (NSFW)",
  10572. image: {
  10573. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10574. extra: 997/901,
  10575. bottom: 59/1056
  10576. }
  10577. },
  10578. dick: {
  10579. height: math.unit(2.1, "feet"),
  10580. name: "Dick",
  10581. image: {
  10582. source: "./media/characters/adam-silver-mane/dick.svg"
  10583. }
  10584. },
  10585. taur: {
  10586. height: math.unit(16, "feet"),
  10587. weight: math.unit(1500, "kg"),
  10588. name: "Taur",
  10589. image: {
  10590. source: "./media/characters/adam-silver-mane/taur.svg",
  10591. extra: 1713 / 1571,
  10592. bottom: 0.01
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(8, "feet")
  10600. },
  10601. {
  10602. name: "Minimacro",
  10603. height: math.unit(80, "feet")
  10604. },
  10605. {
  10606. name: "MDA",
  10607. height: math.unit(80, "meters")
  10608. },
  10609. {
  10610. name: "Macro",
  10611. height: math.unit(800, "feet"),
  10612. default: true
  10613. },
  10614. {
  10615. name: "Megamacro",
  10616. height: math.unit(8000, "feet")
  10617. },
  10618. {
  10619. name: "Gigamacro",
  10620. height: math.unit(800, "miles")
  10621. },
  10622. {
  10623. name: "Teramacro",
  10624. height: math.unit(80000, "miles")
  10625. },
  10626. {
  10627. name: "Celestial",
  10628. height: math.unit(8e6, "miles")
  10629. },
  10630. {
  10631. name: "Star Dragon",
  10632. height: math.unit(800000, "parsecs")
  10633. },
  10634. {
  10635. name: "Godly",
  10636. height: math.unit(800, "teraparsecs")
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(6, "feet"),
  10645. weight: math.unit(150, "lb"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/ky'owin/front.svg",
  10649. extra: 3888 / 3068,
  10650. bottom: 0.015
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(6 + 8 / 12, "feet")
  10658. },
  10659. {
  10660. name: "Large",
  10661. height: math.unit(68, "feet")
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(132, "feet")
  10666. },
  10667. {
  10668. name: "Macro+",
  10669. height: math.unit(340, "feet")
  10670. },
  10671. {
  10672. name: "Macro++",
  10673. height: math.unit(680, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(1, "mile")
  10679. },
  10680. {
  10681. name: "Megamacro+",
  10682. height: math.unit(10, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(4, "feet"),
  10691. weight: math.unit(50, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/mal/front.svg",
  10695. extra: 785 / 724,
  10696. bottom: 0.07
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Micro",
  10703. height: math.unit(4, "inches")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(4, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(200, "feet")
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(150, "lb"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/jordan-deware/front.svg",
  10725. extra: 1191 / 1012
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Nano",
  10732. height: math.unit(0.01, "mm")
  10733. },
  10734. {
  10735. name: "Minimicro",
  10736. height: math.unit(1, "mm")
  10737. },
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(0.5, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(4, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(40, "meters")
  10750. },
  10751. {
  10752. name: "Small Macro",
  10753. height: math.unit(400, "meters")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(4, "miles")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(40, "miles")
  10762. },
  10763. {
  10764. name: "Megamacro+",
  10765. height: math.unit(400, "miles")
  10766. },
  10767. {
  10768. name: "Gigamacro",
  10769. height: math.unit(400000, "miles")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10775. {
  10776. side: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Side",
  10780. image: {
  10781. source: "./media/characters/kimiko/side.svg",
  10782. extra: 600 / 358
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(15, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(220, "feet")
  10795. },
  10796. {
  10797. name: "Macro+",
  10798. height: math.unit(1450, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(11500, "feet")
  10803. },
  10804. {
  10805. name: "Gigamacro",
  10806. height: math.unit(9500, "miles")
  10807. },
  10808. {
  10809. name: "Teramacro",
  10810. height: math.unit(2208005005, "miles")
  10811. },
  10812. {
  10813. name: "Examacro",
  10814. height: math.unit(2750, "parsecs")
  10815. },
  10816. {
  10817. name: "Zettamacro",
  10818. height: math.unit(101500, "parsecs")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(70, "kg"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/andrew-sleepy/front.svg"
  10831. }
  10832. },
  10833. side: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(70, "kg"),
  10836. name: "Side",
  10837. image: {
  10838. source: "./media/characters/andrew-sleepy/side.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(1, "mm"),
  10846. default: true
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(150, "lb"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/judio/front.svg",
  10859. extra: 1258 / 1110
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(5 + 6 / 12, "feet")
  10867. },
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(1000, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(10, "miles")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(68, "kg"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/nomaxice/front.svg",
  10888. extra: 1498 / 1073,
  10889. bottom: 0.075
  10890. }
  10891. },
  10892. foot: {
  10893. height: math.unit(1.1, "feet"),
  10894. name: "Foot",
  10895. image: {
  10896. source: "./media/characters/nomaxice/foot.svg"
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Micro",
  10903. height: math.unit(8, "cm")
  10904. },
  10905. {
  10906. name: "Norm",
  10907. height: math.unit(1.82, "m")
  10908. },
  10909. {
  10910. name: "Norm+",
  10911. height: math.unit(8.8, "feet")
  10912. },
  10913. {
  10914. name: "Big",
  10915. height: math.unit(8, "meters"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(18, "meters")
  10921. },
  10922. {
  10923. name: "Macro+",
  10924. height: math.unit(88, "meters")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(12, "feet"),
  10933. weight: math.unit(1.5, "tons"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/dydros/front.svg",
  10937. extra: 863 / 800,
  10938. bottom: 0.015
  10939. }
  10940. },
  10941. back: {
  10942. height: math.unit(12, "feet"),
  10943. weight: math.unit(1.5, "tons"),
  10944. name: "Back",
  10945. image: {
  10946. source: "./media/characters/dydros/back.svg",
  10947. extra: 900 / 843,
  10948. bottom: 0.005
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(12, "feet"),
  10956. default: true
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(100, "kg"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/riggi/front.svg",
  10969. extra: 5787 / 5303
  10970. }
  10971. },
  10972. hyper: {
  10973. height: math.unit(6 * 5 / 3, "feet"),
  10974. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10975. name: "Hyper",
  10976. image: {
  10977. source: "./media/characters/riggi/hyper.svg",
  10978. extra: 3595 / 3485
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Small Macro",
  10985. height: math.unit(50, "feet")
  10986. },
  10987. {
  10988. name: "Default",
  10989. height: math.unit(200, "feet"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Loom",
  10994. height: math.unit(10000, "feet")
  10995. },
  10996. {
  10997. name: "Cruising Altitude",
  10998. height: math.unit(30000, "feet")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(100, "miles")
  11003. },
  11004. {
  11005. name: "Continent Sized",
  11006. height: math.unit(2800, "miles")
  11007. },
  11008. {
  11009. name: "Earth Sized",
  11010. height: math.unit(8000, "miles")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(250, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/alexi/front.svg",
  11023. extra: 3483 / 3291,
  11024. bottom: 0.04
  11025. }
  11026. },
  11027. back: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(250, "lb"),
  11030. name: "Back",
  11031. image: {
  11032. source: "./media/characters/alexi/back.svg",
  11033. extra: 3533 / 3356,
  11034. bottom: 0.021
  11035. }
  11036. },
  11037. frontTransforming: {
  11038. height: math.unit(8.58, "feet"),
  11039. weight: math.unit(1300, "lb"),
  11040. name: "Transforming",
  11041. image: {
  11042. source: "./media/characters/alexi/front-transforming.svg",
  11043. extra: 437 / 409,
  11044. bottom: 19 / 458.66
  11045. }
  11046. },
  11047. frontTransformed: {
  11048. height: math.unit(12.5, "feet"),
  11049. weight: math.unit(4000, "lb"),
  11050. name: "Transformed",
  11051. image: {
  11052. source: "./media/characters/alexi/front-transformed.svg",
  11053. extra: 639 / 614,
  11054. bottom: 30.55 / 671
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(14, "feet"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Minimacro",
  11066. height: math.unit(30, "meters")
  11067. },
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(500, "meters")
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(9000, "km")
  11075. },
  11076. {
  11077. name: "Teramacro",
  11078. height: math.unit(384000, "km")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/kayroo/front.svg",
  11091. extra: 1153 / 1038,
  11092. bottom: 0.06
  11093. }
  11094. },
  11095. foot: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Foot",
  11099. image: {
  11100. source: "./media/characters/kayroo/foot.svg"
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(8, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Minimacro",
  11112. height: math.unit(250, "feet")
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(2800, "feet")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(5200, "feet")
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(27000, "feet")
  11125. },
  11126. {
  11127. name: "Omega",
  11128. height: math.unit(45000, "feet")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(18, "feet"),
  11137. weight: math.unit(5800, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/rhys/front.svg",
  11141. extra: 3386 / 3090,
  11142. bottom: 0.07
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(18, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Working Size",
  11154. height: math.unit(200, "feet")
  11155. },
  11156. {
  11157. name: "Demolition Size",
  11158. height: math.unit(2000, "feet")
  11159. },
  11160. {
  11161. name: "Maximum Licensed Size",
  11162. height: math.unit(5, "miles")
  11163. },
  11164. {
  11165. name: "Maximum Observed Size",
  11166. height: math.unit(10, "yottameters")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/toto/front.svg",
  11179. extra: 527 / 479,
  11180. bottom: 0.05
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Micro",
  11187. height: math.unit(3, "feet")
  11188. },
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(10, "feet")
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(150, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Megamacro",
  11200. height: math.unit(1200, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "King", species: ["lion"], tags: ["anthro"] },
  11206. {
  11207. back: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Back",
  11211. image: {
  11212. source: "./media/characters/king/back.svg"
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(2, "inches")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(8, "feet")
  11224. },
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(200, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(50, "miles")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(11, "feet"),
  11241. weight: math.unit(1400, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/cordite/front.svg",
  11245. extra: 1919/1827,
  11246. bottom: 40/1959
  11247. }
  11248. },
  11249. side: {
  11250. height: math.unit(11, "feet"),
  11251. weight: math.unit(1400, "lb"),
  11252. name: "Side",
  11253. image: {
  11254. source: "./media/characters/cordite/side.svg",
  11255. extra: 1908/1793,
  11256. bottom: 38/1946
  11257. }
  11258. },
  11259. back: {
  11260. height: math.unit(11, "feet"),
  11261. weight: math.unit(1400, "lb"),
  11262. name: "Back",
  11263. image: {
  11264. source: "./media/characters/cordite/back.svg",
  11265. extra: 1938/1837,
  11266. bottom: 10/1948
  11267. }
  11268. },
  11269. feral: {
  11270. height: math.unit(2, "feet"),
  11271. weight: math.unit(90, "lb"),
  11272. name: "Feral",
  11273. image: {
  11274. source: "./media/characters/cordite/feral.svg",
  11275. extra: 1260 / 755,
  11276. bottom: 0.05
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(11, "feet"),
  11284. default: true
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(150, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/pianostrong/front.svg",
  11297. extra: 6577 / 6254,
  11298. bottom: 0.02
  11299. }
  11300. },
  11301. side: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Side",
  11305. image: {
  11306. source: "./media/characters/pianostrong/side.svg",
  11307. extra: 6106 / 5730
  11308. }
  11309. },
  11310. back: {
  11311. height: math.unit(6, "feet"),
  11312. weight: math.unit(150, "lb"),
  11313. name: "Back",
  11314. image: {
  11315. source: "./media/characters/pianostrong/back.svg",
  11316. extra: 6085 / 5733,
  11317. bottom: 0.01
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(100, "feet")
  11325. },
  11326. {
  11327. name: "Macro+",
  11328. height: math.unit(300, "feet"),
  11329. default: true
  11330. },
  11331. {
  11332. name: "Macro++",
  11333. height: math.unit(1000, "feet")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(150, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/kona/front.svg",
  11346. extra: 2960 / 2629,
  11347. bottom: 0.005
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(11 + 8 / 12, "feet")
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(850, "feet"),
  11359. default: true
  11360. },
  11361. {
  11362. name: "Macro+",
  11363. height: math.unit(1.5, "km"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(80, "miles")
  11369. },
  11370. {
  11371. name: "Gigamacro",
  11372. height: math.unit(3500, "miles")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11378. {
  11379. side: {
  11380. height: math.unit(1.9, "meters"),
  11381. weight: math.unit(326, "kg"),
  11382. name: "Side",
  11383. image: {
  11384. source: "./media/characters/levi/side.svg",
  11385. extra: 1704 / 1334,
  11386. bottom: 0.02
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(1.9, "meters"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(20, "meters")
  11399. },
  11400. {
  11401. name: "Macro+",
  11402. height: math.unit(200, "meters")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(2, "km")
  11407. },
  11408. {
  11409. name: "Megamacro+",
  11410. height: math.unit(20, "km")
  11411. },
  11412. {
  11413. name: "Gigamacro",
  11414. height: math.unit(2500, "km")
  11415. },
  11416. {
  11417. name: "Gigamacro+",
  11418. height: math.unit(120000, "km")
  11419. },
  11420. {
  11421. name: "Teramacro",
  11422. height: math.unit(7.77e6, "km")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6 + 4/12, "feet"),
  11431. weight: math.unit(190, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/bmc/front.svg",
  11435. extra: 1626/1472,
  11436. bottom: 79/1705
  11437. }
  11438. },
  11439. back: {
  11440. height: math.unit(6 + 4/12, "feet"),
  11441. weight: math.unit(190, "lb"),
  11442. name: "Back",
  11443. image: {
  11444. source: "./media/characters/bmc/back.svg",
  11445. extra: 1640/1479,
  11446. bottom: 45/1685
  11447. }
  11448. },
  11449. frontArmor: {
  11450. height: math.unit(6 + 4/12, "feet"),
  11451. weight: math.unit(190, "lb"),
  11452. name: "Front-armor",
  11453. image: {
  11454. source: "./media/characters/bmc/front-armor.svg",
  11455. extra: 1538/1468,
  11456. bottom: 79/1617
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Human-sized",
  11463. height: math.unit(6 + 4 / 12, "feet")
  11464. },
  11465. {
  11466. name: "Interactive Size",
  11467. height: math.unit(25, "feet")
  11468. },
  11469. {
  11470. name: "Small",
  11471. height: math.unit(250, "feet")
  11472. },
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(1250, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Good Day",
  11480. height: math.unit(88, "miles")
  11481. },
  11482. {
  11483. name: "Largest Measured Size",
  11484. height: math.unit(105.960, "galaxies")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(20, "feet"),
  11493. weight: math.unit(2016, "kg"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/sven-the-kaiju/front.svg",
  11497. extra: 1277/1250,
  11498. bottom: 35/1312
  11499. }
  11500. },
  11501. mouth: {
  11502. height: math.unit(1.85, "feet"),
  11503. name: "Mouth",
  11504. image: {
  11505. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Fairy",
  11512. height: math.unit(6, "inches")
  11513. },
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(20, "feet"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Rampage",
  11521. height: math.unit(200, "feet")
  11522. },
  11523. {
  11524. name: "Archfey Forest Guardian",
  11525. height: math.unit(1, "mile")
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11531. {
  11532. front: {
  11533. height: math.unit(4, "meters"),
  11534. weight: math.unit(2, "tons"),
  11535. name: "Front",
  11536. image: {
  11537. source: "./media/characters/marik/front.svg",
  11538. extra: 1057 / 1003,
  11539. bottom: 0.08
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(4, "meters"),
  11547. default: true
  11548. },
  11549. {
  11550. name: "Macro",
  11551. height: math.unit(20, "meters")
  11552. },
  11553. {
  11554. name: "Megamacro",
  11555. height: math.unit(50, "km")
  11556. },
  11557. {
  11558. name: "Gigamacro",
  11559. height: math.unit(100, "km")
  11560. },
  11561. {
  11562. name: "Alpha Macro",
  11563. height: math.unit(7.88e7, "yottameters")
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11569. {
  11570. front: {
  11571. height: math.unit(6, "feet"),
  11572. weight: math.unit(110, "lb"),
  11573. name: "Front",
  11574. image: {
  11575. source: "./media/characters/mel/front.svg",
  11576. extra: 736 / 617,
  11577. bottom: 0.017
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Pico",
  11584. height: math.unit(3, "pm")
  11585. },
  11586. {
  11587. name: "Nano",
  11588. height: math.unit(3, "nm")
  11589. },
  11590. {
  11591. name: "Micro",
  11592. height: math.unit(0.3, "mm"),
  11593. default: true
  11594. },
  11595. {
  11596. name: "Micro+",
  11597. height: math.unit(3, "mm")
  11598. },
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(5 + 10.5 / 12, "feet")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11607. {
  11608. kaiju: {
  11609. height: math.unit(1.75, "meters"),
  11610. weight: math.unit(55, "kg"),
  11611. name: "Kaiju",
  11612. image: {
  11613. source: "./media/characters/lykonous/kaiju.svg",
  11614. extra: 1055 / 946,
  11615. bottom: 0.135
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(2.5, "meters"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Kaiju Dragon",
  11627. height: math.unit(60, "meters")
  11628. },
  11629. {
  11630. name: "Mega Kaiju",
  11631. height: math.unit(120, "km")
  11632. },
  11633. {
  11634. name: "Giga Kaiju",
  11635. height: math.unit(200, "megameters")
  11636. },
  11637. {
  11638. name: "Terra Kaiju",
  11639. height: math.unit(400, "gigameters")
  11640. },
  11641. {
  11642. name: "Kaiju Dragon God",
  11643. height: math.unit(13000, "exaparsecs")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(6, "feet"),
  11652. weight: math.unit(150, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/blü/front.svg",
  11656. extra: 1883 / 1564,
  11657. bottom: 0.031
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(13, "feet"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Big Boi",
  11669. height: math.unit(150, "meters")
  11670. },
  11671. {
  11672. name: "Mini Stomper",
  11673. height: math.unit(300, "meters")
  11674. },
  11675. {
  11676. name: "Macro",
  11677. height: math.unit(1000, "meters")
  11678. },
  11679. {
  11680. name: "Megamacro",
  11681. height: math.unit(11000, "meters")
  11682. },
  11683. {
  11684. name: "Gigamacro",
  11685. height: math.unit(11000, "km")
  11686. },
  11687. {
  11688. name: "Teramacro",
  11689. height: math.unit(420000, "km")
  11690. },
  11691. {
  11692. name: "Examacro",
  11693. height: math.unit(120, "parsecs")
  11694. },
  11695. {
  11696. name: "God Tho",
  11697. height: math.unit(98000000000, "parsecs")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11703. {
  11704. taurFront: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(200, "lb"),
  11707. name: "Taur (Front)",
  11708. image: {
  11709. source: "./media/characters/scales/taur-front.svg",
  11710. extra: 1,
  11711. bottom: 0.05
  11712. }
  11713. },
  11714. taurBack: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(200, "lb"),
  11717. name: "Taur (Back)",
  11718. image: {
  11719. source: "./media/characters/scales/taur-back.svg",
  11720. extra: 1,
  11721. bottom: 0.08
  11722. }
  11723. },
  11724. anthro: {
  11725. height: math.unit(6 * 7 / 12, "feet"),
  11726. weight: math.unit(100, "lb"),
  11727. name: "Anthro",
  11728. image: {
  11729. source: "./media/characters/scales/anthro.svg",
  11730. extra: 1,
  11731. bottom: 0.06
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(12, "feet"),
  11739. default: true
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/koragos/front.svg",
  11752. extra: 841 / 794,
  11753. bottom: 0.035
  11754. }
  11755. },
  11756. back: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Back",
  11760. image: {
  11761. source: "./media/characters/koragos/back.svg",
  11762. extra: 841 / 810,
  11763. bottom: 0.022
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(6 + 11 / 12, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(490, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(10, "miles")
  11780. },
  11781. {
  11782. name: "Gigamacro",
  11783. height: math.unit(50, "miles")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(250, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/xylrem/front.svg",
  11796. extra: 3323 / 3050,
  11797. bottom: 0.065
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(4, "feet")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(16, "feet"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(2720, "feet")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(25000, "miles")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(8, "feet"),
  11826. weight: math.unit(250, "kg"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/ikideru/front.svg",
  11830. extra: 930 / 870,
  11831. bottom: 0.087
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(8, "feet"),
  11836. weight: math.unit(250, "kg"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/ikideru/back.svg",
  11840. extra: 919 / 852,
  11841. bottom: 0.055
  11842. }
  11843. },
  11844. },
  11845. [
  11846. {
  11847. name: "Rare",
  11848. height: math.unit(8, "feet"),
  11849. default: true
  11850. },
  11851. {
  11852. name: "Playful Loom",
  11853. height: math.unit(80, "feet")
  11854. },
  11855. {
  11856. name: "City Leaner",
  11857. height: math.unit(230, "feet")
  11858. },
  11859. {
  11860. name: "Megamacro",
  11861. height: math.unit(2500, "feet")
  11862. },
  11863. {
  11864. name: "Gigamacro",
  11865. height: math.unit(26400, "feet")
  11866. },
  11867. {
  11868. name: "Tectonic Shifter",
  11869. height: math.unit(1.7, "megameters")
  11870. },
  11871. {
  11872. name: "Planet Carer",
  11873. height: math.unit(21, "megameters")
  11874. },
  11875. {
  11876. name: "God",
  11877. height: math.unit(11157.22, "parsecs")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(6, "feet"),
  11886. weight: math.unit(120, "lb"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/neo/front.svg"
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(2, "inches"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Human Size",
  11901. height: math.unit(5 + 8 / 12, "feet")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(13 + 10 / 12, "feet"),
  11910. weight: math.unit(5320, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/chauncey-chantz/front.svg",
  11914. extra: 1587 / 1435,
  11915. bottom: 0.02
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(13 + 10 / 12, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(45, "feet")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(250, "miles")
  11932. },
  11933. {
  11934. name: "Planetary",
  11935. height: math.unit(10000, "miles")
  11936. },
  11937. {
  11938. name: "Galactic",
  11939. height: math.unit(40000, "parsecs")
  11940. },
  11941. {
  11942. name: "Universal",
  11943. height: math.unit(1, "yottameter")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/epifox/front.svg",
  11956. extra: 1,
  11957. bottom: 0.075
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(6, "inches")
  11965. },
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(12, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(3810, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(500, "miles")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11983. {
  11984. front: {
  11985. height: math.unit(1.8796, "m"),
  11986. weight: math.unit(230, "lb"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/colin-t/front.svg",
  11990. extra: 1272 / 1193,
  11991. bottom: 0.07
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(0.571, "meters")
  11999. },
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(1.8796, "meters"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Tall",
  12007. height: math.unit(4, "meters")
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(67.241, "meters")
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(371.856, "meters")
  12016. },
  12017. {
  12018. name: "Planetary",
  12019. height: math.unit(12631.5689, "km")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(1.85, "meters"),
  12028. weight: math.unit(80, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/matvei/front.svg",
  12032. extra: 614 / 594,
  12033. bottom: 0.01
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(1.85, "meters"),
  12041. default: true
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(5 + 9 / 12, "feet"),
  12050. weight: math.unit(70, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/quincy/front.svg",
  12054. extra: 3041 / 2751
  12055. }
  12056. },
  12057. back: {
  12058. height: math.unit(5 + 9 / 12, "feet"),
  12059. weight: math.unit(70, "lb"),
  12060. name: "Back",
  12061. image: {
  12062. source: "./media/characters/quincy/back.svg",
  12063. extra: 3041 / 2751
  12064. }
  12065. },
  12066. flying: {
  12067. height: math.unit(5 + 4 / 12, "feet"),
  12068. weight: math.unit(70, "lb"),
  12069. name: "Flying",
  12070. image: {
  12071. source: "./media/characters/quincy/flying.svg",
  12072. extra: 1044 / 930
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Micro",
  12079. height: math.unit(3, "cm")
  12080. },
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(5 + 9 / 12, "feet")
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(200, "meters"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(1000, "meters")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(3 + 11/12, "feet"),
  12101. weight: math.unit(50, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/vanrel/front.svg",
  12105. extra: 1104/949,
  12106. bottom: 52/1156
  12107. }
  12108. },
  12109. back: {
  12110. height: math.unit(3 + 11/12, "feet"),
  12111. weight: math.unit(50, "lb"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/vanrel/back.svg",
  12115. extra: 1119/976,
  12116. bottom: 37/1156
  12117. }
  12118. },
  12119. tome: {
  12120. height: math.unit(1.35, "feet"),
  12121. weight: math.unit(10, "lb"),
  12122. name: "Vanrel's Tome",
  12123. rename: true,
  12124. image: {
  12125. source: "./media/characters/vanrel/tome.svg"
  12126. }
  12127. },
  12128. beans: {
  12129. height: math.unit(0.89, "feet"),
  12130. name: "Beans",
  12131. image: {
  12132. source: "./media/characters/vanrel/beans.svg"
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Normal",
  12139. height: math.unit(3 + 11/12, "feet"),
  12140. default: true
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(7 + 5 / 12, "feet"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/kuiper-vanrel/front.svg",
  12152. extra: 1219/1169,
  12153. bottom: 69/1288
  12154. }
  12155. },
  12156. back: {
  12157. height: math.unit(7 + 5 / 12, "feet"),
  12158. name: "Back",
  12159. image: {
  12160. source: "./media/characters/kuiper-vanrel/back.svg",
  12161. extra: 1236/1193,
  12162. bottom: 27/1263
  12163. }
  12164. },
  12165. foot: {
  12166. height: math.unit(0.55, "meters"),
  12167. name: "Foot",
  12168. image: {
  12169. source: "./media/characters/kuiper-vanrel/foot.svg",
  12170. }
  12171. },
  12172. battle: {
  12173. height: math.unit(6.824, "feet"),
  12174. name: "Battle",
  12175. image: {
  12176. source: "./media/characters/kuiper-vanrel/battle.svg",
  12177. extra: 1466 / 1327,
  12178. bottom: 29 / 1492.5
  12179. }
  12180. },
  12181. meerkui: {
  12182. height: math.unit(18, "inches"),
  12183. name: "Meerkui",
  12184. image: {
  12185. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12186. extra: 1354/1289,
  12187. bottom: 69/1423
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(7 + 5 / 12, "feet"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(8 + 5 / 12, "feet"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/keset-vanrel/front.svg",
  12207. extra: 1231/1148,
  12208. bottom: 82/1313
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(8 + 5 / 12, "feet"),
  12213. name: "Back",
  12214. image: {
  12215. source: "./media/characters/keset-vanrel/back.svg",
  12216. extra: 1240/1174,
  12217. bottom: 33/1273
  12218. }
  12219. },
  12220. hand: {
  12221. height: math.unit(0.6, "meters"),
  12222. name: "Hand",
  12223. image: {
  12224. source: "./media/characters/keset-vanrel/hand.svg"
  12225. }
  12226. },
  12227. foot: {
  12228. height: math.unit(0.94978, "meters"),
  12229. name: "Foot",
  12230. image: {
  12231. source: "./media/characters/keset-vanrel/foot.svg"
  12232. }
  12233. },
  12234. battle: {
  12235. height: math.unit(7.408, "feet"),
  12236. name: "Battle",
  12237. image: {
  12238. source: "./media/characters/keset-vanrel/battle.svg",
  12239. extra: 1890 / 1386,
  12240. bottom: 73.28 / 1970
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(8 + 5 / 12, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12254. {
  12255. front: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(150, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/neos/front.svg",
  12261. extra: 1696 / 992,
  12262. bottom: 0.14
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(54, "cm"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(100, "m")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(10, "km")
  12279. },
  12280. {
  12281. name: "Megamacro+",
  12282. height: math.unit(100, "km")
  12283. },
  12284. {
  12285. name: "Gigamacro",
  12286. height: math.unit(100, "Mm")
  12287. },
  12288. {
  12289. name: "Teramacro",
  12290. height: math.unit(100, "Gm")
  12291. },
  12292. {
  12293. name: "Examacro",
  12294. height: math.unit(100, "Em")
  12295. },
  12296. {
  12297. name: "Godly",
  12298. height: math.unit(10000, "Ym")
  12299. },
  12300. {
  12301. name: "Beyond Godly",
  12302. height: math.unit(25, "multiverses")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12308. {
  12309. feminine: {
  12310. height: math.unit(5, "feet"),
  12311. weight: math.unit(100, "lb"),
  12312. name: "Feminine",
  12313. image: {
  12314. source: "./media/characters/sammy-mouse/feminine.svg",
  12315. extra: 2526 / 2425,
  12316. bottom: 0.123
  12317. }
  12318. },
  12319. masculine: {
  12320. height: math.unit(5, "feet"),
  12321. weight: math.unit(100, "lb"),
  12322. name: "Masculine",
  12323. image: {
  12324. source: "./media/characters/sammy-mouse/masculine.svg",
  12325. extra: 2526 / 2425,
  12326. bottom: 0.123
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Micro",
  12333. height: math.unit(5, "inches")
  12334. },
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(5, "feet"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(60, "feet")
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12348. {
  12349. front: {
  12350. height: math.unit(4, "feet"),
  12351. weight: math.unit(50, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/kole/front.svg",
  12355. extra: 1423 / 1303,
  12356. bottom: 0.025
  12357. }
  12358. },
  12359. back: {
  12360. height: math.unit(4, "feet"),
  12361. weight: math.unit(50, "lb"),
  12362. name: "Back",
  12363. image: {
  12364. source: "./media/characters/kole/back.svg",
  12365. extra: 1426 / 1280,
  12366. bottom: 0.02
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(4, "feet"),
  12374. default: true
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12380. {
  12381. front: {
  12382. height: math.unit(2.5, "feet"),
  12383. weight: math.unit(32, "lb"),
  12384. name: "Front",
  12385. image: {
  12386. source: "./media/characters/rufran/front.svg",
  12387. extra: 1313/885,
  12388. bottom: 94/1407
  12389. }
  12390. },
  12391. side: {
  12392. height: math.unit(2.5, "feet"),
  12393. weight: math.unit(32, "lb"),
  12394. name: "Side",
  12395. image: {
  12396. source: "./media/characters/rufran/side.svg",
  12397. extra: 1109/852,
  12398. bottom: 118/1227
  12399. }
  12400. },
  12401. back: {
  12402. height: math.unit(2.5, "feet"),
  12403. weight: math.unit(32, "lb"),
  12404. name: "Back",
  12405. image: {
  12406. source: "./media/characters/rufran/back.svg",
  12407. extra: 1280/878,
  12408. bottom: 131/1411
  12409. }
  12410. },
  12411. mouth: {
  12412. height: math.unit(1.13, "feet"),
  12413. name: "Mouth",
  12414. image: {
  12415. source: "./media/characters/rufran/mouth.svg"
  12416. }
  12417. },
  12418. foot: {
  12419. height: math.unit(1.33, "feet"),
  12420. name: "Foot",
  12421. image: {
  12422. source: "./media/characters/rufran/foot.svg"
  12423. }
  12424. },
  12425. koboldFront: {
  12426. height: math.unit(2 + 6 / 12, "feet"),
  12427. weight: math.unit(20, "lb"),
  12428. name: "Front (Kobold)",
  12429. image: {
  12430. source: "./media/characters/rufran/kobold-front.svg",
  12431. extra: 2041 / 1839,
  12432. bottom: 0.055
  12433. }
  12434. },
  12435. koboldBack: {
  12436. height: math.unit(2 + 6 / 12, "feet"),
  12437. weight: math.unit(20, "lb"),
  12438. name: "Back (Kobold)",
  12439. image: {
  12440. source: "./media/characters/rufran/kobold-back.svg",
  12441. extra: 2054 / 1839,
  12442. bottom: 0.01
  12443. }
  12444. },
  12445. koboldHand: {
  12446. height: math.unit(0.2166, "meters"),
  12447. name: "Hand (Kobold)",
  12448. image: {
  12449. source: "./media/characters/rufran/kobold-hand.svg"
  12450. }
  12451. },
  12452. koboldFoot: {
  12453. height: math.unit(0.185, "meters"),
  12454. name: "Foot (Kobold)",
  12455. image: {
  12456. source: "./media/characters/rufran/kobold-foot.svg"
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Micro",
  12463. height: math.unit(1, "inch")
  12464. },
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(2 + 6 / 12, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Big",
  12472. height: math.unit(60, "feet")
  12473. },
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(325, "feet")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(0.3, "meters"),
  12485. weight: math.unit(3.5, "kg"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/chip/front.svg",
  12489. extra: 748 / 674
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Micro",
  12496. height: math.unit(1, "inch"),
  12497. default: true
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12503. {
  12504. side: {
  12505. height: math.unit(2.3, "meters"),
  12506. weight: math.unit(3500, "lb"),
  12507. name: "Side",
  12508. image: {
  12509. source: "./media/characters/torvid/side.svg",
  12510. extra: 1972 / 722,
  12511. bottom: 0.035
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Normal",
  12518. height: math.unit(2.3, "meters"),
  12519. default: true
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(2, "meters"),
  12528. weight: math.unit(150.5, "kg"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/susan/front.svg",
  12532. extra: 693 / 635,
  12533. bottom: 0.05
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Megamacro",
  12540. height: math.unit(505, "miles"),
  12541. default: true
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(150, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/raindrops/front.svg",
  12554. extra: 2655 / 2461,
  12555. bottom: 49 / 2705
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/raindrops/back.svg",
  12564. extra: 2574 / 2400,
  12565. bottom: 65 / 2634
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Micro",
  12572. height: math.unit(6, "inches")
  12573. },
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(6 + 2 / 12, "feet")
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(131, "feet"),
  12581. default: true
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(15, "miles")
  12586. },
  12587. {
  12588. name: "Gigamacro",
  12589. height: math.unit(4000, "miles")
  12590. },
  12591. {
  12592. name: "Teramacro",
  12593. height: math.unit(315000, "miles")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12599. {
  12600. front: {
  12601. height: math.unit(2.794, "meters"),
  12602. weight: math.unit(325, "kg"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/tezwa/front.svg",
  12606. extra: 2083 / 1906,
  12607. bottom: 0.031
  12608. }
  12609. },
  12610. foot: {
  12611. height: math.unit(0.687, "meters"),
  12612. name: "Foot",
  12613. image: {
  12614. source: "./media/characters/tezwa/foot.svg"
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(9 + 2 / 12, "feet"),
  12622. default: true
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(58, "feet"),
  12631. weight: math.unit(89000, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/typhus/front.svg",
  12635. extra: 816 / 800,
  12636. bottom: 0.065
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Macro",
  12643. height: math.unit(58, "feet"),
  12644. default: true
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(12, "feet"),
  12653. weight: math.unit(6, "tonnes"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/lyra-von-wulf/front.svg",
  12657. extra: 1,
  12658. bottom: 0.10
  12659. }
  12660. },
  12661. frontMecha: {
  12662. height: math.unit(12, "feet"),
  12663. weight: math.unit(12, "tonnes"),
  12664. name: "Front (Mecha)",
  12665. image: {
  12666. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12667. extra: 1,
  12668. bottom: 0.042
  12669. }
  12670. },
  12671. maw: {
  12672. height: math.unit(2.2, "feet"),
  12673. name: "Maw",
  12674. image: {
  12675. source: "./media/characters/lyra-von-wulf/maw.svg"
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(12, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Classic",
  12687. height: math.unit(50, "feet")
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(500, "feet")
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(1, "mile")
  12696. },
  12697. {
  12698. name: "Gigamacro",
  12699. height: math.unit(400, "miles")
  12700. },
  12701. {
  12702. name: "Teramacro",
  12703. height: math.unit(22000, "miles")
  12704. },
  12705. {
  12706. name: "Solarmacro",
  12707. height: math.unit(8600000, "miles")
  12708. },
  12709. {
  12710. name: "Galactic",
  12711. height: math.unit(1057000, "lightyears")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6 + 10 / 12, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/dixon/front.svg",
  12724. extra: 3361 / 3209,
  12725. bottom: 0.01
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(6 + 10 / 12, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Big",
  12737. height: math.unit(12, "meters")
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(500, "meters")
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(2, "km")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(185, "cm"),
  12754. weight: math.unit(68, "kg"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/kauko/front.svg",
  12758. extra: 1455 / 1421,
  12759. bottom: 0.03
  12760. }
  12761. },
  12762. back: {
  12763. height: math.unit(185, "cm"),
  12764. weight: math.unit(68, "kg"),
  12765. name: "Back",
  12766. image: {
  12767. source: "./media/characters/kauko/back.svg",
  12768. extra: 1455 / 1421,
  12769. bottom: 0.004
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Normal",
  12776. height: math.unit(185, "cm"),
  12777. default: true
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "kg"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/varg/front.svg",
  12790. extra: 1108 / 1018,
  12791. bottom: 0.0375
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Normal",
  12798. height: math.unit(5, "meters")
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(200, "meters")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(20, "kilometers")
  12807. },
  12808. {
  12809. name: "True Size",
  12810. height: math.unit(211, "km"),
  12811. default: true
  12812. },
  12813. {
  12814. name: "Gigamacro",
  12815. height: math.unit(1000, "km")
  12816. },
  12817. {
  12818. name: "Gigamacro+",
  12819. height: math.unit(8000, "km")
  12820. },
  12821. {
  12822. name: "Teramacro",
  12823. height: math.unit(1000000, "km")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(7 + 7 / 12, "feet"),
  12832. weight: math.unit(267, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/dayza/front.svg",
  12836. extra: 1262 / 1200,
  12837. bottom: 0.035
  12838. }
  12839. },
  12840. side: {
  12841. height: math.unit(7 + 7 / 12, "feet"),
  12842. weight: math.unit(267, "lb"),
  12843. name: "Side",
  12844. image: {
  12845. source: "./media/characters/dayza/side.svg",
  12846. extra: 1295 / 1245,
  12847. bottom: 0.05
  12848. }
  12849. },
  12850. back: {
  12851. height: math.unit(7 + 7 / 12, "feet"),
  12852. weight: math.unit(267, "lb"),
  12853. name: "Back",
  12854. image: {
  12855. source: "./media/characters/dayza/back.svg",
  12856. extra: 1241 / 1170
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Normal",
  12863. height: math.unit(7 + 7 / 12, "feet"),
  12864. default: true
  12865. },
  12866. {
  12867. name: "Macro",
  12868. height: math.unit(155, "feet")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6 + 5 / 12, "feet"),
  12877. weight: math.unit(160, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/xanthos/front.svg",
  12881. extra: 1,
  12882. bottom: 0.04
  12883. }
  12884. },
  12885. back: {
  12886. height: math.unit(6 + 5 / 12, "feet"),
  12887. weight: math.unit(160, "lb"),
  12888. name: "Back",
  12889. image: {
  12890. source: "./media/characters/xanthos/back.svg",
  12891. extra: 1,
  12892. bottom: 0.03
  12893. }
  12894. },
  12895. hand: {
  12896. height: math.unit(0.928, "feet"),
  12897. name: "Hand",
  12898. image: {
  12899. source: "./media/characters/xanthos/hand.svg"
  12900. }
  12901. },
  12902. foot: {
  12903. height: math.unit(1.286, "feet"),
  12904. name: "Foot",
  12905. image: {
  12906. source: "./media/characters/xanthos/foot.svg"
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(6 + 5 / 12, "feet"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Normal+",
  12918. height: math.unit(6, "meters")
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(40, "feet")
  12923. },
  12924. {
  12925. name: "Macro+",
  12926. height: math.unit(200, "meters")
  12927. },
  12928. {
  12929. name: "Megamacro",
  12930. height: math.unit(20, "km")
  12931. },
  12932. {
  12933. name: "Megamacro+",
  12934. height: math.unit(100, "km")
  12935. },
  12936. {
  12937. name: "Gigamacro",
  12938. height: math.unit(200, "megameters")
  12939. },
  12940. {
  12941. name: "Gigamacro+",
  12942. height: math.unit(1.5, "gigameters")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12948. {
  12949. front: {
  12950. height: math.unit(6 + 3 / 12, "feet"),
  12951. weight: math.unit(215, "lb"),
  12952. name: "Front",
  12953. image: {
  12954. source: "./media/characters/grynn/front.svg",
  12955. extra: 4627 / 4209,
  12956. bottom: 0.047
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Micro",
  12963. height: math.unit(6, "inches")
  12964. },
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(6 + 3 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Big",
  12972. height: math.unit(104, "feet")
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(944, "feet")
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(9480, "feet")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(78752, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro+",
  12988. height: math.unit(630128, "feet")
  12989. },
  12990. {
  12991. name: "Megamacro++",
  12992. height: math.unit(3150695, "feet")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(7 + 5 / 12, "feet"),
  13001. weight: math.unit(450, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/mocha-aura/front.svg",
  13005. extra: 1907 / 1817,
  13006. bottom: 0.04
  13007. }
  13008. },
  13009. back: {
  13010. height: math.unit(7 + 5 / 12, "feet"),
  13011. weight: math.unit(450, "lb"),
  13012. name: "Back",
  13013. image: {
  13014. source: "./media/characters/mocha-aura/back.svg",
  13015. extra: 1900 / 1825,
  13016. bottom: 0.045
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Nano",
  13023. height: math.unit(1, "nm")
  13024. },
  13025. {
  13026. name: "Megamicro",
  13027. height: math.unit(1, "mm")
  13028. },
  13029. {
  13030. name: "Micro",
  13031. height: math.unit(3, "inches")
  13032. },
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(7 + 5 / 12, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(30, "feet")
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(3500, "feet")
  13045. },
  13046. {
  13047. name: "Teramacro",
  13048. height: math.unit(500000, "miles")
  13049. },
  13050. {
  13051. name: "Petamacro",
  13052. height: math.unit(50000000000000000, "parsecs")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(6, "feet"),
  13061. weight: math.unit(150, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/ilisha-devya/front.svg",
  13065. extra: 1,
  13066. bottom: 0.175
  13067. }
  13068. },
  13069. back: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Back",
  13073. image: {
  13074. source: "./media/characters/ilisha-devya/back.svg",
  13075. extra: 1,
  13076. bottom: 0.015
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(500, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Megamacro",
  13088. height: math.unit(10, "miles")
  13089. },
  13090. {
  13091. name: "Gigamacro",
  13092. height: math.unit(100000, "miles")
  13093. },
  13094. {
  13095. name: "Examacro",
  13096. height: math.unit(1e9, "lightyears")
  13097. },
  13098. {
  13099. name: "Omniversal",
  13100. height: math.unit(1e33, "lightyears")
  13101. },
  13102. {
  13103. name: "Beyond Infinite",
  13104. height: math.unit(1e100, "lightyears")
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13110. {
  13111. Side: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(150, "lb"),
  13114. name: "Side",
  13115. image: {
  13116. source: "./media/characters/mira/side.svg",
  13117. extra: 900 / 799,
  13118. bottom: 0.02
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Human Size",
  13125. height: math.unit(6, "feet")
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(100, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Megamacro",
  13134. height: math.unit(10, "miles")
  13135. },
  13136. {
  13137. name: "Gigamacro",
  13138. height: math.unit(25000, "miles")
  13139. },
  13140. {
  13141. name: "Teramacro",
  13142. height: math.unit(300, "AU")
  13143. },
  13144. {
  13145. name: "Full Size",
  13146. height: math.unit(4.5e10, "lightyears")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/holly/front.svg",
  13159. extra: 639 / 606
  13160. }
  13161. },
  13162. back: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Back",
  13166. image: {
  13167. source: "./media/characters/holly/back.svg",
  13168. extra: 623 / 598
  13169. }
  13170. },
  13171. frontWorking: {
  13172. height: math.unit(6, "feet"),
  13173. weight: math.unit(150, "lb"),
  13174. name: "Front (Working)",
  13175. image: {
  13176. source: "./media/characters/holly/front-working.svg",
  13177. extra: 607 / 577,
  13178. bottom: 0.048
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(12 + 3 / 12, "feet"),
  13186. default: true
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13192. {
  13193. front: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(150, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/porter/front.svg",
  13199. extra: 1,
  13200. bottom: 0.01
  13201. }
  13202. },
  13203. frontRobes: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front (Robes)",
  13207. image: {
  13208. source: "./media/characters/porter/front-robes.svg",
  13209. extra: 1.01,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(11 + 9 / 12, "feet"),
  13218. default: true
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13224. {
  13225. legendary: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Legendary",
  13229. image: {
  13230. source: "./media/characters/lucy/legendary.svg",
  13231. extra: 1355 / 1100,
  13232. bottom: 0.045
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Legendary",
  13239. height: math.unit(86882 * 2, "miles"),
  13240. default: true
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/drusilla/front.svg",
  13253. extra: 678 / 635,
  13254. bottom: 0.03
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Back",
  13261. image: {
  13262. source: "./media/characters/drusilla/back.svg",
  13263. extra: 678 / 635,
  13264. bottom: 0.005
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(100, "feet")
  13272. },
  13273. {
  13274. name: "Canon Height",
  13275. height: math.unit(2000, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(180, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/renard-thatch/front.svg",
  13289. extra: 2411 / 2275,
  13290. bottom: 0.01
  13291. }
  13292. },
  13293. frontPosing: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(180, "lb"),
  13296. name: "Front (Posing)",
  13297. image: {
  13298. source: "./media/characters/renard-thatch/front-posing.svg",
  13299. extra: 2381 / 2261,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. back: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(180, "lb"),
  13306. name: "Back",
  13307. image: {
  13308. source: "./media/characters/renard-thatch/back.svg",
  13309. extra: 2428 / 2288
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(3, "inches")
  13317. },
  13318. {
  13319. name: "Default",
  13320. height: math.unit(6, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(75, "feet")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(1450, "feet"),
  13334. weight: math.unit(1.21e6, "tons"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/sekvra/front.svg",
  13338. extra: 1,
  13339. bottom: 0.03
  13340. }
  13341. },
  13342. frontClothed: {
  13343. height: math.unit(1450, "feet"),
  13344. weight: math.unit(1.21e6, "tons"),
  13345. name: "Front (Clothed)",
  13346. image: {
  13347. source: "./media/characters/sekvra/front-clothed.svg",
  13348. extra: 1,
  13349. bottom: 0.03
  13350. }
  13351. },
  13352. side: {
  13353. height: math.unit(1450, "feet"),
  13354. weight: math.unit(1.21e6, "tons"),
  13355. name: "Side",
  13356. image: {
  13357. source: "./media/characters/sekvra/side.svg",
  13358. extra: 1,
  13359. bottom: 0.025
  13360. }
  13361. },
  13362. back: {
  13363. height: math.unit(1450, "feet"),
  13364. weight: math.unit(1.21e6, "tons"),
  13365. name: "Back",
  13366. image: {
  13367. source: "./media/characters/sekvra/back.svg",
  13368. extra: 1,
  13369. bottom: 0.005
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Macro",
  13376. height: math.unit(1450, "feet"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(15000, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/carmine/front.svg",
  13394. extra: 1,
  13395. bottom: 0.035
  13396. }
  13397. },
  13398. frontArmor: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front (Armor)",
  13402. image: {
  13403. source: "./media/characters/carmine/front-armor.svg",
  13404. extra: 1,
  13405. bottom: 0.035
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Large",
  13412. height: math.unit(1, "mile")
  13413. },
  13414. {
  13415. name: "Huge",
  13416. height: math.unit(40, "miles"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Colossal",
  13421. height: math.unit(2500, "miles")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/elyssia/front.svg",
  13434. extra: 2201 / 2035,
  13435. bottom: 0.05
  13436. }
  13437. },
  13438. frontClothed: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front (Clothed)",
  13442. image: {
  13443. source: "./media/characters/elyssia/front-clothed.svg",
  13444. extra: 2201 / 2035,
  13445. bottom: 0.05
  13446. }
  13447. },
  13448. back: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/elyssia/back.svg",
  13454. extra: 2201 / 2035,
  13455. bottom: 0.013
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Smaller",
  13462. height: math.unit(150, "feet")
  13463. },
  13464. {
  13465. name: "Standard",
  13466. height: math.unit(1400, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Distracted",
  13471. height: math.unit(15000, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(7 + 4/12, "feet"),
  13480. weight: math.unit(690, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/geno-maxwell/front.svg",
  13484. extra: 984/856,
  13485. bottom: 87/1071
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(7 + 4/12, "feet"),
  13490. weight: math.unit(690, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/geno-maxwell/back.svg",
  13494. extra: 981/854,
  13495. bottom: 57/1038
  13496. }
  13497. },
  13498. frontCostume: {
  13499. height: math.unit(7 + 4/12, "feet"),
  13500. weight: math.unit(690, "lb"),
  13501. name: "Front (Costume)",
  13502. image: {
  13503. source: "./media/characters/geno-maxwell/front-costume.svg",
  13504. extra: 984/856,
  13505. bottom: 87/1071
  13506. }
  13507. },
  13508. backcostume: {
  13509. height: math.unit(7 + 4/12, "feet"),
  13510. weight: math.unit(690, "lb"),
  13511. name: "Back (Costume)",
  13512. image: {
  13513. source: "./media/characters/geno-maxwell/back-costume.svg",
  13514. extra: 981/854,
  13515. bottom: 57/1038
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Micro",
  13522. height: math.unit(3, "inches")
  13523. },
  13524. {
  13525. name: "Normal",
  13526. height: math.unit(7 + 4 / 12, "feet"),
  13527. default: true
  13528. },
  13529. {
  13530. name: "Macro",
  13531. height: math.unit(220, "feet")
  13532. },
  13533. {
  13534. name: "Megamacro",
  13535. height: math.unit(11, "miles")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(7 + 4/12, "feet"),
  13544. weight: math.unit(750, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/regena-maxwell/front.svg",
  13548. extra: 984/856,
  13549. bottom: 87/1071
  13550. }
  13551. },
  13552. back: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(750, "lb"),
  13555. name: "Back",
  13556. image: {
  13557. source: "./media/characters/regena-maxwell/back.svg",
  13558. extra: 981/854,
  13559. bottom: 57/1038
  13560. }
  13561. },
  13562. frontCostume: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(750, "lb"),
  13565. name: "Front (Costume)",
  13566. image: {
  13567. source: "./media/characters/regena-maxwell/front-costume.svg",
  13568. extra: 984/856,
  13569. bottom: 87/1071
  13570. }
  13571. },
  13572. backcostume: {
  13573. height: math.unit(7 + 4/12, "feet"),
  13574. weight: math.unit(750, "lb"),
  13575. name: "Back (Costume)",
  13576. image: {
  13577. source: "./media/characters/regena-maxwell/back-costume.svg",
  13578. extra: 981/854,
  13579. bottom: 57/1038
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(7 + 4 / 12, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(220, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(11, "miles")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13608. extra: 860 / 690,
  13609. bottom: 0.03
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(1.7, "meters"),
  13617. default: true
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(150, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/quilly/front.svg",
  13630. extra: 890 / 776
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Gigamacro",
  13637. height: math.unit(404090, "miles"),
  13638. default: true
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(7 + 8 / 12, "feet"),
  13647. weight: math.unit(350, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/tempest/front.svg",
  13651. extra: 1175 / 1086,
  13652. bottom: 0.02
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Normal",
  13659. height: math.unit(7 + 8 / 12, "feet"),
  13660. default: true
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13666. {
  13667. side: {
  13668. height: math.unit(4 + 5 / 12, "feet"),
  13669. weight: math.unit(80, "lb"),
  13670. name: "Side",
  13671. image: {
  13672. source: "./media/characters/rodger/side.svg",
  13673. extra: 1235 / 1118
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Micro",
  13680. height: math.unit(1, "inch")
  13681. },
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(4 + 5 / 12, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(120, "feet")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(150, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/danyel/front.svg",
  13702. extra: 1185 / 1123,
  13703. bottom: 0.05
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Shrunken",
  13710. height: math.unit(0.5, "mm")
  13711. },
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(1, "mm"),
  13715. default: true
  13716. },
  13717. {
  13718. name: "Upsized",
  13719. height: math.unit(5 + 5 / 12, "feet")
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(5 + 6 / 12, "feet"),
  13728. weight: math.unit(200, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/vivian-bijoux/front.svg",
  13732. extra: 1217/1209,
  13733. bottom: 76/1293
  13734. }
  13735. },
  13736. back: {
  13737. height: math.unit(5 + 6 / 12, "feet"),
  13738. weight: math.unit(200, "lb"),
  13739. name: "Back",
  13740. image: {
  13741. source: "./media/characters/vivian-bijoux/back.svg",
  13742. extra: 1214/1208,
  13743. bottom: 51/1265
  13744. }
  13745. },
  13746. dressed: {
  13747. height: math.unit(5 + 6 / 12, "feet"),
  13748. weight: math.unit(200, "lb"),
  13749. name: "Dressed",
  13750. image: {
  13751. source: "./media/characters/vivian-bijoux/dressed.svg",
  13752. extra: 1217/1209,
  13753. bottom: 76/1293
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(5 + 6 / 12, "feet"),
  13761. default: true
  13762. },
  13763. {
  13764. name: "Bad Dream",
  13765. height: math.unit(500, "feet")
  13766. },
  13767. {
  13768. name: "Nightmare",
  13769. height: math.unit(500, "miles")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(6 + 1 / 12, "feet"),
  13778. weight: math.unit(260, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/zeta/front.svg",
  13782. extra: 1968 / 1889,
  13783. bottom: 0.06
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(6 + 1 / 12, "feet"),
  13788. weight: math.unit(260, "lb"),
  13789. name: "Back",
  13790. image: {
  13791. source: "./media/characters/zeta/back.svg",
  13792. extra: 1944 / 1858,
  13793. bottom: 0.03
  13794. }
  13795. },
  13796. hand: {
  13797. height: math.unit(1.112, "feet"),
  13798. name: "Hand",
  13799. image: {
  13800. source: "./media/characters/zeta/hand.svg"
  13801. }
  13802. },
  13803. foot: {
  13804. height: math.unit(1.48, "feet"),
  13805. name: "Foot",
  13806. image: {
  13807. source: "./media/characters/zeta/foot.svg"
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Micro",
  13814. height: math.unit(6, "inches")
  13815. },
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(6 + 1 / 12, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(20, "feet")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/jamie-larsen/front.svg",
  13836. extra: 962 / 933,
  13837. bottom: 0.02
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/jamie-larsen/back.svg",
  13846. extra: 997 / 946
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Macro",
  13853. height: math.unit(28 + 7 / 12, "feet"),
  13854. default: true
  13855. },
  13856. {
  13857. name: "Macro+",
  13858. height: math.unit(180, "feet")
  13859. },
  13860. {
  13861. name: "Megamacro",
  13862. height: math.unit(10, "miles")
  13863. },
  13864. {
  13865. name: "Gigamacro",
  13866. height: math.unit(200000, "miles")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(120, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/vance/front.svg",
  13879. extra: 1980 / 1890,
  13880. bottom: 0.09
  13881. }
  13882. },
  13883. back: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(120, "lb"),
  13886. name: "Back",
  13887. image: {
  13888. source: "./media/characters/vance/back.svg",
  13889. extra: 2081 / 1994,
  13890. bottom: 0.014
  13891. }
  13892. },
  13893. hand: {
  13894. height: math.unit(0.88, "feet"),
  13895. name: "Hand",
  13896. image: {
  13897. source: "./media/characters/vance/hand.svg"
  13898. }
  13899. },
  13900. foot: {
  13901. height: math.unit(0.64, "feet"),
  13902. name: "Foot",
  13903. image: {
  13904. source: "./media/characters/vance/foot.svg"
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Small",
  13911. height: math.unit(90, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(100, "meters")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(15, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(180, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/xochitl/front.svg",
  13933. extra: 2297 / 2261,
  13934. bottom: 0.065
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(180, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/xochitl/back.svg",
  13943. extra: 2386 / 2354,
  13944. bottom: 0.01
  13945. }
  13946. },
  13947. foot: {
  13948. height: math.unit(6 / 5 * 1.15, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Foot",
  13951. image: {
  13952. source: "./media/characters/xochitl/foot.svg"
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(80, "feet")
  13960. },
  13961. {
  13962. name: "Macro+",
  13963. height: math.unit(400, "feet"),
  13964. default: true
  13965. },
  13966. {
  13967. name: "Gigamacro",
  13968. height: math.unit(80000, "miles")
  13969. },
  13970. {
  13971. name: "Gigamacro+",
  13972. height: math.unit(400000, "miles")
  13973. },
  13974. {
  13975. name: "Teramacro",
  13976. height: math.unit(300, "AU")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/vincent/front.svg",
  13989. extra: 1130 / 1080,
  13990. bottom: 0.055
  13991. }
  13992. },
  13993. beak: {
  13994. height: math.unit(6 * 0.1, "feet"),
  13995. name: "Beak",
  13996. image: {
  13997. source: "./media/characters/vincent/beak.svg"
  13998. }
  13999. },
  14000. hand: {
  14001. height: math.unit(6 * 0.85, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Hand",
  14004. image: {
  14005. source: "./media/characters/vincent/hand.svg"
  14006. }
  14007. },
  14008. foot: {
  14009. height: math.unit(6 * 0.19, "feet"),
  14010. weight: math.unit(150, "lb"),
  14011. name: "Foot",
  14012. image: {
  14013. source: "./media/characters/vincent/foot.svg"
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Base",
  14020. height: math.unit(6 + 5 / 12, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(300, "feet")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(2, "miles")
  14030. },
  14031. {
  14032. name: "Gigamacro",
  14033. height: math.unit(1000, "miles")
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(2, "meters"),
  14042. weight: math.unit(500, "kg"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/coatl/front.svg",
  14046. extra: 3948 / 3500,
  14047. bottom: 0.082
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(4, "meters")
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(100, "meters"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro+",
  14063. height: math.unit(300, "meters")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(3, "gigameters")
  14068. },
  14069. {
  14070. name: "Megamacro+",
  14071. height: math.unit(300, "terameters")
  14072. },
  14073. {
  14074. name: "Megamacro++",
  14075. height: math.unit(3, "lightyears")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(50, "kg"),
  14085. name: "front",
  14086. image: {
  14087. source: "./media/characters/shiroryu/front.svg",
  14088. extra: 1990 / 1935
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Mortal Mingling",
  14095. height: math.unit(3, "meters")
  14096. },
  14097. {
  14098. name: "Kaiju-ish",
  14099. height: math.unit(250, "meters")
  14100. },
  14101. {
  14102. name: "Somewhat Godly",
  14103. height: math.unit(400, "km"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Planetary",
  14108. height: math.unit(300, "megameters")
  14109. },
  14110. {
  14111. name: "Galaxy-dwarfing",
  14112. height: math.unit(450, "kiloparsecs")
  14113. },
  14114. {
  14115. name: "Universe Eater",
  14116. height: math.unit(150, "gigaparsecs")
  14117. },
  14118. {
  14119. name: "Almost Immeasurable",
  14120. height: math.unit(1.3e266, "yottaparsecs")
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(6, "feet"),
  14129. weight: math.unit(150, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/umeko/front.svg",
  14133. extra: 1,
  14134. bottom: 0.019
  14135. }
  14136. },
  14137. frontArmored: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front (Armored)",
  14141. image: {
  14142. source: "./media/characters/umeko/front-armored.svg",
  14143. extra: 1,
  14144. bottom: 0.021
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Macro",
  14151. height: math.unit(220, "feet"),
  14152. default: true
  14153. },
  14154. {
  14155. name: "Guardian Dragon",
  14156. height: math.unit(50, "miles")
  14157. },
  14158. {
  14159. name: "Cosmic",
  14160. height: math.unit(800000, "miles")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(150, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/cassidy/front.svg",
  14173. extra: 1,
  14174. bottom: 0.043
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Canon Height",
  14181. height: math.unit(120, "feet"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Macro+",
  14186. height: math.unit(400, "feet")
  14187. },
  14188. {
  14189. name: "Macro++",
  14190. height: math.unit(4000, "feet")
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(3, "miles")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(150, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/isaac/front.svg",
  14207. extra: 896 / 815,
  14208. bottom: 0.11
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Human Size",
  14215. height: math.unit(8, "feet"),
  14216. default: true
  14217. },
  14218. {
  14219. name: "Macro",
  14220. height: math.unit(400, "feet")
  14221. },
  14222. {
  14223. name: "Megamacro",
  14224. height: math.unit(50, "miles")
  14225. },
  14226. {
  14227. name: "Canon Height",
  14228. height: math.unit(200, "AU")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(72, "kg"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/sleekit/front.svg",
  14241. extra: 4693 / 4487,
  14242. bottom: 0.012
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Minimum Height",
  14249. height: math.unit(10, "meters")
  14250. },
  14251. {
  14252. name: "Smaller",
  14253. height: math.unit(25, "meters")
  14254. },
  14255. {
  14256. name: "Larger",
  14257. height: math.unit(38, "meters"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Maximum height",
  14262. height: math.unit(100, "meters")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/nillia/front.svg",
  14275. extra: 2195 / 2037,
  14276. bottom: 0.005
  14277. }
  14278. },
  14279. back: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Back",
  14283. image: {
  14284. source: "./media/characters/nillia/back.svg",
  14285. extra: 2195 / 2037,
  14286. bottom: 0.005
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Canon Height",
  14293. height: math.unit(489, "feet"),
  14294. default: true
  14295. }
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(150, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/mesmyriza/front.svg",
  14307. extra: 2067 / 1784,
  14308. bottom: 0.035
  14309. }
  14310. },
  14311. foot: {
  14312. height: math.unit(6 / (250 / 35), "feet"),
  14313. name: "Foot",
  14314. image: {
  14315. source: "./media/characters/mesmyriza/foot.svg"
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Macro",
  14322. height: math.unit(457, "meters"),
  14323. default: true
  14324. },
  14325. {
  14326. name: "Megamacro",
  14327. height: math.unit(8, "megameters")
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(250, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/saudade/front.svg",
  14340. extra: 1172 / 1139,
  14341. bottom: 0.035
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Micro",
  14348. height: math.unit(3, "inches")
  14349. },
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(6, "feet"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Macro",
  14357. height: math.unit(50, "feet")
  14358. },
  14359. {
  14360. name: "Megamacro",
  14361. height: math.unit(2800, "feet")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(5 + 4 / 12, "feet"),
  14370. weight: math.unit(100, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/keireer/front.svg",
  14374. extra: 716 / 666,
  14375. bottom: 0.05
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5 + 4 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(90, "kg"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/mirja/front.svg",
  14396. extra: 1789 / 1683,
  14397. bottom: 0.05
  14398. }
  14399. },
  14400. frontDressed: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(90, "lb"),
  14403. name: "Front (Dressed)",
  14404. image: {
  14405. source: "./media/characters/mirja/front-dressed.svg",
  14406. extra: 1789 / 1683,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. back: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(90, "lb"),
  14413. name: "Back",
  14414. image: {
  14415. source: "./media/characters/mirja/back.svg",
  14416. extra: 953 / 917,
  14417. bottom: 0.017
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "\"Incognito\"",
  14424. height: math.unit(3, "meters")
  14425. },
  14426. {
  14427. name: "Strolling Size",
  14428. height: math.unit(15, "km")
  14429. },
  14430. {
  14431. name: "Larger Strolling Size",
  14432. height: math.unit(400, "km")
  14433. },
  14434. {
  14435. name: "Preferred Size",
  14436. height: math.unit(5000, "km")
  14437. },
  14438. {
  14439. name: "True Size",
  14440. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(15, "feet"),
  14450. weight: math.unit(880, "kg"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/nightraver/front.svg",
  14454. extra: 2444 / 2160,
  14455. bottom: 0.027
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(15, "feet"),
  14460. weight: math.unit(880, "kg"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/nightraver/back.svg",
  14464. extra: 2309 / 2180,
  14465. bottom: 0.005
  14466. }
  14467. },
  14468. sole: {
  14469. height: math.unit(2.878, "feet"),
  14470. name: "Sole",
  14471. image: {
  14472. source: "./media/characters/nightraver/sole.svg"
  14473. }
  14474. },
  14475. foot: {
  14476. height: math.unit(2.285, "feet"),
  14477. name: "Foot",
  14478. image: {
  14479. source: "./media/characters/nightraver/foot.svg"
  14480. }
  14481. },
  14482. maw: {
  14483. height: math.unit(2.67, "feet"),
  14484. name: "Maw",
  14485. image: {
  14486. source: "./media/characters/nightraver/maw.svg"
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Micro",
  14493. height: math.unit(1, "cm")
  14494. },
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(15, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(300, "feet")
  14503. },
  14504. {
  14505. name: "Megamacro",
  14506. height: math.unit(300, "miles")
  14507. },
  14508. {
  14509. name: "Gigamacro",
  14510. height: math.unit(10000, "miles")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14516. {
  14517. side: {
  14518. height: math.unit(2, "inches"),
  14519. weight: math.unit(5, "grams"),
  14520. name: "Side",
  14521. image: {
  14522. source: "./media/characters/arc/side.svg"
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Micro",
  14529. height: math.unit(2, "inches"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(1.1938, "meters"),
  14539. weight: math.unit(54, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/nebula-shahar/front.svg",
  14543. extra: 1642 / 1436,
  14544. bottom: 0.06
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Megamicro",
  14551. height: math.unit(0.3, "mm")
  14552. },
  14553. {
  14554. name: "Micro",
  14555. height: math.unit(3, "cm")
  14556. },
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(138, "cm"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Macro",
  14564. height: math.unit(30, "m")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(5.24, "feet"),
  14573. weight: math.unit(150, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/shayla/front.svg",
  14577. extra: 1512 / 1414,
  14578. bottom: 0.01
  14579. }
  14580. },
  14581. back: {
  14582. height: math.unit(5.24, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Back",
  14585. image: {
  14586. source: "./media/characters/shayla/back.svg",
  14587. extra: 1512 / 1414
  14588. }
  14589. },
  14590. hand: {
  14591. height: math.unit(0.7781496062992126, "feet"),
  14592. name: "Hand",
  14593. image: {
  14594. source: "./media/characters/shayla/hand.svg"
  14595. }
  14596. },
  14597. foot: {
  14598. height: math.unit(1.4206036745406823, "feet"),
  14599. name: "Foot",
  14600. image: {
  14601. source: "./media/characters/shayla/foot.svg"
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Micro",
  14608. height: math.unit(0.32, "feet")
  14609. },
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(5.24, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(492.12, "feet")
  14618. },
  14619. {
  14620. name: "Megamacro",
  14621. height: math.unit(186.41, "miles")
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(2.2, "m"),
  14630. weight: math.unit(120, "kg"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/pia-jr/front.svg",
  14634. extra: 1000 / 970,
  14635. bottom: 0.035
  14636. }
  14637. },
  14638. hand: {
  14639. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14640. name: "Hand",
  14641. image: {
  14642. source: "./media/characters/pia-jr/hand.svg"
  14643. }
  14644. },
  14645. paw: {
  14646. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14647. name: "Paw",
  14648. image: {
  14649. source: "./media/characters/pia-jr/paw.svg"
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Micro",
  14656. height: math.unit(1.2, "cm")
  14657. },
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(2.2, "m"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Macro",
  14665. height: math.unit(180, "m")
  14666. },
  14667. {
  14668. name: "Megamacro",
  14669. height: math.unit(420, "km")
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(2, "m"),
  14678. weight: math.unit(115, "kg"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/pia-sr/front.svg",
  14682. extra: 760 / 730,
  14683. bottom: 0.015
  14684. }
  14685. },
  14686. back: {
  14687. height: math.unit(2, "m"),
  14688. weight: math.unit(115, "kg"),
  14689. name: "Back",
  14690. image: {
  14691. source: "./media/characters/pia-sr/back.svg",
  14692. extra: 760 / 730,
  14693. bottom: 0.01
  14694. }
  14695. },
  14696. hand: {
  14697. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14698. name: "Hand",
  14699. image: {
  14700. source: "./media/characters/pia-sr/hand.svg"
  14701. }
  14702. },
  14703. foot: {
  14704. height: math.unit(1.83, "feet"),
  14705. name: "Foot",
  14706. image: {
  14707. source: "./media/characters/pia-sr/foot.svg"
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Micro",
  14714. height: math.unit(88, "mm")
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(2, "m"),
  14719. default: true
  14720. },
  14721. {
  14722. name: "Macro",
  14723. height: math.unit(200, "m")
  14724. },
  14725. {
  14726. name: "Megamacro",
  14727. height: math.unit(420, "km")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(8 + 2 / 12, "feet"),
  14736. weight: math.unit(300, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/kibibyte/front.svg",
  14740. extra: 2221 / 2098,
  14741. bottom: 0.04
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Normal",
  14748. height: math.unit(8 + 2 / 12, "feet"),
  14749. default: true
  14750. },
  14751. {
  14752. name: "Socialable Macro",
  14753. height: math.unit(50, "feet")
  14754. },
  14755. {
  14756. name: "Macro",
  14757. height: math.unit(300, "feet")
  14758. },
  14759. {
  14760. name: "Megamacro",
  14761. height: math.unit(500, "miles")
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(6, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/felix/front.svg",
  14774. extra: 762 / 722,
  14775. bottom: 0.02
  14776. }
  14777. },
  14778. frontClothed: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Front (Clothed)",
  14782. image: {
  14783. source: "./media/characters/felix/front-clothed.svg",
  14784. extra: 762 / 722,
  14785. bottom: 0.02
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(6 + 8 / 12, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(2600, "feet")
  14798. },
  14799. {
  14800. name: "Megamacro",
  14801. height: math.unit(450, "miles")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(6 + 1 / 12, "feet"),
  14810. weight: math.unit(250, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/tobo/front.svg",
  14814. extra: 608 / 586,
  14815. bottom: 0.023
  14816. }
  14817. },
  14818. back: {
  14819. height: math.unit(6 + 1 / 12, "feet"),
  14820. weight: math.unit(250, "lb"),
  14821. name: "Back",
  14822. image: {
  14823. source: "./media/characters/tobo/back.svg",
  14824. extra: 608 / 586
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Nano",
  14831. height: math.unit(2, "nm")
  14832. },
  14833. {
  14834. name: "Megamicro",
  14835. height: math.unit(0.1, "mm")
  14836. },
  14837. {
  14838. name: "Micro",
  14839. height: math.unit(1, "inch"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Human-sized",
  14844. height: math.unit(6 + 1 / 12, "feet")
  14845. },
  14846. {
  14847. name: "Macro",
  14848. height: math.unit(250, "feet")
  14849. },
  14850. {
  14851. name: "Megamacro",
  14852. height: math.unit(75, "miles")
  14853. },
  14854. {
  14855. name: "Texas-sized",
  14856. height: math.unit(750, "miles")
  14857. },
  14858. {
  14859. name: "Teramacro",
  14860. height: math.unit(50000, "miles")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(269, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/danny-kapowsky/front.svg",
  14873. extra: 766 / 736,
  14874. bottom: 0.044
  14875. }
  14876. },
  14877. back: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(269, "lb"),
  14880. name: "Back",
  14881. image: {
  14882. source: "./media/characters/danny-kapowsky/back.svg",
  14883. extra: 797 / 760,
  14884. bottom: 0.025
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(150, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro+",
  14896. height: math.unit(200, "feet")
  14897. },
  14898. {
  14899. name: "Macro++",
  14900. height: math.unit(300, "feet")
  14901. },
  14902. {
  14903. name: "Macro+++",
  14904. height: math.unit(400, "feet")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14910. {
  14911. side: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(170, "lb"),
  14914. name: "Side",
  14915. image: {
  14916. source: "./media/characters/finn/side.svg",
  14917. extra: 1953 / 1807,
  14918. bottom: 0.057
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Megamacro",
  14925. height: math.unit(14445, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(5 + 6 / 12, "feet"),
  14935. weight: math.unit(125, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/roy/front.svg",
  14939. extra: 1,
  14940. bottom: 0.11
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Micro",
  14947. height: math.unit(3, "inches"),
  14948. default: true
  14949. },
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(5 + 6 / 12, "feet")
  14953. },
  14954. {
  14955. name: "Lesser Macro",
  14956. height: math.unit(60, "feet")
  14957. },
  14958. {
  14959. name: "Greater Macro",
  14960. height: math.unit(120, "feet")
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(100, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/aevsivs/front.svg",
  14973. extra: 1,
  14974. bottom: 0.03
  14975. }
  14976. },
  14977. back: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(100, "lb"),
  14980. name: "Back",
  14981. image: {
  14982. source: "./media/characters/aevsivs/back.svg"
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Micro",
  14989. height: math.unit(2, "inches"),
  14990. default: true
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(5, "feet")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(5 + 7 / 12, "feet"),
  15003. weight: math.unit(159, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/hildegard/front.svg",
  15007. extra: 289 / 269,
  15008. bottom: 7.63 / 297.8
  15009. }
  15010. },
  15011. back: {
  15012. height: math.unit(5 + 7 / 12, "feet"),
  15013. weight: math.unit(159, "lb"),
  15014. name: "Back",
  15015. image: {
  15016. source: "./media/characters/hildegard/back.svg",
  15017. extra: 280 / 260,
  15018. bottom: 2.3 / 282
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(5 + 7 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15032. {
  15033. bernard: {
  15034. height: math.unit(2 + 7 / 12, "feet"),
  15035. weight: math.unit(66, "lb"),
  15036. name: "Bernard",
  15037. rename: true,
  15038. image: {
  15039. source: "./media/characters/bernard-wilder/bernard.svg",
  15040. extra: 192 / 128,
  15041. bottom: 0.05
  15042. }
  15043. },
  15044. wilder: {
  15045. height: math.unit(5 + 8 / 12, "feet"),
  15046. weight: math.unit(143, "lb"),
  15047. name: "Wilder",
  15048. rename: true,
  15049. image: {
  15050. source: "./media/characters/bernard-wilder/wilder.svg",
  15051. extra: 361 / 312,
  15052. bottom: 0.02
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(2 + 7 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15066. {
  15067. anthro: {
  15068. height: math.unit(6 + 1 / 12, "feet"),
  15069. weight: math.unit(155, "lb"),
  15070. name: "Anthro",
  15071. image: {
  15072. source: "./media/characters/hearth/anthro.svg",
  15073. extra: 260 / 250,
  15074. bottom: 0.02
  15075. }
  15076. },
  15077. feral: {
  15078. height: math.unit(3.78, "feet"),
  15079. weight: math.unit(35, "kg"),
  15080. name: "Feral",
  15081. image: {
  15082. source: "./media/characters/hearth/feral.svg",
  15083. extra: 153 / 135,
  15084. bottom: 0.03
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(6 + 1 / 12, "feet"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(6, "feet"),
  15101. weight: math.unit(182, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/ingrid/front.svg",
  15105. extra: 294 / 268,
  15106. bottom: 0.027
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(6, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15120. {
  15121. eevee: {
  15122. height: math.unit(2 + 10 / 12, "feet"),
  15123. weight: math.unit(86, "lb"),
  15124. name: "Malgam",
  15125. image: {
  15126. source: "./media/characters/malgam/eevee.svg",
  15127. extra: 218 / 180,
  15128. bottom: 0.2
  15129. }
  15130. },
  15131. sylveon: {
  15132. height: math.unit(4, "feet"),
  15133. weight: math.unit(101, "lb"),
  15134. name: "Future Malgam",
  15135. rename: true,
  15136. image: {
  15137. source: "./media/characters/malgam/sylveon.svg",
  15138. extra: 371 / 325,
  15139. bottom: 0.015
  15140. }
  15141. },
  15142. gigantamax: {
  15143. height: math.unit(50, "feet"),
  15144. name: "Gigantamax Malgam",
  15145. rename: true,
  15146. image: {
  15147. source: "./media/characters/malgam/gigantamax.svg"
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(2 + 10 / 12, "feet"),
  15155. default: true
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(5 + 11 / 12, "feet"),
  15164. weight: math.unit(188, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/fleur/front.svg",
  15168. extra: 309 / 283,
  15169. bottom: 0.007
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(5 + 11 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(5 + 4 / 12, "feet"),
  15186. weight: math.unit(122, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/jude/front.svg",
  15190. extra: 288 / 273,
  15191. bottom: 0.03
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(5 + 4 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(5 + 11 / 12, "feet"),
  15208. weight: math.unit(190, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/seara/front.svg",
  15212. extra: 1,
  15213. bottom: 0.05
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(5 + 11 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(16 + 5 / 12, "feet"),
  15230. weight: math.unit(524, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/caspian/front.svg",
  15234. extra: 1,
  15235. bottom: 0.04
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(16 + 5 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(5 + 7 / 12, "feet"),
  15252. weight: math.unit(170, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/mika/front.svg",
  15256. extra: 1,
  15257. bottom: 0.016
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(5 + 7 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(6 + 2 / 12, "feet"),
  15274. weight: math.unit(268, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/sol/front.svg",
  15278. extra: 247 / 231,
  15279. bottom: 0.05
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(6 + 2 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15293. {
  15294. buizel: {
  15295. height: math.unit(2 + 5 / 12, "feet"),
  15296. weight: math.unit(87, "lb"),
  15297. name: "Buizel",
  15298. image: {
  15299. source: "./media/characters/umiko/buizel.svg",
  15300. extra: 172 / 157,
  15301. bottom: 0.01
  15302. }
  15303. },
  15304. floatzel: {
  15305. height: math.unit(5 + 9 / 12, "feet"),
  15306. weight: math.unit(250, "lb"),
  15307. name: "Floatzel",
  15308. image: {
  15309. source: "./media/characters/umiko/floatzel.svg",
  15310. extra: 262 / 248
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(2 + 5 / 12, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(6 + 2 / 12, "feet"),
  15327. weight: math.unit(146, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/iliac/front.svg",
  15331. extra: 389 / 365,
  15332. bottom: 0.035
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(6 + 2 / 12, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(170, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/topaz/front.svg",
  15353. extra: 317 / 303,
  15354. bottom: 0.055
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(6, "feet"),
  15362. default: true
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15368. {
  15369. front: {
  15370. height: math.unit(5 + 11 / 12, "feet"),
  15371. weight: math.unit(144, "lb"),
  15372. name: "Front",
  15373. image: {
  15374. source: "./media/characters/gabriel/front.svg",
  15375. extra: 285 / 262,
  15376. bottom: 0.004
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(5 + 11 / 12, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15390. {
  15391. side: {
  15392. height: math.unit(6 + 5 / 12, "feet"),
  15393. weight: math.unit(300, "lb"),
  15394. name: "Side",
  15395. image: {
  15396. source: "./media/characters/tempest-suicune/side.svg",
  15397. extra: 195 / 154,
  15398. bottom: 0.04
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(6 + 5 / 12, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(7 + 2 / 12, "feet"),
  15415. weight: math.unit(322, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/vulcan/front.svg",
  15419. extra: 154 / 147,
  15420. bottom: 0.04
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(7 + 2 / 12, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(5 + 10 / 12, "feet"),
  15437. weight: math.unit(264, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/gault/front.svg",
  15441. extra: 161 / 140,
  15442. bottom: 0.028
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(5 + 10 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15456. {
  15457. front: {
  15458. height: math.unit(6, "feet"),
  15459. weight: math.unit(150, "lb"),
  15460. name: "Front",
  15461. image: {
  15462. source: "./media/characters/shard/front.svg",
  15463. extra: 273 / 238,
  15464. bottom: 0.02
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(3 + 6 / 12, "feet"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(5 + 11 / 12, "feet"),
  15481. weight: math.unit(146, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/ashe/front.svg",
  15485. extra: 400 / 373,
  15486. bottom: 0.01
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(5 + 11 / 12, "feet"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(5 + 5 / 12, "feet"),
  15503. weight: math.unit(135, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/beatrix/front.svg",
  15507. extra: 392 / 379,
  15508. bottom: 0.01
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(6, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(150, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/ignatius/front.svg",
  15529. extra: 245 / 222,
  15530. bottom: 0.01
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(5 + 5 / 12, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6 + 2 / 12, "feet"),
  15547. weight: math.unit(138, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/mei-li/front.svg",
  15551. extra: 237 / 229,
  15552. bottom: 0.03
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(6 + 2 / 12, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(2 + 4 / 12, "feet"),
  15569. weight: math.unit(62, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/puru/front.svg",
  15573. extra: 206 / 149,
  15574. bottom: 0.06
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(2 + 4 / 12, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15588. {
  15589. anthro: {
  15590. height: math.unit(5 + 8/12, "feet"),
  15591. weight: math.unit(200, "lb"),
  15592. energyNeed: math.unit(2000, "kcal"),
  15593. name: "Anthro",
  15594. image: {
  15595. source: "./media/characters/kee/anthro.svg",
  15596. extra: 3251/3184,
  15597. bottom: 250/3501
  15598. }
  15599. },
  15600. taur: {
  15601. height: math.unit(11, "feet"),
  15602. weight: math.unit(500, "lb"),
  15603. energyNeed: math.unit(5000, "kcal"),
  15604. name: "Taur",
  15605. image: {
  15606. source: "./media/characters/kee/taur.svg",
  15607. extra: 1362/1320,
  15608. bottom: 83/1445
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(5 + 8/12, "feet"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Macro",
  15620. height: math.unit(35, "feet")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15626. {
  15627. anthro: {
  15628. height: math.unit(7, "feet"),
  15629. weight: math.unit(190, "lb"),
  15630. name: "Anthro",
  15631. image: {
  15632. source: "./media/characters/cobalt-dracha/anthro.svg",
  15633. extra: 231 / 225,
  15634. bottom: 0.04
  15635. }
  15636. },
  15637. feral: {
  15638. height: math.unit(9 + 7 / 12, "feet"),
  15639. weight: math.unit(294, "lb"),
  15640. name: "Feral",
  15641. image: {
  15642. source: "./media/characters/cobalt-dracha/feral.svg",
  15643. extra: 692 / 633,
  15644. bottom: 0.05
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(7, "feet"),
  15652. default: true
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15658. {
  15659. fallen: {
  15660. height: math.unit(11 + 8 / 12, "feet"),
  15661. weight: math.unit(485, "lb"),
  15662. name: "Java (Fallen)",
  15663. rename: true,
  15664. image: {
  15665. source: "./media/characters/java/fallen.svg",
  15666. extra: 226 / 208,
  15667. bottom: 0.005
  15668. }
  15669. },
  15670. godkin: {
  15671. height: math.unit(10 + 6 / 12, "feet"),
  15672. weight: math.unit(328, "lb"),
  15673. name: "Java (Godkin)",
  15674. rename: true,
  15675. image: {
  15676. source: "./media/characters/java/godkin.svg",
  15677. extra: 270 / 262,
  15678. bottom: 0.02
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(11 + 8 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(7 + 8 / 12, "feet"),
  15695. weight: math.unit(320, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/skoll/front.svg",
  15699. extra: 232 / 220,
  15700. bottom: 0.02
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(7 + 8 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(5 + 9 / 12, "feet"),
  15717. weight: math.unit(170, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/purna/front.svg",
  15721. extra: 239 / 229,
  15722. bottom: 0.01
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(5 + 9 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(5 + 9 / 12, "feet"),
  15739. weight: math.unit(142, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/kuva/front.svg",
  15743. extra: 281 / 271,
  15744. bottom: 0.006
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(5 + 9 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15758. {
  15759. anthro: {
  15760. height: math.unit(9 + 2 / 12, "feet"),
  15761. weight: math.unit(270, "lb"),
  15762. name: "Anthro",
  15763. image: {
  15764. source: "./media/characters/embra/anthro.svg",
  15765. extra: 200 / 187,
  15766. bottom: 0.02
  15767. }
  15768. },
  15769. feral: {
  15770. height: math.unit(18 + 8 / 12, "feet"),
  15771. weight: math.unit(576, "lb"),
  15772. name: "Feral",
  15773. image: {
  15774. source: "./media/characters/embra/feral.svg",
  15775. extra: 152 / 137,
  15776. bottom: 0.037
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(9 + 2 / 12, "feet"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15790. {
  15791. anthro: {
  15792. height: math.unit(10 + 9 / 12, "feet"),
  15793. weight: math.unit(224, "lb"),
  15794. name: "Anthro",
  15795. image: {
  15796. source: "./media/characters/grottos/anthro.svg",
  15797. extra: 350 / 332,
  15798. bottom: 0.045
  15799. }
  15800. },
  15801. feral: {
  15802. height: math.unit(20 + 7 / 12, "feet"),
  15803. weight: math.unit(629, "lb"),
  15804. name: "Feral",
  15805. image: {
  15806. source: "./media/characters/grottos/feral.svg",
  15807. extra: 207 / 190,
  15808. bottom: 0.05
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(10 + 9 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15822. {
  15823. anthro: {
  15824. height: math.unit(9 + 6 / 12, "feet"),
  15825. weight: math.unit(298, "lb"),
  15826. name: "Anthro",
  15827. image: {
  15828. source: "./media/characters/frifna/anthro.svg",
  15829. extra: 282 / 269,
  15830. bottom: 0.015
  15831. }
  15832. },
  15833. feral: {
  15834. height: math.unit(16 + 2 / 12, "feet"),
  15835. weight: math.unit(624, "lb"),
  15836. name: "Feral",
  15837. image: {
  15838. source: "./media/characters/frifna/feral.svg"
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(9 + 6 / 12, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6 + 2 / 12, "feet"),
  15855. weight: math.unit(168, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/elise/front.svg",
  15859. extra: 276 / 271
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(6 + 2 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(5 + 10 / 12, "feet"),
  15876. weight: math.unit(210, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/glade/front.svg",
  15880. extra: 258 / 247,
  15881. bottom: 0.008
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(5 + 10 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 10 / 12, "feet"),
  15898. weight: math.unit(129, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/rina/front.svg",
  15902. extra: 266 / 255,
  15903. bottom: 0.005
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5 + 10 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6 + 1 / 12, "feet"),
  15920. weight: math.unit(192, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/veronica/front.svg",
  15924. extra: 319 / 309,
  15925. bottom: 0.005
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(6 + 1 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(9 + 3 / 12, "feet"),
  15942. weight: math.unit(1100, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/braxton/front.svg",
  15946. extra: 1057 / 984,
  15947. bottom: 0.05
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(9 + 3 / 12, "feet")
  15955. },
  15956. {
  15957. name: "Giant",
  15958. height: math.unit(300, "feet"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Macro",
  15963. height: math.unit(700, "feet")
  15964. },
  15965. {
  15966. name: "Megamacro",
  15967. height: math.unit(6000, "feet")
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(6 + 7 / 12, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/blue-feyonics/front.svg",
  15980. extra: 1403 / 1306,
  15981. bottom: 0.047
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(6 + 7 / 12, "feet"),
  15989. default: true
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(1.8, "meters"),
  15998. weight: math.unit(60, "kg"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/maxwell/front.svg",
  16002. extra: 2060 / 1873
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Micro",
  16009. height: math.unit(1, "mm")
  16010. },
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(1.8, "meter"),
  16014. default: true
  16015. },
  16016. {
  16017. name: "Macro",
  16018. height: math.unit(30, "meters")
  16019. },
  16020. {
  16021. name: "Megamacro",
  16022. height: math.unit(10, "km")
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(150, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/jack/front.svg",
  16035. extra: 1754 / 1640,
  16036. bottom: 0.01
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(80000, "feet"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Max size",
  16048. height: math.unit(10, "lightyears")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16054. {
  16055. urban: {
  16056. height: math.unit(5, "feet"),
  16057. weight: math.unit(240, "lb"),
  16058. name: "Urban",
  16059. image: {
  16060. source: "./media/characters/cafat/urban.svg",
  16061. extra: 1223/1126,
  16062. bottom: 205/1428
  16063. }
  16064. },
  16065. summer: {
  16066. height: math.unit(5, "feet"),
  16067. weight: math.unit(240, "lb"),
  16068. name: "Summer",
  16069. image: {
  16070. source: "./media/characters/cafat/summer.svg",
  16071. extra: 1223/1126,
  16072. bottom: 205/1428
  16073. }
  16074. },
  16075. winter: {
  16076. height: math.unit(5, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Winter",
  16079. image: {
  16080. source: "./media/characters/cafat/winter.svg",
  16081. extra: 1223/1126,
  16082. bottom: 205/1428
  16083. }
  16084. },
  16085. lingerie: {
  16086. height: math.unit(5, "feet"),
  16087. weight: math.unit(240, "lb"),
  16088. name: "Lingerie",
  16089. image: {
  16090. source: "./media/characters/cafat/lingerie.svg",
  16091. extra: 1223/1126,
  16092. bottom: 205/1428
  16093. }
  16094. },
  16095. upright: {
  16096. height: math.unit(6.3, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Upright",
  16099. image: {
  16100. source: "./media/characters/cafat/upright.svg",
  16101. bottom: 0.01
  16102. }
  16103. },
  16104. uprightFull: {
  16105. height: math.unit(6.3, "feet"),
  16106. weight: math.unit(240, "lb"),
  16107. name: "Upright (Full)",
  16108. image: {
  16109. source: "./media/characters/cafat/upright-full.svg",
  16110. bottom: 0.01
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Small",
  16117. height: math.unit(5, "feet"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Large",
  16122. height: math.unit(13, "feet")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(6, "feet"),
  16131. weight: math.unit(150, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/verin-raharra/front.svg",
  16135. extra: 5019 / 4835,
  16136. bottom: 0.023
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(7 + 5 / 12, "feet"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Upsized",
  16148. height: math.unit(20, "feet")
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(7, "feet"),
  16157. weight: math.unit(230, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/nakata/front.svg",
  16161. extra: 1.005,
  16162. bottom: 0.01
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(7, "feet"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Big",
  16174. height: math.unit(14, "feet")
  16175. },
  16176. {
  16177. name: "Macro",
  16178. height: math.unit(400, "feet")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(4.91, "feet"),
  16187. weight: math.unit(100, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/lily/front.svg",
  16191. extra: 1585 / 1415,
  16192. bottom: 0.02
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(4.91, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16206. {
  16207. laying: {
  16208. height: math.unit(4 + 4 / 12, "feet"),
  16209. weight: math.unit(600, "lb"),
  16210. name: "Laying",
  16211. image: {
  16212. source: "./media/characters/sheila/laying.svg",
  16213. extra: 1333 / 1265,
  16214. bottom: 0.16
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(4 + 4 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(190, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/sax/front.svg",
  16235. extra: 1187 / 973,
  16236. bottom: 0.042
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Micro",
  16243. height: math.unit(4, "inches"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6, "feet"),
  16253. weight: math.unit(150, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/pandora/front.svg",
  16257. extra: 2720 / 2556,
  16258. bottom: 0.015
  16259. }
  16260. },
  16261. back: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Back",
  16265. image: {
  16266. source: "./media/characters/pandora/back.svg",
  16267. extra: 2720 / 2556,
  16268. bottom: 0.01
  16269. }
  16270. },
  16271. beans: {
  16272. height: math.unit(6 / 8, "feet"),
  16273. name: "Beans",
  16274. image: {
  16275. source: "./media/characters/pandora/beans.svg"
  16276. }
  16277. },
  16278. collar: {
  16279. height: math.unit(0.31, "feet"),
  16280. name: "Collar",
  16281. image: {
  16282. source: "./media/characters/pandora/collar.svg"
  16283. }
  16284. },
  16285. skirt: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Skirt",
  16289. image: {
  16290. source: "./media/characters/pandora/skirt.svg",
  16291. extra: 1622 / 1525,
  16292. bottom: 0.015
  16293. }
  16294. },
  16295. hoodie: {
  16296. height: math.unit(6, "feet"),
  16297. weight: math.unit(150, "lb"),
  16298. name: "Hoodie",
  16299. image: {
  16300. source: "./media/characters/pandora/hoodie.svg",
  16301. extra: 1622 / 1525,
  16302. bottom: 0.015
  16303. }
  16304. },
  16305. casual: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Casual",
  16309. image: {
  16310. source: "./media/characters/pandora/casual.svg",
  16311. extra: 1622 / 1525,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(6, "feet")
  16320. },
  16321. {
  16322. name: "Big Steppy",
  16323. height: math.unit(1, "km"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Galactic Steppy",
  16328. height: math.unit(2, "gigameters")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16334. {
  16335. side: {
  16336. height: math.unit(10, "feet"),
  16337. weight: math.unit(800, "kg"),
  16338. name: "Side",
  16339. image: {
  16340. source: "./media/characters/venio-darcony/side.svg",
  16341. extra: 1373 / 1003,
  16342. bottom: 0.037
  16343. }
  16344. },
  16345. front: {
  16346. height: math.unit(19, "feet"),
  16347. weight: math.unit(800, "kg"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/venio-darcony/front.svg"
  16351. }
  16352. },
  16353. back: {
  16354. height: math.unit(19, "feet"),
  16355. weight: math.unit(800, "kg"),
  16356. name: "Back",
  16357. image: {
  16358. source: "./media/characters/venio-darcony/back.svg"
  16359. }
  16360. },
  16361. sideNsfw: {
  16362. height: math.unit(10, "feet"),
  16363. weight: math.unit(800, "kg"),
  16364. name: "Side (NSFW)",
  16365. image: {
  16366. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16367. extra: 1373 / 1003,
  16368. bottom: 0.037
  16369. }
  16370. },
  16371. frontNsfw: {
  16372. height: math.unit(19, "feet"),
  16373. weight: math.unit(800, "kg"),
  16374. name: "Front (NSFW)",
  16375. image: {
  16376. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16377. }
  16378. },
  16379. backNsfw: {
  16380. height: math.unit(19, "feet"),
  16381. weight: math.unit(800, "kg"),
  16382. name: "Back (NSFW)",
  16383. image: {
  16384. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16385. }
  16386. },
  16387. sideArmored: {
  16388. height: math.unit(10, "feet"),
  16389. weight: math.unit(800, "kg"),
  16390. name: "Side (Armored)",
  16391. image: {
  16392. source: "./media/characters/venio-darcony/side-armored.svg",
  16393. extra: 1373 / 1003,
  16394. bottom: 0.037
  16395. }
  16396. },
  16397. frontArmored: {
  16398. height: math.unit(19, "feet"),
  16399. weight: math.unit(900, "kg"),
  16400. name: "Front (Armored)",
  16401. image: {
  16402. source: "./media/characters/venio-darcony/front-armored.svg"
  16403. }
  16404. },
  16405. backArmored: {
  16406. height: math.unit(19, "feet"),
  16407. weight: math.unit(900, "kg"),
  16408. name: "Back (Armored)",
  16409. image: {
  16410. source: "./media/characters/venio-darcony/back-armored.svg"
  16411. }
  16412. },
  16413. sword: {
  16414. height: math.unit(10, "feet"),
  16415. weight: math.unit(50, "lb"),
  16416. name: "Sword",
  16417. image: {
  16418. source: "./media/characters/venio-darcony/sword.svg"
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(10, "feet")
  16426. },
  16427. {
  16428. name: "Macro",
  16429. height: math.unit(130, "feet"),
  16430. default: true
  16431. },
  16432. {
  16433. name: "Macro+",
  16434. height: math.unit(240, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(6, "feet"),
  16443. weight: math.unit(150, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/veski/front.svg",
  16447. extra: 1299 / 1225,
  16448. bottom: 0.04
  16449. }
  16450. },
  16451. back: {
  16452. height: math.unit(6, "feet"),
  16453. weight: math.unit(150, "lb"),
  16454. name: "Back",
  16455. image: {
  16456. source: "./media/characters/veski/back.svg",
  16457. extra: 1299 / 1225,
  16458. bottom: 0.008
  16459. }
  16460. },
  16461. maw: {
  16462. height: math.unit(1.5 * 1.21, "feet"),
  16463. name: "Maw",
  16464. image: {
  16465. source: "./media/characters/veski/maw.svg"
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Macro",
  16472. height: math.unit(2, "km"),
  16473. default: true
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16479. {
  16480. front: {
  16481. height: math.unit(5 + 7 / 12, "feet"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/isabelle/front.svg",
  16485. extra: 2130 / 1976,
  16486. bottom: 0.05
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Supermicro",
  16493. height: math.unit(10, "micrometers")
  16494. },
  16495. {
  16496. name: "Micro",
  16497. height: math.unit(1, "inch")
  16498. },
  16499. {
  16500. name: "Tiny",
  16501. height: math.unit(5, "inches")
  16502. },
  16503. {
  16504. name: "Standard",
  16505. height: math.unit(5 + 7 / 12, "inches")
  16506. },
  16507. {
  16508. name: "Macro",
  16509. height: math.unit(80, "meters"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Megamacro",
  16514. height: math.unit(250, "meters")
  16515. },
  16516. {
  16517. name: "Gigamacro",
  16518. height: math.unit(5, "km")
  16519. },
  16520. {
  16521. name: "Cosmic",
  16522. height: math.unit(2.5e6, "miles")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/hanzo/front.svg",
  16535. extra: 374 / 344,
  16536. bottom: 0.02
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(8, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(7, "feet"),
  16553. weight: math.unit(130, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/anna/front.svg",
  16557. extra: 169 / 145,
  16558. bottom: 0.06
  16559. }
  16560. },
  16561. full: {
  16562. height: math.unit(4.96, "feet"),
  16563. weight: math.unit(220, "lb"),
  16564. name: "Full",
  16565. image: {
  16566. source: "./media/characters/anna/full.svg",
  16567. extra: 138 / 114,
  16568. bottom: 0.15
  16569. }
  16570. },
  16571. tongue: {
  16572. height: math.unit(2.53, "feet"),
  16573. name: "Tongue",
  16574. image: {
  16575. source: "./media/characters/anna/tongue.svg"
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(7, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(7, "feet"),
  16592. weight: math.unit(150, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/ian-corvid/front.svg",
  16596. extra: 150 / 142,
  16597. bottom: 0.02
  16598. }
  16599. },
  16600. back: {
  16601. height: math.unit(7, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Back",
  16604. image: {
  16605. source: "./media/characters/ian-corvid/back.svg",
  16606. extra: 150 / 143,
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. stomping: {
  16611. height: math.unit(7, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Stomping",
  16614. image: {
  16615. source: "./media/characters/ian-corvid/stomping.svg",
  16616. extra: 76 / 72
  16617. }
  16618. },
  16619. sitting: {
  16620. height: math.unit(7 / 1.8, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Sitting",
  16623. image: {
  16624. source: "./media/characters/ian-corvid/sitting.svg",
  16625. extra: 1400 / 1269,
  16626. bottom: 0.15
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Tiny Microw",
  16633. height: math.unit(1, "inch")
  16634. },
  16635. {
  16636. name: "Microw",
  16637. height: math.unit(6, "inches")
  16638. },
  16639. {
  16640. name: "Crow",
  16641. height: math.unit(7 + 1 / 12, "feet"),
  16642. default: true
  16643. },
  16644. {
  16645. name: "Macrow",
  16646. height: math.unit(176, "feet")
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(5 + 7 / 12, "feet"),
  16655. weight: math.unit(147, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/natalie-kellon/front.svg",
  16659. extra: 1214 / 1141,
  16660. bottom: 0.02
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Micro",
  16667. height: math.unit(1 / 16, "inch")
  16668. },
  16669. {
  16670. name: "Tiny",
  16671. height: math.unit(4, "inches")
  16672. },
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(5 + 7 / 12, "feet"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "Amazon",
  16680. height: math.unit(12, "feet")
  16681. },
  16682. {
  16683. name: "Giantess",
  16684. height: math.unit(160, "meters")
  16685. },
  16686. {
  16687. name: "Titaness",
  16688. height: math.unit(800, "meters")
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(6, "feet"),
  16697. weight: math.unit(150, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/alluria/front.svg",
  16701. extra: 806 / 738,
  16702. bottom: 0.01
  16703. }
  16704. },
  16705. side: {
  16706. height: math.unit(6, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Side",
  16709. image: {
  16710. source: "./media/characters/alluria/side.svg",
  16711. extra: 800 / 750,
  16712. }
  16713. },
  16714. back: {
  16715. height: math.unit(6, "feet"),
  16716. weight: math.unit(150, "lb"),
  16717. name: "Back",
  16718. image: {
  16719. source: "./media/characters/alluria/back.svg",
  16720. extra: 806 / 738,
  16721. }
  16722. },
  16723. frontMaid: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(150, "lb"),
  16726. name: "Front (Maid)",
  16727. image: {
  16728. source: "./media/characters/alluria/front-maid.svg",
  16729. extra: 806 / 738,
  16730. bottom: 0.01
  16731. }
  16732. },
  16733. sideMaid: {
  16734. height: math.unit(6, "feet"),
  16735. weight: math.unit(150, "lb"),
  16736. name: "Side (Maid)",
  16737. image: {
  16738. source: "./media/characters/alluria/side-maid.svg",
  16739. extra: 800 / 750,
  16740. bottom: 0.005
  16741. }
  16742. },
  16743. backMaid: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Back (Maid)",
  16747. image: {
  16748. source: "./media/characters/alluria/back-maid.svg",
  16749. extra: 806 / 738,
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Micro",
  16756. height: math.unit(6, "inches"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(150, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/kyle/front.svg",
  16770. extra: 1069 / 962,
  16771. bottom: 77.228 / 1727.45
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Macro",
  16778. height: math.unit(150, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(300, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/duncan/front.svg",
  16792. extra: 1650 / 1482,
  16793. bottom: 0.05
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Macro",
  16800. height: math.unit(100, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(5 + 4 / 12, "feet"),
  16810. weight: math.unit(220, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/memory/front.svg",
  16814. extra: 3641 / 3545,
  16815. bottom: 0.03
  16816. }
  16817. },
  16818. back: {
  16819. height: math.unit(5 + 4 / 12, "feet"),
  16820. weight: math.unit(220, "lb"),
  16821. name: "Back",
  16822. image: {
  16823. source: "./media/characters/memory/back.svg",
  16824. extra: 3641 / 3545,
  16825. bottom: 0.025
  16826. }
  16827. },
  16828. frontSkirt: {
  16829. height: math.unit(5 + 4 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Front (Skirt)",
  16832. image: {
  16833. source: "./media/characters/memory/front-skirt.svg",
  16834. extra: 3641 / 3545,
  16835. bottom: 0.03
  16836. }
  16837. },
  16838. frontDress: {
  16839. height: math.unit(5 + 4 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Front (Dress)",
  16842. image: {
  16843. source: "./media/characters/memory/front-dress.svg",
  16844. extra: 3641 / 3545,
  16845. bottom: 0.03
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Micro",
  16852. height: math.unit(6, "inches"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(5 + 4 / 12, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(4 + 11 / 12, "feet"),
  16866. weight: math.unit(100, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/luno/front.svg",
  16870. extra: 1535 / 1487,
  16871. bottom: 0.03
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Micro",
  16878. height: math.unit(3, "inches")
  16879. },
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(4 + 11 / 12, "feet"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Macro",
  16887. height: math.unit(300, "feet")
  16888. },
  16889. {
  16890. name: "Megamacro",
  16891. height: math.unit(700, "miles")
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(6 + 2 / 12, "feet"),
  16900. weight: math.unit(170, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/jamesy/front.svg",
  16904. extra: 440 / 382,
  16905. bottom: 0.005
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Micro",
  16912. height: math.unit(3, "inches")
  16913. },
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(6 + 2 / 12, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Macro",
  16921. height: math.unit(300, "feet")
  16922. },
  16923. {
  16924. name: "Megamacro",
  16925. height: math.unit(700, "miles")
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16931. {
  16932. front: {
  16933. height: math.unit(6, "feet"),
  16934. weight: math.unit(160, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/mark/front.svg",
  16938. extra: 3300 / 3100,
  16939. bottom: 136.42 / 3440.47
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Macro",
  16946. height: math.unit(120, "meters")
  16947. },
  16948. {
  16949. name: "Bigger Macro",
  16950. height: math.unit(350, "meters")
  16951. },
  16952. {
  16953. name: "Megamacro",
  16954. height: math.unit(8, "km"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Continental",
  16959. height: math.unit(4550, "km")
  16960. },
  16961. {
  16962. name: "Planetary",
  16963. height: math.unit(65000, "km")
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(400, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/mac/front.svg",
  16976. extra: 1048 / 987.7,
  16977. bottom: 60 / 1107.6,
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(500, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(5 + 2 / 12, "feet"),
  16994. weight: math.unit(190, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/bari/front.svg",
  16998. extra: 3156 / 2880,
  16999. bottom: 0.03
  17000. }
  17001. },
  17002. back: {
  17003. height: math.unit(5 + 2 / 12, "feet"),
  17004. weight: math.unit(190, "lb"),
  17005. name: "Back",
  17006. image: {
  17007. source: "./media/characters/bari/back.svg",
  17008. extra: 3260 / 2834,
  17009. bottom: 0.025
  17010. }
  17011. },
  17012. frontPlush: {
  17013. height: math.unit(5 + 2 / 12, "feet"),
  17014. weight: math.unit(190, "lb"),
  17015. name: "Front (Plush)",
  17016. image: {
  17017. source: "./media/characters/bari/front-plush.svg",
  17018. extra: 1112 / 1061,
  17019. bottom: 0.002
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Micro",
  17026. height: math.unit(3, "inches")
  17027. },
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(5 + 2 / 12, "feet"),
  17031. default: true
  17032. },
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(20, "feet")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6 + 1 / 12, "feet"),
  17044. weight: math.unit(275, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/hunter-misha-raven/front.svg"
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Mortal",
  17054. height: math.unit(6 + 1 / 12, "feet")
  17055. },
  17056. {
  17057. name: "Divine",
  17058. height: math.unit(1.12134e34, "parsecs"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(6 + 3 / 12, "feet"),
  17068. weight: math.unit(220, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/max-calore/front.svg",
  17072. extra: 1700 / 1648,
  17073. bottom: 0.01
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(6 + 3 / 12, "feet"),
  17078. weight: math.unit(220, "lb"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/max-calore/back.svg",
  17082. extra: 1700 / 1648,
  17083. bottom: 0.01
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(6 + 3 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17097. {
  17098. side: {
  17099. height: math.unit(2 + 8 / 12, "feet"),
  17100. weight: math.unit(99, "lb"),
  17101. name: "Side",
  17102. image: {
  17103. source: "./media/characters/aspen/side.svg",
  17104. extra: 152 / 138,
  17105. bottom: 0.032
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(2 + 8 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17119. {
  17120. side: {
  17121. height: math.unit(3 + 2 / 12, "feet"),
  17122. weight: math.unit(224, "lb"),
  17123. name: "Side",
  17124. image: {
  17125. source: "./media/characters/sheila-feral-wolf/side.svg",
  17126. extra: 179 / 166,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(3 + 2 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17141. {
  17142. side: {
  17143. height: math.unit(1 + 9 / 12, "feet"),
  17144. weight: math.unit(38, "lb"),
  17145. name: "Side",
  17146. image: {
  17147. source: "./media/characters/michelle/side.svg",
  17148. extra: 147 / 136.7,
  17149. bottom: 0.03
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(1 + 9 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(1 + 1 / 12, "feet"),
  17166. weight: math.unit(18, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/nino/front.svg"
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(1 + 1 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(1, "feet"),
  17186. weight: math.unit(16, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/viola/front.svg"
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(1, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6 + 5 / 12, "feet"),
  17206. weight: math.unit(580, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/atlas/front.svg",
  17210. extra: 298.5 / 290,
  17211. bottom: 0.015
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(6 + 5 / 12, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17225. {
  17226. side: {
  17227. height: math.unit(1 + 10 / 12, "feet"),
  17228. weight: math.unit(25, "lb"),
  17229. name: "Side",
  17230. image: {
  17231. source: "./media/characters/davy/side.svg",
  17232. extra: 200 / 170,
  17233. bottom: 0.01
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(1 + 10 / 12, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17247. {
  17248. side: {
  17249. height: math.unit(4 + 8 / 12, "feet"),
  17250. weight: math.unit(166, "lb"),
  17251. name: "Side",
  17252. image: {
  17253. source: "./media/characters/fiona/side.svg",
  17254. extra: 232 / 220,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(4 + 8 / 12, "feet"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17269. {
  17270. front: {
  17271. height: math.unit(2, "feet"),
  17272. weight: math.unit(62, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/lyla/front.svg",
  17276. bottom: 0.1
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(2, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17290. {
  17291. side: {
  17292. height: math.unit(1.8, "feet"),
  17293. weight: math.unit(44, "lb"),
  17294. name: "Side",
  17295. image: {
  17296. source: "./media/characters/perseus/side.svg",
  17297. bottom: 0.21
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(1.8, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17311. {
  17312. side: {
  17313. height: math.unit(4 + 2 / 12, "feet"),
  17314. weight: math.unit(20, "lb"),
  17315. name: "Side",
  17316. image: {
  17317. source: "./media/characters/remus/side.svg"
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(4 + 2 / 12, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(4 + 11 / 12, "feet"),
  17334. weight: math.unit(114, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/raf/front.svg",
  17338. extra: 1504/1339,
  17339. bottom: 26/1530
  17340. }
  17341. },
  17342. side: {
  17343. height: math.unit(4 + 11 / 12, "feet"),
  17344. weight: math.unit(114, "lb"),
  17345. name: "Side",
  17346. image: {
  17347. source: "./media/characters/raf/side.svg",
  17348. extra: 1466/1316,
  17349. bottom: 29/1495
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Micro",
  17356. height: math.unit(2, "inches")
  17357. },
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(4 + 11 / 12, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Macro",
  17365. height: math.unit(70, "feet")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(1.5, "meters"),
  17374. weight: math.unit(68, "kg"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/liam-einarr/front.svg",
  17378. extra: 2822 / 2666
  17379. }
  17380. },
  17381. back: {
  17382. height: math.unit(1.5, "meters"),
  17383. weight: math.unit(68, "kg"),
  17384. name: "Back",
  17385. image: {
  17386. source: "./media/characters/liam-einarr/back.svg",
  17387. extra: 2822 / 2666,
  17388. bottom: 0.015
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(1.5, "meters"),
  17396. default: true
  17397. },
  17398. {
  17399. name: "Macro",
  17400. height: math.unit(150, "meters")
  17401. },
  17402. {
  17403. name: "Megamacro",
  17404. height: math.unit(35, "km")
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(6, "feet"),
  17413. weight: math.unit(75, "kg"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/linda/front.svg",
  17417. extra: 930 / 874,
  17418. bottom: 0.004
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(6, "feet"),
  17426. default: true
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(6 + 8 / 12, "feet"),
  17435. weight: math.unit(220, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/caylex/front.svg",
  17439. extra: 821 / 772,
  17440. bottom: 0.07
  17441. }
  17442. },
  17443. back: {
  17444. height: math.unit(6 + 8 / 12, "feet"),
  17445. weight: math.unit(220, "lb"),
  17446. name: "Back",
  17447. image: {
  17448. source: "./media/characters/caylex/back.svg",
  17449. extra: 821 / 772,
  17450. bottom: 0.022
  17451. }
  17452. },
  17453. hand: {
  17454. height: math.unit(1.25, "feet"),
  17455. name: "Hand",
  17456. image: {
  17457. source: "./media/characters/caylex/hand.svg"
  17458. }
  17459. },
  17460. foot: {
  17461. height: math.unit(1.6, "feet"),
  17462. name: "Foot",
  17463. image: {
  17464. source: "./media/characters/caylex/foot.svg"
  17465. }
  17466. },
  17467. armored: {
  17468. height: math.unit(6 + 8 / 12, "feet"),
  17469. weight: math.unit(250, "lb"),
  17470. name: "Armored",
  17471. image: {
  17472. source: "./media/characters/caylex/armored.svg",
  17473. extra: 1420 / 1310,
  17474. bottom: 0.045
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(6 + 8 / 12, "feet"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Normal+",
  17486. height: math.unit(12, "feet")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(7 + 6 / 12, "feet"),
  17495. weight: math.unit(288, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/alana/front.svg",
  17499. extra: 679 / 653,
  17500. bottom: 22.5 / 701
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(7 + 6 / 12, "feet")
  17508. },
  17509. {
  17510. name: "Large",
  17511. height: math.unit(50, "feet")
  17512. },
  17513. {
  17514. name: "Macro",
  17515. height: math.unit(100, "feet"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Macro+",
  17520. height: math.unit(200, "feet")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17526. {
  17527. front: {
  17528. height: math.unit(6 + 1 / 12, "feet"),
  17529. weight: math.unit(210, "lb"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/hasani/front.svg",
  17533. extra: 244 / 232,
  17534. bottom: 0.01
  17535. }
  17536. },
  17537. back: {
  17538. height: math.unit(6 + 1 / 12, "feet"),
  17539. weight: math.unit(210, "lb"),
  17540. name: "Back",
  17541. image: {
  17542. source: "./media/characters/hasani/back.svg",
  17543. extra: 244 / 232,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(6 + 1 / 12, "feet")
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(175, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(1.82, "meters"),
  17565. weight: math.unit(140, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/nita/front.svg",
  17569. extra: 2473 / 2363,
  17570. bottom: 0.01
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(1.82, "m")
  17578. },
  17579. {
  17580. name: "Macro",
  17581. height: math.unit(300, "m")
  17582. },
  17583. {
  17584. name: "Mistake Canon",
  17585. height: math.unit(0.5, "miles"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Big Mistake",
  17590. height: math.unit(13, "miles")
  17591. },
  17592. {
  17593. name: "Playing God",
  17594. height: math.unit(2450, "miles")
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(4, "feet"),
  17603. weight: math.unit(120, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/shiriko/front.svg",
  17607. extra: 970/934,
  17608. bottom: 5/975
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(4, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(6, "feet"),
  17625. name: "front",
  17626. image: {
  17627. source: "./media/characters/deja/front.svg",
  17628. extra: 926 / 840,
  17629. bottom: 0.07
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Planck Length",
  17636. height: math.unit(1.6e-35, "meters")
  17637. },
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(30.48, "meters"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Universal",
  17645. height: math.unit(8.8e26, "meters")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17651. {
  17652. side: {
  17653. height: math.unit(8, "feet"),
  17654. weight: math.unit(6300, "lb"),
  17655. name: "Side",
  17656. image: {
  17657. source: "./media/characters/anima/side.svg",
  17658. bottom: 0.035
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(8, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(8, "feet"),
  17675. weight: math.unit(350, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/bianca/front.svg",
  17679. extra: 234 / 225,
  17680. bottom: 0.03
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(8, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(6, "feet"),
  17697. weight: math.unit(150, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/adinia/front.svg",
  17701. extra: 1845 / 1672,
  17702. bottom: 0.02
  17703. }
  17704. },
  17705. back: {
  17706. height: math.unit(6, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Back",
  17709. image: {
  17710. source: "./media/characters/adinia/back.svg",
  17711. extra: 1845 / 1672,
  17712. bottom: 0.002
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(11 + 5 / 12, "feet"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(3, "meters"),
  17729. weight: math.unit(200, "kg"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/lykasa/front.svg",
  17733. extra: 1076 / 976,
  17734. bottom: 0.06
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(3, "meters")
  17742. },
  17743. {
  17744. name: "Kaiju",
  17745. height: math.unit(120, "meters"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Mega Kaiju",
  17750. height: math.unit(240, "km")
  17751. },
  17752. {
  17753. name: "Giga Kaiju",
  17754. height: math.unit(400, "megameters")
  17755. },
  17756. {
  17757. name: "Tera Kaiju",
  17758. height: math.unit(800, "gigameters")
  17759. },
  17760. {
  17761. name: "Kaiju Dragon Goddess",
  17762. height: math.unit(26, "zettaparsecs")
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17768. {
  17769. side: {
  17770. height: math.unit(283 / 124 * 6, "feet"),
  17771. weight: math.unit(35000, "lb"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/malfaren/side.svg",
  17775. extra: 2500 / 1010,
  17776. bottom: 0.01
  17777. }
  17778. },
  17779. front: {
  17780. height: math.unit(22.36, "feet"),
  17781. weight: math.unit(35000, "lb"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/malfaren/front.svg",
  17785. extra: 1631 / 1476,
  17786. bottom: 0.01
  17787. }
  17788. },
  17789. maw: {
  17790. height: math.unit(6.9, "feet"),
  17791. name: "Maw",
  17792. image: {
  17793. source: "./media/characters/malfaren/maw.svg"
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Big",
  17800. height: math.unit(283 / 162 * 6, "feet"),
  17801. },
  17802. {
  17803. name: "Bigger",
  17804. height: math.unit(283 / 124 * 6, "feet")
  17805. },
  17806. {
  17807. name: "Massive",
  17808. height: math.unit(283 / 92 * 6, "feet"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "👀💦",
  17813. height: math.unit(283 / 73 * 6, "feet"),
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(1.7, "m"),
  17822. weight: math.unit(70, "kg"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/kernel/front.svg",
  17826. extra: 222 / 210,
  17827. bottom: 0.007
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Nano",
  17834. height: math.unit(17, "micrometers")
  17835. },
  17836. {
  17837. name: "Micro",
  17838. height: math.unit(1.7, "mm")
  17839. },
  17840. {
  17841. name: "Small",
  17842. height: math.unit(1.7, "cm")
  17843. },
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(1.7, "m"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(1.75, "meters"),
  17856. weight: math.unit(65, "kg"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/jayne-folest/front.svg",
  17860. extra: 2115 / 2007,
  17861. bottom: 0.02
  17862. }
  17863. },
  17864. back: {
  17865. height: math.unit(1.75, "meters"),
  17866. weight: math.unit(65, "kg"),
  17867. name: "Back",
  17868. image: {
  17869. source: "./media/characters/jayne-folest/back.svg",
  17870. extra: 2115 / 2007,
  17871. bottom: 0.005
  17872. }
  17873. },
  17874. frontClothed: {
  17875. height: math.unit(1.75, "meters"),
  17876. weight: math.unit(65, "kg"),
  17877. name: "Front (Clothed)",
  17878. image: {
  17879. source: "./media/characters/jayne-folest/front-clothed.svg",
  17880. extra: 2115 / 2007,
  17881. bottom: 0.035
  17882. }
  17883. },
  17884. hand: {
  17885. height: math.unit(1 / 1.260, "feet"),
  17886. name: "Hand",
  17887. image: {
  17888. source: "./media/characters/jayne-folest/hand.svg"
  17889. }
  17890. },
  17891. foot: {
  17892. height: math.unit(1 / 0.918, "feet"),
  17893. name: "Foot",
  17894. image: {
  17895. source: "./media/characters/jayne-folest/foot.svg"
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(4, "cm")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(1.75, "meters")
  17907. },
  17908. {
  17909. name: "Macro",
  17910. height: math.unit(47.5, "meters"),
  17911. default: true
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(180, "cm"),
  17920. weight: math.unit(70, "kg"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/algier/front.svg",
  17924. extra: 596 / 572,
  17925. bottom: 0.04
  17926. }
  17927. },
  17928. back: {
  17929. height: math.unit(180, "cm"),
  17930. weight: math.unit(70, "kg"),
  17931. name: "Back",
  17932. image: {
  17933. source: "./media/characters/algier/back.svg",
  17934. extra: 596 / 572,
  17935. bottom: 0.025
  17936. }
  17937. },
  17938. frontdressed: {
  17939. height: math.unit(180, "cm"),
  17940. weight: math.unit(150, "kg"),
  17941. name: "Front-dressed",
  17942. image: {
  17943. source: "./media/characters/algier/front-dressed.svg",
  17944. extra: 596 / 572,
  17945. bottom: 0.038
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Micro",
  17952. height: math.unit(5, "cm")
  17953. },
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(180, "cm"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(64, "m")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17967. {
  17968. upright: {
  17969. height: math.unit(7, "feet"),
  17970. weight: math.unit(300, "lb"),
  17971. name: "Upright",
  17972. image: {
  17973. source: "./media/characters/pretzel/upright.svg",
  17974. extra: 534 / 522,
  17975. bottom: 0.065
  17976. }
  17977. },
  17978. sprawling: {
  17979. height: math.unit(3.75, "feet"),
  17980. weight: math.unit(300, "lb"),
  17981. name: "Sprawling",
  17982. image: {
  17983. source: "./media/characters/pretzel/sprawling.svg",
  17984. extra: 314 / 281,
  17985. bottom: 0.1
  17986. }
  17987. },
  17988. tongue: {
  17989. height: math.unit(2, "feet"),
  17990. name: "Tongue",
  17991. image: {
  17992. source: "./media/characters/pretzel/tongue.svg"
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(7, "feet"),
  18000. default: true
  18001. },
  18002. {
  18003. name: "Oversized",
  18004. height: math.unit(15, "feet")
  18005. },
  18006. {
  18007. name: "Huge",
  18008. height: math.unit(30, "feet")
  18009. },
  18010. {
  18011. name: "Macro",
  18012. height: math.unit(250, "feet")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18018. {
  18019. sideFront: {
  18020. height: math.unit(5 + 2 / 12, "feet"),
  18021. weight: math.unit(120, "lb"),
  18022. name: "Front Side",
  18023. image: {
  18024. source: "./media/characters/roxi/side-front.svg",
  18025. extra: 2924 / 2717,
  18026. bottom: 0.08
  18027. }
  18028. },
  18029. sideBack: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(120, "lb"),
  18032. name: "Back Side",
  18033. image: {
  18034. source: "./media/characters/roxi/side-back.svg",
  18035. extra: 2904 / 2693,
  18036. bottom: 0.06
  18037. }
  18038. },
  18039. front: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/roxi/front.svg",
  18045. extra: 2028 / 1907,
  18046. bottom: 0.01
  18047. }
  18048. },
  18049. frontAlt: {
  18050. height: math.unit(5 + 2 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Front (Alt)",
  18053. image: {
  18054. source: "./media/characters/roxi/front-alt.svg",
  18055. extra: 1828 / 1798,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. sitting: {
  18060. height: math.unit(2.8, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Sitting",
  18063. image: {
  18064. source: "./media/characters/roxi/sitting.svg",
  18065. extra: 2660 / 2462,
  18066. bottom: 0.1
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(5 + 2 / 12, "feet"),
  18074. default: true
  18075. },
  18076. ]
  18077. ))
  18078. characterMakers.push(() => makeCharacter(
  18079. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18080. {
  18081. side: {
  18082. height: math.unit(55, "feet"),
  18083. weight: math.unit(153, "tons"),
  18084. name: "Side",
  18085. image: {
  18086. source: "./media/characters/shadow/side.svg",
  18087. extra: 701 / 628,
  18088. bottom: 0.02
  18089. }
  18090. },
  18091. flying: {
  18092. height: math.unit(145, "feet"),
  18093. weight: math.unit(153, "tons"),
  18094. name: "Flying",
  18095. image: {
  18096. source: "./media/characters/shadow/flying.svg"
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(55, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(200, "lb"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/marcie/front.svg",
  18117. extra: 960 / 876,
  18118. bottom: 58 / 1017.87
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Macro",
  18125. height: math.unit(1, "mile"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(7, "feet"),
  18135. weight: math.unit(200, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/kachina/front.svg",
  18139. extra: 1290.68 / 1119,
  18140. bottom: 36.5 / 1327.18
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(7, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18154. {
  18155. looking: {
  18156. height: math.unit(2, "meters"),
  18157. weight: math.unit(300, "kg"),
  18158. name: "Looking",
  18159. image: {
  18160. source: "./media/characters/kash/looking.svg",
  18161. extra: 474 / 344,
  18162. bottom: 0.03
  18163. }
  18164. },
  18165. side: {
  18166. height: math.unit(2, "meters"),
  18167. weight: math.unit(300, "kg"),
  18168. name: "Side",
  18169. image: {
  18170. source: "./media/characters/kash/side.svg",
  18171. extra: 302 / 251,
  18172. bottom: 0.03
  18173. }
  18174. },
  18175. front: {
  18176. height: math.unit(2, "meters"),
  18177. weight: math.unit(300, "kg"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/kash/front.svg",
  18181. extra: 495 / 360,
  18182. bottom: 0.015
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(2, "meters"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Big",
  18194. height: math.unit(3, "meters")
  18195. },
  18196. {
  18197. name: "Large",
  18198. height: math.unit(5, "meters")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18204. {
  18205. feeding: {
  18206. height: math.unit(6.7, "feet"),
  18207. weight: math.unit(350, "lb"),
  18208. name: "Feeding",
  18209. image: {
  18210. source: "./media/characters/lalim/feeding.svg",
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(6.7, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(9.5, "feet"),
  18227. weight: math.unit(600, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/de'vout/front.svg",
  18231. extra: 1443 / 1328,
  18232. bottom: 0.025
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(9.5, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/de'vout/back.svg",
  18241. extra: 1443 / 1328
  18242. }
  18243. },
  18244. frontDressed: {
  18245. height: math.unit(9.5, "feet"),
  18246. weight: math.unit(600, "lb"),
  18247. name: "Front (Dressed",
  18248. image: {
  18249. source: "./media/characters/de'vout/front-dressed.svg",
  18250. extra: 1443 / 1328,
  18251. bottom: 0.025
  18252. }
  18253. },
  18254. backDressed: {
  18255. height: math.unit(9.5, "feet"),
  18256. weight: math.unit(600, "lb"),
  18257. name: "Back (Dressed",
  18258. image: {
  18259. source: "./media/characters/de'vout/back-dressed.svg",
  18260. extra: 1443 / 1328
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(9.5, "feet"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(8, "feet"),
  18277. weight: math.unit(225, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/talana/front.svg",
  18281. extra: 1410 / 1300,
  18282. bottom: 0.015
  18283. }
  18284. },
  18285. frontDressed: {
  18286. height: math.unit(8, "feet"),
  18287. weight: math.unit(225, "lb"),
  18288. name: "Front (Dressed",
  18289. image: {
  18290. source: "./media/characters/talana/front-dressed.svg",
  18291. extra: 1410 / 1300,
  18292. bottom: 0.015
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(8, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18306. {
  18307. side: {
  18308. height: math.unit(7.2, "feet"),
  18309. weight: math.unit(150, "lb"),
  18310. name: "Side",
  18311. image: {
  18312. source: "./media/characters/xeauvok/side.svg",
  18313. extra: 1975 / 1523,
  18314. bottom: 0.07
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(7.2, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18328. {
  18329. side: {
  18330. height: math.unit(10, "feet"),
  18331. weight: math.unit(900, "kg"),
  18332. name: "Side",
  18333. image: {
  18334. source: "./media/characters/zara/side.svg",
  18335. extra: 504 / 498
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(10, "feet"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18349. {
  18350. side: {
  18351. height: math.unit(6, "feet"),
  18352. weight: math.unit(150, "lb"),
  18353. name: "Side",
  18354. image: {
  18355. source: "./media/characters/richard-dragon/side.svg",
  18356. extra: 845 / 340,
  18357. bottom: 0.017
  18358. }
  18359. },
  18360. maw: {
  18361. height: math.unit(2.97, "feet"),
  18362. name: "Maw",
  18363. image: {
  18364. source: "./media/characters/richard-dragon/maw.svg"
  18365. }
  18366. },
  18367. },
  18368. [
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(4, "feet"),
  18376. weight: math.unit(100, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/richard-smeargle/front.svg",
  18380. extra: 2952 / 2820,
  18381. bottom: 0.028
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(4, "feet"),
  18389. default: true
  18390. },
  18391. {
  18392. name: "Dynamax",
  18393. height: math.unit(20, "meters")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(6, "feet"),
  18402. weight: math.unit(110, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/klay/front.svg",
  18406. extra: 962 / 883,
  18407. bottom: 0.04
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(6, "feet"),
  18412. weight: math.unit(110, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/klay/back.svg",
  18416. extra: 962 / 883
  18417. }
  18418. },
  18419. beans: {
  18420. height: math.unit(1.15, "feet"),
  18421. name: "Beans",
  18422. image: {
  18423. source: "./media/characters/klay/beans.svg"
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Micro",
  18430. height: math.unit(6, "inches")
  18431. },
  18432. {
  18433. name: "Mini",
  18434. height: math.unit(3, "feet")
  18435. },
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(6, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Big",
  18443. height: math.unit(25, "feet")
  18444. },
  18445. {
  18446. name: "Macro",
  18447. height: math.unit(100, "feet")
  18448. },
  18449. {
  18450. name: "Megamacro",
  18451. height: math.unit(400, "feet")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6, "feet"),
  18460. weight: math.unit(160, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/marcus/front.svg",
  18464. extra: 734 / 676,
  18465. bottom: 0.03
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Little",
  18472. height: math.unit(6, "feet")
  18473. },
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(110, "feet"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(250, "feet")
  18482. },
  18483. {
  18484. name: "Megamacro",
  18485. height: math.unit(1000, "feet")
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18491. {
  18492. front: {
  18493. height: math.unit(7, "feet"),
  18494. weight: math.unit(275, "lb"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/claude-delroute/front.svg",
  18498. extra: 230 / 214,
  18499. bottom: 0.007
  18500. }
  18501. },
  18502. side: {
  18503. height: math.unit(7, "feet"),
  18504. weight: math.unit(275, "lb"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/claude-delroute/side.svg",
  18508. extra: 222 / 214,
  18509. bottom: 0.01
  18510. }
  18511. },
  18512. back: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(275, "lb"),
  18515. name: "Back",
  18516. image: {
  18517. source: "./media/characters/claude-delroute/back.svg",
  18518. extra: 230 / 214,
  18519. bottom: 0.015
  18520. }
  18521. },
  18522. maw: {
  18523. height: math.unit(0.6407, "meters"),
  18524. name: "Maw",
  18525. image: {
  18526. source: "./media/characters/claude-delroute/maw.svg"
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(7, "feet"),
  18534. default: true
  18535. },
  18536. {
  18537. name: "Lorge",
  18538. height: math.unit(20, "feet")
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(8 + 4 / 12, "feet"),
  18547. weight: math.unit(600, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/dragonien/front.svg",
  18551. extra: 100 / 94,
  18552. bottom: 3.3 / 103.3445
  18553. }
  18554. },
  18555. back: {
  18556. height: math.unit(8 + 4 / 12, "feet"),
  18557. weight: math.unit(600, "lb"),
  18558. name: "Back",
  18559. image: {
  18560. source: "./media/characters/dragonien/back.svg",
  18561. extra: 776 / 746,
  18562. bottom: 6.4 / 782.0616
  18563. }
  18564. },
  18565. foot: {
  18566. height: math.unit(1.54, "feet"),
  18567. name: "Foot",
  18568. image: {
  18569. source: "./media/characters/dragonien/foot.svg",
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(8 + 4 / 12, "feet"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(200, "feet")
  18582. },
  18583. {
  18584. name: "Megamacro",
  18585. height: math.unit(1, "mile")
  18586. },
  18587. {
  18588. name: "Gigamacro",
  18589. height: math.unit(1000, "miles")
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18595. {
  18596. front: {
  18597. height: math.unit(5 + 2 / 12, "feet"),
  18598. weight: math.unit(110, "lb"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/desta/front.svg",
  18602. extra: 767 / 726,
  18603. bottom: 11.7 / 779
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(5 + 2 / 12, "feet"),
  18608. weight: math.unit(110, "lb"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/desta/back.svg",
  18612. extra: 777 / 728,
  18613. bottom: 6 / 784
  18614. }
  18615. },
  18616. frontAlt: {
  18617. height: math.unit(5 + 2 / 12, "feet"),
  18618. weight: math.unit(110, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/desta/front-alt.svg",
  18622. extra: 1482 / 1417
  18623. }
  18624. },
  18625. side: {
  18626. height: math.unit(5 + 2 / 12, "feet"),
  18627. weight: math.unit(110, "lb"),
  18628. name: "Side",
  18629. image: {
  18630. source: "./media/characters/desta/side.svg",
  18631. extra: 2579 / 2491,
  18632. bottom: 0.053
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Micro",
  18639. height: math.unit(6, "inches")
  18640. },
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(5 + 2 / 12, "feet"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Macro",
  18648. height: math.unit(62, "feet")
  18649. },
  18650. {
  18651. name: "Megamacro",
  18652. height: math.unit(1800, "feet")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(10, "feet"),
  18661. weight: math.unit(700, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/storm-alystar/front.svg",
  18665. extra: 2112 / 1898,
  18666. bottom: 0.034
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Micro",
  18673. height: math.unit(3.5, "inches")
  18674. },
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(10, "feet"),
  18678. default: true
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(400, "feet")
  18683. },
  18684. {
  18685. name: "Deific",
  18686. height: math.unit(60, "miles")
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(2.35, "meters"),
  18695. weight: math.unit(119, "kg"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/ilia/front.svg",
  18699. extra: 1285 / 1255,
  18700. bottom: 0.06
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(2.35, "meters")
  18708. },
  18709. {
  18710. name: "Macro",
  18711. height: math.unit(140, "meters"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(100, "miles")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6 + 5 / 12, "feet"),
  18725. weight: math.unit(190, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/kingdead/front.svg",
  18729. extra: 1228 / 1177
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Micro",
  18736. height: math.unit(7, "inches")
  18737. },
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6 + 5 / 12, "feet")
  18741. },
  18742. {
  18743. name: "Macro",
  18744. height: math.unit(150, "feet"),
  18745. default: true
  18746. },
  18747. {
  18748. name: "Megamacro",
  18749. height: math.unit(200, "miles")
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(8, "feet"),
  18758. weight: math.unit(600, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/kyrehx/front.svg",
  18762. extra: 1195 / 1095,
  18763. bottom: 0.034
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Micro",
  18770. height: math.unit(2, "inches")
  18771. },
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(8, "feet"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Macro",
  18779. height: math.unit(255, "feet")
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18788. weight: math.unit(184, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/xang/front.svg",
  18792. extra: 845 / 755
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18800. default: true
  18801. },
  18802. {
  18803. name: "Macro",
  18804. height: math.unit(0.935 * 146, "feet")
  18805. },
  18806. {
  18807. name: "Megamacro",
  18808. height: math.unit(0.935 * 3, "miles")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18814. {
  18815. frontDressed: {
  18816. height: math.unit(5 + 7 / 12, "feet"),
  18817. weight: math.unit(140, "lb"),
  18818. name: "Front (Dressed)",
  18819. image: {
  18820. source: "./media/characters/doc-weardno/front-dressed.svg",
  18821. extra: 263 / 234
  18822. }
  18823. },
  18824. backDressed: {
  18825. height: math.unit(5 + 7 / 12, "feet"),
  18826. weight: math.unit(140, "lb"),
  18827. name: "Back (Dressed)",
  18828. image: {
  18829. source: "./media/characters/doc-weardno/back-dressed.svg",
  18830. extra: 266 / 238
  18831. }
  18832. },
  18833. front: {
  18834. height: math.unit(5 + 7 / 12, "feet"),
  18835. weight: math.unit(140, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/doc-weardno/front.svg",
  18839. extra: 254 / 233
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Micro",
  18846. height: math.unit(3, "inches")
  18847. },
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(5 + 7 / 12, "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(25, "feet")
  18856. },
  18857. {
  18858. name: "Megamacro",
  18859. height: math.unit(2, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6 + 2 / 12, "feet"),
  18868. weight: math.unit(153, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/seth-whilst/front.svg",
  18872. bottom: 0.07
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Micro",
  18879. height: math.unit(5, "inches")
  18880. },
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(6 + 2 / 12, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(3, "inches"),
  18893. weight: math.unit(8, "grams"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/pocket-jabari/front.svg",
  18897. extra: 1024 / 974,
  18898. bottom: 0.039
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Minimicro",
  18905. height: math.unit(8, "mm")
  18906. },
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(3, "inches"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(3, "feet")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(15, "feet"),
  18923. weight: math.unit(3280, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/sapphy/front.svg",
  18927. extra: 671 / 577,
  18928. bottom: 0.085
  18929. }
  18930. },
  18931. back: {
  18932. height: math.unit(15, "feet"),
  18933. weight: math.unit(3280, "lb"),
  18934. name: "Back",
  18935. image: {
  18936. source: "./media/characters/sapphy/back.svg",
  18937. extra: 631 / 607,
  18938. bottom: 0.045
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(15, "feet")
  18946. },
  18947. {
  18948. name: "Casual Macro",
  18949. height: math.unit(120, "feet")
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(2150, "feet"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Megamacro",
  18958. height: math.unit(8, "miles")
  18959. },
  18960. {
  18961. name: "Galaxy Mom",
  18962. height: math.unit(6, "megalightyears")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(6, "feet"),
  18971. weight: math.unit(170, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/kiro/front.svg",
  18975. extra: 1064 / 1012,
  18976. bottom: 0.052
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Micro",
  18983. height: math.unit(6, "inches")
  18984. },
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(6, "feet"),
  18988. default: true
  18989. },
  18990. {
  18991. name: "Macro",
  18992. height: math.unit(72, "feet")
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(5 + 9 / 12, "feet"),
  19001. weight: math.unit(175, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/irishfox/front.svg",
  19005. extra: 1912 / 1680,
  19006. bottom: 0.02
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Nano",
  19013. height: math.unit(1, "mm")
  19014. },
  19015. {
  19016. name: "Micro",
  19017. height: math.unit(2, "inches")
  19018. },
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 9 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(45, "feet")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(6 + 1 / 12, "feet"),
  19035. weight: math.unit(75, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/aronai-sieyes/front.svg",
  19039. extra: 1556 / 1480,
  19040. bottom: 0.015
  19041. }
  19042. },
  19043. side: {
  19044. height: math.unit(6 + 1 / 12, "feet"),
  19045. weight: math.unit(75, "lb"),
  19046. name: "Side",
  19047. image: {
  19048. source: "./media/characters/aronai-sieyes/side.svg",
  19049. extra: 1433 / 1390,
  19050. bottom: 0.0393
  19051. }
  19052. },
  19053. back: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(75, "lb"),
  19056. name: "Back",
  19057. image: {
  19058. source: "./media/characters/aronai-sieyes/back.svg",
  19059. extra: 1544 / 1494,
  19060. bottom: 0.02
  19061. }
  19062. },
  19063. frontClothed: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(75, "lb"),
  19066. name: "Front (Clothed)",
  19067. image: {
  19068. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  19069. extra: 1582 / 1527
  19070. }
  19071. },
  19072. feral: {
  19073. height: math.unit(18, "feet"),
  19074. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19075. name: "Feral",
  19076. image: {
  19077. source: "./media/characters/aronai-sieyes/feral.svg",
  19078. extra: 1530 / 1240,
  19079. bottom: 0.035
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Micro",
  19086. height: math.unit(2, "inches")
  19087. },
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(6 + 1 / 12, "feet"),
  19091. default: true
  19092. }
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(12, "feet"),
  19100. weight: math.unit(410, "kg"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/xuna/front.svg",
  19104. extra: 2184 / 1980
  19105. }
  19106. },
  19107. side: {
  19108. height: math.unit(12, "feet"),
  19109. weight: math.unit(410, "kg"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/xuna/side.svg",
  19113. extra: 2184 / 1980
  19114. }
  19115. },
  19116. back: {
  19117. height: math.unit(12, "feet"),
  19118. weight: math.unit(410, "kg"),
  19119. name: "Back",
  19120. image: {
  19121. source: "./media/characters/xuna/back.svg",
  19122. extra: 2184 / 1980
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Nano glow",
  19129. height: math.unit(10, "nm")
  19130. },
  19131. {
  19132. name: "Micro floof",
  19133. height: math.unit(0.3, "m")
  19134. },
  19135. {
  19136. name: "Huggable softy boi",
  19137. height: math.unit(3.6576, "m"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Admirable floof",
  19142. height: math.unit(80, "meters")
  19143. },
  19144. {
  19145. name: "Gentle macro",
  19146. height: math.unit(300, "meters")
  19147. },
  19148. {
  19149. name: "Very careful floof",
  19150. height: math.unit(3200, "meters")
  19151. },
  19152. {
  19153. name: "The mega floof",
  19154. height: math.unit(36000, "meters")
  19155. },
  19156. {
  19157. name: "Giga-fur-Wicker",
  19158. height: math.unit(4800000, "meters")
  19159. },
  19160. {
  19161. name: "Licky world",
  19162. height: math.unit(20000000, "meters")
  19163. },
  19164. {
  19165. name: "Floofy cyan sun",
  19166. height: math.unit(1500000000, "meters")
  19167. },
  19168. {
  19169. name: "Milky Wicker",
  19170. height: math.unit(1000000000000000000000, "meters")
  19171. },
  19172. {
  19173. name: "The observing Wicker",
  19174. height: math.unit(999999999999999999999999999, "meters")
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(5 + 9 / 12, "feet"),
  19183. weight: math.unit(150, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/arokha-sieyes/front.svg",
  19187. extra: 1425 / 1284,
  19188. bottom: 0.05
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(5 + 9 / 12, "feet")
  19196. },
  19197. {
  19198. name: "Macro",
  19199. height: math.unit(30, "meters"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(6, "feet"),
  19209. weight: math.unit(180, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/arokh-sieyes/front.svg",
  19213. extra: 1830 / 1769,
  19214. bottom: 0.01
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6, "feet")
  19222. },
  19223. {
  19224. name: "Macro",
  19225. height: math.unit(30, "meters"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19232. {
  19233. side: {
  19234. height: math.unit(13 + 1 / 12, "feet"),
  19235. weight: math.unit(8.5, "tonnes"),
  19236. name: "Side",
  19237. image: {
  19238. source: "./media/characters/goldeneye/side.svg",
  19239. extra: 1182 / 778,
  19240. bottom: 0.067
  19241. }
  19242. },
  19243. paw: {
  19244. height: math.unit(3.4, "feet"),
  19245. name: "Paw",
  19246. image: {
  19247. source: "./media/characters/goldeneye/paw.svg"
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(13 + 1 / 12, "feet"),
  19255. default: true
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19261. {
  19262. front: {
  19263. height: math.unit(6 + 1 / 12, "feet"),
  19264. weight: math.unit(210, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/leonardo-lycheborne/front.svg",
  19268. extra: 776/723,
  19269. bottom: 34/810
  19270. }
  19271. },
  19272. side: {
  19273. height: math.unit(6 + 1 / 12, "feet"),
  19274. weight: math.unit(210, "lb"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/leonardo-lycheborne/side.svg",
  19278. extra: 780/728,
  19279. bottom: 12/792
  19280. }
  19281. },
  19282. back: {
  19283. height: math.unit(6 + 1 / 12, "feet"),
  19284. weight: math.unit(210, "lb"),
  19285. name: "Back",
  19286. image: {
  19287. source: "./media/characters/leonardo-lycheborne/back.svg",
  19288. extra: 775/721,
  19289. bottom: 17/792
  19290. }
  19291. },
  19292. hand: {
  19293. height: math.unit(1.08, "feet"),
  19294. name: "Hand",
  19295. image: {
  19296. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19297. }
  19298. },
  19299. foot: {
  19300. height: math.unit(1.32, "feet"),
  19301. name: "Foot",
  19302. image: {
  19303. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19304. }
  19305. },
  19306. maw: {
  19307. height: math.unit(1, "feet"),
  19308. name: "Maw",
  19309. image: {
  19310. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19311. }
  19312. },
  19313. were: {
  19314. height: math.unit(20, "feet"),
  19315. weight: math.unit(7800, "lb"),
  19316. name: "Were",
  19317. image: {
  19318. source: "./media/characters/leonardo-lycheborne/were.svg",
  19319. extra: 1224/1165,
  19320. bottom: 72/1296
  19321. }
  19322. },
  19323. feral: {
  19324. height: math.unit(7.5, "feet"),
  19325. weight: math.unit(600, "lb"),
  19326. name: "Feral",
  19327. image: {
  19328. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19329. extra: 797/702,
  19330. bottom: 139/936
  19331. }
  19332. },
  19333. taur: {
  19334. height: math.unit(11, "feet"),
  19335. weight: math.unit(3300, "lb"),
  19336. name: "Taur",
  19337. image: {
  19338. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19339. extra: 1271/1197,
  19340. bottom: 47/1318
  19341. }
  19342. },
  19343. barghest: {
  19344. height: math.unit(11, "feet"),
  19345. weight: math.unit(1300, "lb"),
  19346. name: "Barghest",
  19347. image: {
  19348. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19349. extra: 1291/1204,
  19350. bottom: 37/1328
  19351. }
  19352. },
  19353. dick: {
  19354. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19355. name: "Dick",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19358. }
  19359. },
  19360. dickWere: {
  19361. height: math.unit((20) / 3.8, "feet"),
  19362. name: "Dick (Were)",
  19363. image: {
  19364. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(6 + 1 / 12, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(10, "feet"),
  19381. weight: math.unit(350, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/jet/front.svg",
  19385. extra: 2050 / 1980,
  19386. bottom: 0.013
  19387. }
  19388. },
  19389. back: {
  19390. height: math.unit(10, "feet"),
  19391. weight: math.unit(350, "lb"),
  19392. name: "Back",
  19393. image: {
  19394. source: "./media/characters/jet/back.svg",
  19395. extra: 2050 / 1980,
  19396. bottom: 0.013
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Micro",
  19403. height: math.unit(6, "inches")
  19404. },
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(10, "feet"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(100, "feet")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(15, "feet"),
  19421. weight: math.unit(2800, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/tanarath/front.svg",
  19425. extra: 2392 / 2220,
  19426. bottom: 0.03
  19427. }
  19428. },
  19429. back: {
  19430. height: math.unit(15, "feet"),
  19431. weight: math.unit(2800, "lb"),
  19432. name: "Back",
  19433. image: {
  19434. source: "./media/characters/tanarath/back.svg",
  19435. extra: 2392 / 2220,
  19436. bottom: 0.03
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(15, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(7 + 1 / 12, "feet"),
  19453. weight: math.unit(175, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/patty-cattybatty/front.svg",
  19457. extra: 908 / 874,
  19458. bottom: 0.025
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Micro",
  19465. height: math.unit(1, "inch")
  19466. },
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(7 + 1 / 12, "feet")
  19470. },
  19471. {
  19472. name: "Mini Macro",
  19473. height: math.unit(155, "feet")
  19474. },
  19475. {
  19476. name: "Macro",
  19477. height: math.unit(1077, "feet")
  19478. },
  19479. {
  19480. name: "Mega Macro",
  19481. height: math.unit(47650, "feet"),
  19482. default: true
  19483. },
  19484. {
  19485. name: "Giga Macro",
  19486. height: math.unit(440, "miles")
  19487. },
  19488. {
  19489. name: "Tera Macro",
  19490. height: math.unit(8700, "miles")
  19491. },
  19492. {
  19493. name: "Planetary Macro",
  19494. height: math.unit(32700, "miles")
  19495. },
  19496. {
  19497. name: "Solar Macro",
  19498. height: math.unit(550000, "miles")
  19499. },
  19500. {
  19501. name: "Celestial Macro",
  19502. height: math.unit(2.5, "AU")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(4 + 5 / 12, "feet"),
  19511. weight: math.unit(90, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/cappu/front.svg",
  19515. extra: 1247 / 1152,
  19516. bottom: 0.012
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(4 + 5 / 12, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19530. {
  19531. frontDressed: {
  19532. height: math.unit(70, "cm"),
  19533. weight: math.unit(6, "kg"),
  19534. name: "Front (Dressed)",
  19535. image: {
  19536. source: "./media/characters/sebi/front-dressed.svg",
  19537. extra: 713.5 / 686.5,
  19538. bottom: 0.003
  19539. }
  19540. },
  19541. front: {
  19542. height: math.unit(70, "cm"),
  19543. weight: math.unit(5, "kg"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/sebi/front.svg",
  19547. extra: 713.5 / 686.5,
  19548. bottom: 0.003
  19549. }
  19550. }
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(70, "cm"),
  19556. default: true
  19557. },
  19558. {
  19559. name: "Macro",
  19560. height: math.unit(8, "meters")
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(6, "feet"),
  19569. weight: math.unit(150, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/typhek/front.svg",
  19573. extra: 1948 / 1929,
  19574. bottom: 0.025
  19575. }
  19576. },
  19577. side: {
  19578. height: math.unit(6, "feet"),
  19579. weight: math.unit(150, "lb"),
  19580. name: "Side",
  19581. image: {
  19582. source: "./media/characters/typhek/side.svg",
  19583. extra: 2034 / 2010,
  19584. bottom: 0.003
  19585. }
  19586. },
  19587. back: {
  19588. height: math.unit(6, "feet"),
  19589. weight: math.unit(150, "lb"),
  19590. name: "Back",
  19591. image: {
  19592. source: "./media/characters/typhek/back.svg",
  19593. extra: 2005 / 1978,
  19594. bottom: 0.004
  19595. }
  19596. },
  19597. palm: {
  19598. height: math.unit(1.2, "feet"),
  19599. name: "Palm",
  19600. image: {
  19601. source: "./media/characters/typhek/palm.svg"
  19602. }
  19603. },
  19604. fist: {
  19605. height: math.unit(1.1, "feet"),
  19606. name: "Fist",
  19607. image: {
  19608. source: "./media/characters/typhek/fist.svg"
  19609. }
  19610. },
  19611. foot: {
  19612. height: math.unit(1.57, "feet"),
  19613. name: "Foot",
  19614. image: {
  19615. source: "./media/characters/typhek/foot.svg"
  19616. }
  19617. },
  19618. sole: {
  19619. height: math.unit(2.05, "feet"),
  19620. name: "Sole",
  19621. image: {
  19622. source: "./media/characters/typhek/sole.svg"
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Macro",
  19629. height: math.unit(40, "stories"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Megamacro",
  19634. height: math.unit(1, "mile")
  19635. },
  19636. {
  19637. name: "Gigamacro",
  19638. height: math.unit(4000, "solarradii")
  19639. },
  19640. {
  19641. name: "Universal",
  19642. height: math.unit(1.1, "universes")
  19643. }
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19648. {
  19649. side: {
  19650. height: math.unit(5 + 7 / 12, "feet"),
  19651. weight: math.unit(150, "lb"),
  19652. name: "Side",
  19653. image: {
  19654. source: "./media/characters/kassy/side.svg",
  19655. extra: 1280 / 1225,
  19656. bottom: 0.002
  19657. }
  19658. },
  19659. front: {
  19660. height: math.unit(5 + 7 / 12, "feet"),
  19661. weight: math.unit(150, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/kassy/front.svg",
  19665. extra: 1280 / 1225,
  19666. bottom: 0.025
  19667. }
  19668. },
  19669. back: {
  19670. height: math.unit(5 + 7 / 12, "feet"),
  19671. weight: math.unit(150, "lb"),
  19672. name: "Back",
  19673. image: {
  19674. source: "./media/characters/kassy/back.svg",
  19675. extra: 1280 / 1225,
  19676. bottom: 0.002
  19677. }
  19678. },
  19679. foot: {
  19680. height: math.unit(1.266, "feet"),
  19681. name: "Foot",
  19682. image: {
  19683. source: "./media/characters/kassy/foot.svg"
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(5 + 7 / 12, "feet")
  19691. },
  19692. {
  19693. name: "Macro",
  19694. height: math.unit(137, "feet"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Megamacro",
  19699. height: math.unit(1, "mile")
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(6 + 1 / 12, "feet"),
  19708. weight: math.unit(200, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/neil/front.svg",
  19712. extra: 1326 / 1250,
  19713. bottom: 0.023
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(6 + 1 / 12, "feet"),
  19721. default: true
  19722. },
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(200, "feet")
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(5 + 9 / 12, "feet"),
  19734. weight: math.unit(190, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/atticus/front.svg",
  19738. extra: 2934 / 2785,
  19739. bottom: 0.025
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(5 + 9 / 12, "feet"),
  19747. default: true
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(180, "feet")
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19757. {
  19758. side: {
  19759. height: math.unit(9, "feet"),
  19760. weight: math.unit(650, "lb"),
  19761. name: "Side",
  19762. image: {
  19763. source: "./media/characters/milo/side.svg",
  19764. extra: 2644 / 2310,
  19765. bottom: 0.032
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(9, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(300, "feet")
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19783. {
  19784. side: {
  19785. height: math.unit(8, "meters"),
  19786. weight: math.unit(90000, "kg"),
  19787. name: "Side",
  19788. image: {
  19789. source: "./media/characters/ijzer/side.svg",
  19790. extra: 2756 / 1600,
  19791. bottom: 0.01
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Small",
  19798. height: math.unit(3, "meters")
  19799. },
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(8, "meters"),
  19803. default: true
  19804. },
  19805. {
  19806. name: "Normal+",
  19807. height: math.unit(10, "meters")
  19808. },
  19809. {
  19810. name: "Bigger",
  19811. height: math.unit(24, "meters")
  19812. },
  19813. {
  19814. name: "Huge",
  19815. height: math.unit(80, "meters")
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(6 + 2 / 12, "feet"),
  19824. weight: math.unit(153, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/luca-cervicum/front.svg",
  19828. extra: 370 / 327,
  19829. bottom: 0.015
  19830. }
  19831. },
  19832. back: {
  19833. height: math.unit(6 + 2 / 12, "feet"),
  19834. weight: math.unit(153, "lb"),
  19835. name: "Back",
  19836. image: {
  19837. source: "./media/characters/luca-cervicum/back.svg",
  19838. extra: 367 / 333,
  19839. bottom: 0.005
  19840. }
  19841. },
  19842. frontGear: {
  19843. height: math.unit(6 + 2 / 12, "feet"),
  19844. weight: math.unit(173, "lb"),
  19845. name: "Front (Gear)",
  19846. image: {
  19847. source: "./media/characters/luca-cervicum/front-gear.svg",
  19848. extra: 377 / 333,
  19849. bottom: 0.006
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(6 + 2 / 12, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(6 + 1 / 12, "feet"),
  19866. weight: math.unit(304, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/oliver/front.svg",
  19870. extra: 157 / 143,
  19871. bottom: 0.08
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(6 + 1 / 12, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19885. {
  19886. front: {
  19887. height: math.unit(5 + 7 / 12, "feet"),
  19888. weight: math.unit(140, "lb"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/shane/front.svg",
  19892. extra: 304 / 289,
  19893. bottom: 0.005
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(5 + 7 / 12, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(5 + 9 / 12, "feet"),
  19910. weight: math.unit(178, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/shin/front.svg",
  19914. extra: 159 / 151,
  19915. bottom: 0.015
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 9 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(5 + 10 / 12, "feet"),
  19932. weight: math.unit(168, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/xerxes/front.svg",
  19936. extra: 282 / 260,
  19937. bottom: 0.045
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(5 + 10 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(6 + 7 / 12, "feet"),
  19954. weight: math.unit(208, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/chaska/front.svg",
  19958. extra: 332 / 319,
  19959. bottom: 0.015
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(6 + 7 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(5 + 8 / 12, "feet"),
  19976. weight: math.unit(208, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/enuk/front.svg",
  19980. extra: 437 / 406,
  19981. bottom: 0.02
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 8 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(5 + 10 / 12, "feet"),
  19998. weight: math.unit(252, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/bruun/front.svg",
  20002. extra: 197 / 187,
  20003. bottom: 0.012
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(5 + 10 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6 + 10 / 12, "feet"),
  20020. weight: math.unit(255, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/alexeev/front.svg",
  20024. extra: 213 / 200,
  20025. bottom: 0.05
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(6 + 10 / 12, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(2 + 8 / 12, "feet"),
  20042. weight: math.unit(22, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/evelyn/front.svg",
  20046. extra: 208 / 180
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(2 + 8 / 12, "feet"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(5 + 9 / 12, "feet"),
  20063. weight: math.unit(139, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/inca/front.svg",
  20067. extra: 294 / 291,
  20068. bottom: 0.03
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(5 + 9 / 12, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(5 + 1 / 12, "feet"),
  20085. weight: math.unit(84, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/magdalene/front.svg",
  20089. extra: 293 / 273
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 1 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(6 + 3 / 12, "feet"),
  20106. weight: math.unit(185, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/mera/front.svg",
  20110. extra: 291 / 277,
  20111. bottom: 0.03
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(6 + 3 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(6 + 7 / 12, "feet"),
  20128. weight: math.unit(160, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/ceres/front.svg",
  20132. extra: 1023 / 950,
  20133. bottom: 0.027
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(6 + 7 / 12, "feet"),
  20138. weight: math.unit(160, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/ceres/back.svg",
  20142. extra: 1023 / 950
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(6 + 7 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(5 + 10 / 12, "feet"),
  20159. weight: math.unit(150, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/kris/front.svg",
  20163. extra: 885 / 803,
  20164. bottom: 0.03
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(5 + 10 / 12, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(7, "feet"),
  20181. weight: math.unit(120, "kg"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/taluthus/front.svg",
  20185. extra: 903 / 833,
  20186. bottom: 0.015
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(7, "feet"),
  20194. default: true
  20195. },
  20196. {
  20197. name: "Macro",
  20198. height: math.unit(300, "feet")
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(5 + 9 / 12, "feet"),
  20207. weight: math.unit(145, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/dawn/front.svg",
  20211. extra: 2094 / 2016,
  20212. bottom: 0.025
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(5 + 9 / 12, "feet"),
  20217. weight: math.unit(160, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/dawn/back.svg",
  20221. extra: 2112 / 2080,
  20222. bottom: 0.005
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(6 + 7 / 12, "feet"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20236. {
  20237. anthro: {
  20238. height: math.unit(8 + 3 / 12, "feet"),
  20239. weight: math.unit(450, "lb"),
  20240. name: "Anthro",
  20241. image: {
  20242. source: "./media/characters/arador/anthro.svg",
  20243. extra: 1835 / 1718,
  20244. bottom: 0.025
  20245. }
  20246. },
  20247. feral: {
  20248. height: math.unit(4, "feet"),
  20249. weight: math.unit(200, "lb"),
  20250. name: "Feral",
  20251. image: {
  20252. source: "./media/characters/arador/feral.svg",
  20253. extra: 1683 / 1514,
  20254. bottom: 0.07
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(8 + 3 / 12, "feet")
  20262. },
  20263. {
  20264. name: "Macro",
  20265. height: math.unit(82.5, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(5 + 10 / 12, "feet"),
  20275. weight: math.unit(125, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/dharsi/front.svg",
  20279. extra: 716 / 630,
  20280. bottom: 0.035
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Nano",
  20287. height: math.unit(100, "nm")
  20288. },
  20289. {
  20290. name: "Micro",
  20291. height: math.unit(2, "inches")
  20292. },
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(5 + 10 / 12, "feet"),
  20296. default: true
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(1000, "feet")
  20301. },
  20302. {
  20303. name: "Megamacro",
  20304. height: math.unit(10, "miles")
  20305. },
  20306. {
  20307. name: "Gigamacro",
  20308. height: math.unit(3000, "miles")
  20309. },
  20310. {
  20311. name: "Teramacro",
  20312. height: math.unit(500000, "miles")
  20313. },
  20314. {
  20315. name: "Teramacro+",
  20316. height: math.unit(30, "galaxies")
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(6, "feet"),
  20325. weight: math.unit(150, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/deathy/front.svg",
  20329. extra: 1552 / 1463,
  20330. bottom: 0.025
  20331. }
  20332. },
  20333. side: {
  20334. height: math.unit(6, "feet"),
  20335. weight: math.unit(150, "lb"),
  20336. name: "Side",
  20337. image: {
  20338. source: "./media/characters/deathy/side.svg",
  20339. extra: 1604 / 1455,
  20340. bottom: 0.025
  20341. }
  20342. },
  20343. back: {
  20344. height: math.unit(6, "feet"),
  20345. weight: math.unit(150, "lb"),
  20346. name: "Back",
  20347. image: {
  20348. source: "./media/characters/deathy/back.svg",
  20349. extra: 1580 / 1463,
  20350. bottom: 0.005
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Micro",
  20357. height: math.unit(5, "millimeters")
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(6 + 5 / 12, "feet"),
  20362. default: true
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20368. {
  20369. front: {
  20370. height: math.unit(16, "feet"),
  20371. weight: math.unit(4000, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/juniper/front.svg",
  20375. bottom: 0.04
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(16, "feet"),
  20383. default: true
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20389. {
  20390. front: {
  20391. height: math.unit(6, "feet"),
  20392. weight: math.unit(150, "lb"),
  20393. name: "Front",
  20394. image: {
  20395. source: "./media/characters/hipster/front.svg",
  20396. extra: 1312 / 1209,
  20397. bottom: 0.025
  20398. }
  20399. },
  20400. back: {
  20401. height: math.unit(6, "feet"),
  20402. weight: math.unit(150, "lb"),
  20403. name: "Back",
  20404. image: {
  20405. source: "./media/characters/hipster/back.svg",
  20406. extra: 1281 / 1196,
  20407. bottom: 0.01
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Micro",
  20414. height: math.unit(1, "mm")
  20415. },
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(4, "inches"),
  20419. default: true
  20420. },
  20421. {
  20422. name: "Macro",
  20423. height: math.unit(500, "feet")
  20424. },
  20425. {
  20426. name: "Megamacro",
  20427. height: math.unit(1000, "miles")
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(6, "feet"),
  20436. weight: math.unit(150, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/tendirmuldr/front.svg",
  20440. extra: 1878 / 1772,
  20441. bottom: 0.015
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(1500, "miles"),
  20449. default: true
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20455. {
  20456. front: {
  20457. height: math.unit(14, "feet"),
  20458. weight: math.unit(12000, "lb"),
  20459. name: "Front",
  20460. image: {
  20461. source: "./media/characters/mort/front.svg",
  20462. extra: 365 / 318,
  20463. bottom: 0.01
  20464. }
  20465. },
  20466. side: {
  20467. height: math.unit(14, "feet"),
  20468. weight: math.unit(12000, "lb"),
  20469. name: "Side",
  20470. image: {
  20471. source: "./media/characters/mort/side.svg",
  20472. extra: 365 / 318,
  20473. bottom: 0.052
  20474. },
  20475. default: true
  20476. },
  20477. back: {
  20478. height: math.unit(14, "feet"),
  20479. weight: math.unit(12000, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/mort/back.svg",
  20483. extra: 371 / 332,
  20484. bottom: 0.18
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(14, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20498. {
  20499. front: {
  20500. height: math.unit(8, "feet"),
  20501. weight: math.unit(1, "ton"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/lycoa/front.svg",
  20505. extra: 1875 / 1789,
  20506. bottom: 0.022
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(8, "feet"),
  20511. weight: math.unit(1, "ton"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/lycoa/back.svg",
  20515. extra: 1835 / 1781,
  20516. bottom: 0.03
  20517. }
  20518. },
  20519. head: {
  20520. height: math.unit(2.1, "feet"),
  20521. name: "Head",
  20522. image: {
  20523. source: "./media/characters/lycoa/head.svg"
  20524. }
  20525. },
  20526. tailmaw: {
  20527. height: math.unit(1.9, "feet"),
  20528. name: "Tailmaw",
  20529. image: {
  20530. source: "./media/characters/lycoa/tailmaw.svg"
  20531. }
  20532. },
  20533. tentacles: {
  20534. height: math.unit(2.1, "feet"),
  20535. name: "Tentacles",
  20536. image: {
  20537. source: "./media/characters/lycoa/tentacles.svg"
  20538. }
  20539. },
  20540. dick: {
  20541. height: math.unit(1.73, "feet"),
  20542. name: "Dick",
  20543. image: {
  20544. source: "./media/characters/lycoa/dick.svg"
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(8, "feet"),
  20552. default: true
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(30, "feet")
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20562. {
  20563. front: {
  20564. height: math.unit(4 + 2 / 12, "feet"),
  20565. weight: math.unit(70, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/naldara/front.svg",
  20569. extra: 841 / 720,
  20570. bottom: 0.04
  20571. }
  20572. },
  20573. naga: {
  20574. height: math.unit(23, "feet"),
  20575. weight: math.unit(15000, "kg"),
  20576. name: "Naga",
  20577. image: {
  20578. source: "./media/characters/naldara/naga.svg",
  20579. extra: 3290 / 2959,
  20580. bottom: 124 / 3432
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(4 + 2 / 12, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(13 + 7 / 12, "feet"),
  20597. weight: math.unit(1500, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/briar/front.svg",
  20601. extra: 626 / 596,
  20602. bottom: 0.08
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(13 + 7 / 12, "feet"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20616. {
  20617. side: {
  20618. height: math.unit(10, "feet"),
  20619. weight: math.unit(500, "lb"),
  20620. name: "Side",
  20621. image: {
  20622. source: "./media/characters/vanguard/side.svg",
  20623. extra: 502 / 425,
  20624. bottom: 0.087
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(10, "feet"),
  20632. default: true
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(7.5, "feet"),
  20641. weight: math.unit(2, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/artemis/front.svg",
  20645. extra: 1192 / 1075,
  20646. bottom: 0.07
  20647. }
  20648. },
  20649. frontNsfw: {
  20650. height: math.unit(7.5, "feet"),
  20651. weight: math.unit(2, "lb"),
  20652. name: "Front (NSFW)",
  20653. image: {
  20654. source: "./media/characters/artemis/front-nsfw.svg",
  20655. extra: 1192 / 1075,
  20656. bottom: 0.07
  20657. }
  20658. },
  20659. frontNsfwer: {
  20660. height: math.unit(7.5, "feet"),
  20661. weight: math.unit(2, "lb"),
  20662. name: "Front (NSFW-er)",
  20663. image: {
  20664. source: "./media/characters/artemis/front-nsfwer.svg",
  20665. extra: 1192 / 1075,
  20666. bottom: 0.07
  20667. }
  20668. },
  20669. side: {
  20670. height: math.unit(7.5, "feet"),
  20671. weight: math.unit(2, "lb"),
  20672. name: "Side",
  20673. image: {
  20674. source: "./media/characters/artemis/side.svg",
  20675. extra: 1192 / 1075,
  20676. bottom: 0.07
  20677. }
  20678. },
  20679. sideNsfw: {
  20680. height: math.unit(7.5, "feet"),
  20681. weight: math.unit(2, "lb"),
  20682. name: "Side (NSFW)",
  20683. image: {
  20684. source: "./media/characters/artemis/side-nsfw.svg",
  20685. extra: 1192 / 1075,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. sideNsfwer: {
  20690. height: math.unit(7.5, "feet"),
  20691. weight: math.unit(2, "lb"),
  20692. name: "Side (NSFW-er)",
  20693. image: {
  20694. source: "./media/characters/artemis/side-nsfwer.svg",
  20695. extra: 1192 / 1075,
  20696. bottom: 0.07
  20697. }
  20698. },
  20699. maw: {
  20700. height: math.unit(1.1, "feet"),
  20701. name: "Maw",
  20702. image: {
  20703. source: "./media/characters/artemis/maw.svg"
  20704. }
  20705. },
  20706. stomach: {
  20707. height: math.unit(0.95, "feet"),
  20708. name: "Stomach",
  20709. image: {
  20710. source: "./media/characters/artemis/stomach.svg"
  20711. }
  20712. },
  20713. dickCanine: {
  20714. height: math.unit(1, "feet"),
  20715. name: "Dick (Canine)",
  20716. image: {
  20717. source: "./media/characters/artemis/dick-canine.svg"
  20718. }
  20719. },
  20720. dickEquine: {
  20721. height: math.unit(0.85, "feet"),
  20722. name: "Dick (Equine)",
  20723. image: {
  20724. source: "./media/characters/artemis/dick-equine.svg"
  20725. }
  20726. },
  20727. dickExotic: {
  20728. height: math.unit(0.85, "feet"),
  20729. name: "Dick (Exotic)",
  20730. image: {
  20731. source: "./media/characters/artemis/dick-exotic.svg"
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(7.5, "feet"),
  20739. default: true
  20740. },
  20741. {
  20742. name: "Enlarged",
  20743. height: math.unit(12, "feet")
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 3 / 12, "feet"),
  20752. weight: math.unit(160, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/kira/front.svg",
  20756. extra: 906 / 786,
  20757. bottom: 0.01
  20758. }
  20759. },
  20760. back: {
  20761. height: math.unit(5 + 3 / 12, "feet"),
  20762. weight: math.unit(160, "lb"),
  20763. name: "Back",
  20764. image: {
  20765. source: "./media/characters/kira/back.svg",
  20766. extra: 882 / 757,
  20767. bottom: 0.005
  20768. }
  20769. },
  20770. frontDressed: {
  20771. height: math.unit(5 + 3 / 12, "feet"),
  20772. weight: math.unit(160, "lb"),
  20773. name: "Front (Dressed)",
  20774. image: {
  20775. source: "./media/characters/kira/front-dressed.svg",
  20776. extra: 906 / 786,
  20777. bottom: 0.01
  20778. }
  20779. },
  20780. beans: {
  20781. height: math.unit(0.92, "feet"),
  20782. name: "Beans",
  20783. image: {
  20784. source: "./media/characters/kira/beans.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(5 + 3 / 12, "feet"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(5 + 4 / 12, "feet"),
  20801. weight: math.unit(145, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/scramble/front.svg",
  20805. extra: 763 / 727,
  20806. bottom: 0.05
  20807. }
  20808. },
  20809. back: {
  20810. height: math.unit(5 + 4 / 12, "feet"),
  20811. weight: math.unit(145, "lb"),
  20812. name: "Back",
  20813. image: {
  20814. source: "./media/characters/scramble/back.svg",
  20815. extra: 826 / 737,
  20816. bottom: 0.002
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(5 + 4 / 12, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20830. {
  20831. side: {
  20832. height: math.unit(6 + 2 / 12, "feet"),
  20833. weight: math.unit(190, "lb"),
  20834. name: "Side",
  20835. image: {
  20836. source: "./media/characters/biscuit/side.svg",
  20837. extra: 858 / 791,
  20838. bottom: 0.044
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(6 + 2 / 12, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(5 + 2 / 12, "feet"),
  20855. weight: math.unit(120, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/poffin/front.svg",
  20859. extra: 786 / 680,
  20860. bottom: 0.005
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(5 + 2 / 12, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(6 + 3 / 12, "feet"),
  20877. weight: math.unit(519, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/dhari/front.svg",
  20881. extra: 1048 / 946,
  20882. bottom: 0.015
  20883. }
  20884. },
  20885. back: {
  20886. height: math.unit(6 + 3 / 12, "feet"),
  20887. weight: math.unit(519, "lb"),
  20888. name: "Back",
  20889. image: {
  20890. source: "./media/characters/dhari/back.svg",
  20891. extra: 1048 / 931,
  20892. bottom: 0.005
  20893. }
  20894. },
  20895. frontDressed: {
  20896. height: math.unit(6 + 3 / 12, "feet"),
  20897. weight: math.unit(519, "lb"),
  20898. name: "Front (Dressed)",
  20899. image: {
  20900. source: "./media/characters/dhari/front-dressed.svg",
  20901. extra: 1713 / 1546,
  20902. bottom: 0.02
  20903. }
  20904. },
  20905. backDressed: {
  20906. height: math.unit(6 + 3 / 12, "feet"),
  20907. weight: math.unit(519, "lb"),
  20908. name: "Back (Dressed)",
  20909. image: {
  20910. source: "./media/characters/dhari/back-dressed.svg",
  20911. extra: 1699 / 1537,
  20912. bottom: 0.01
  20913. }
  20914. },
  20915. maw: {
  20916. height: math.unit(0.95, "feet"),
  20917. name: "Maw",
  20918. image: {
  20919. source: "./media/characters/dhari/maw.svg"
  20920. }
  20921. },
  20922. wereFront: {
  20923. height: math.unit(12 + 8 / 12, "feet"),
  20924. weight: math.unit(4000, "lb"),
  20925. name: "Front (Were)",
  20926. image: {
  20927. source: "./media/characters/dhari/were-front.svg",
  20928. extra: 1065 / 969,
  20929. bottom: 0.015
  20930. }
  20931. },
  20932. wereBack: {
  20933. height: math.unit(12 + 8 / 12, "feet"),
  20934. weight: math.unit(4000, "lb"),
  20935. name: "Back (Were)",
  20936. image: {
  20937. source: "./media/characters/dhari/were-back.svg",
  20938. extra: 1065 / 969,
  20939. bottom: 0.012
  20940. }
  20941. },
  20942. wereMaw: {
  20943. height: math.unit(0.625, "meters"),
  20944. name: "Maw (Were)",
  20945. image: {
  20946. source: "./media/characters/dhari/were-maw.svg"
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(6 + 3 / 12, "feet"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20960. {
  20961. anthro: {
  20962. height: math.unit(5 + 7 / 12, "feet"),
  20963. weight: math.unit(175, "lb"),
  20964. name: "Anthro",
  20965. image: {
  20966. source: "./media/characters/rena-dyne/anthro.svg",
  20967. extra: 1849 / 1785,
  20968. bottom: 0.005
  20969. }
  20970. },
  20971. taur: {
  20972. height: math.unit(15 + 6 / 12, "feet"),
  20973. weight: math.unit(8000, "lb"),
  20974. name: "Taur",
  20975. image: {
  20976. source: "./media/characters/rena-dyne/taur.svg",
  20977. extra: 2315 / 2234,
  20978. bottom: 0.033
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(5 + 7 / 12, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(8, "feet"),
  20995. weight: math.unit(600, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/weremeep/front.svg",
  20999. extra: 967 / 862,
  21000. bottom: 0.01
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(8, "feet"),
  21008. default: true
  21009. },
  21010. {
  21011. name: "Lorg",
  21012. height: math.unit(12, "feet")
  21013. },
  21014. {
  21015. name: "Oh Lawd She Comin'",
  21016. height: math.unit(20, "feet")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21022. {
  21023. front: {
  21024. height: math.unit(4, "feet"),
  21025. weight: math.unit(90, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/reza/front.svg",
  21029. extra: 1183 / 1111,
  21030. bottom: 0.017
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(4, "feet"),
  21035. weight: math.unit(90, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/reza/back.svg",
  21039. extra: 1183 / 1111,
  21040. bottom: 0.01
  21041. }
  21042. },
  21043. drake: {
  21044. height: math.unit(30, "feet"),
  21045. weight: math.unit(246960, "lb"),
  21046. name: "Drake",
  21047. image: {
  21048. source: "./media/characters/reza/drake.svg",
  21049. extra: 2350 / 2024,
  21050. bottom: 60.7 / 2403
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(4, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21064. {
  21065. side: {
  21066. height: math.unit(15, "feet"),
  21067. weight: math.unit(14, "tons"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/athea/side.svg",
  21071. extra: 960 / 540,
  21072. bottom: 0.003
  21073. }
  21074. },
  21075. sitting: {
  21076. height: math.unit(6 * 2.85, "feet"),
  21077. weight: math.unit(14, "tons"),
  21078. name: "Sitting",
  21079. image: {
  21080. source: "./media/characters/athea/sitting.svg",
  21081. extra: 621 / 581,
  21082. bottom: 0.075
  21083. }
  21084. },
  21085. maw: {
  21086. height: math.unit(7.59498031496063, "feet"),
  21087. name: "Maw",
  21088. image: {
  21089. source: "./media/characters/athea/maw.svg"
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Lap Cat",
  21096. height: math.unit(2.5, "feet")
  21097. },
  21098. {
  21099. name: "Minimacro",
  21100. height: math.unit(15, "feet"),
  21101. default: true
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(120, "feet")
  21106. },
  21107. {
  21108. name: "Macro+",
  21109. height: math.unit(640, "feet")
  21110. },
  21111. {
  21112. name: "Colossus",
  21113. height: math.unit(2.2, "miles")
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21119. {
  21120. front: {
  21121. height: math.unit(8 + 8 / 12, "feet"),
  21122. weight: math.unit(130, "kg"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/seroko/front.svg",
  21126. extra: 1385 / 1280,
  21127. bottom: 0.025
  21128. }
  21129. },
  21130. back: {
  21131. height: math.unit(8 + 8 / 12, "feet"),
  21132. weight: math.unit(130, "kg"),
  21133. name: "Back",
  21134. image: {
  21135. source: "./media/characters/seroko/back.svg",
  21136. extra: 1369 / 1238,
  21137. bottom: 0.018
  21138. }
  21139. },
  21140. frontDressed: {
  21141. height: math.unit(8 + 8 / 12, "feet"),
  21142. weight: math.unit(130, "kg"),
  21143. name: "Front (Dressed)",
  21144. image: {
  21145. source: "./media/characters/seroko/front-dressed.svg",
  21146. extra: 1366 / 1275,
  21147. bottom: 0.03
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(8 + 8 / 12, "feet"),
  21155. default: true
  21156. },
  21157. ]
  21158. ))
  21159. characterMakers.push(() => makeCharacter(
  21160. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21161. {
  21162. front: {
  21163. height: math.unit(5.5, "feet"),
  21164. weight: math.unit(160, "lb"),
  21165. name: "Front",
  21166. image: {
  21167. source: "./media/characters/quatzi/front.svg",
  21168. extra: 2346 / 2242,
  21169. bottom: 0.015
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(5.5, "feet"),
  21177. default: true
  21178. },
  21179. {
  21180. name: "Big",
  21181. height: math.unit(7.7, "feet")
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21187. {
  21188. front: {
  21189. height: math.unit(5 + 11 / 12, "feet"),
  21190. weight: math.unit(180, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/sen/front.svg",
  21194. extra: 1321 / 1254,
  21195. bottom: 0.015
  21196. }
  21197. },
  21198. side: {
  21199. height: math.unit(5 + 11 / 12, "feet"),
  21200. weight: math.unit(180, "lb"),
  21201. name: "Side",
  21202. image: {
  21203. source: "./media/characters/sen/side.svg",
  21204. extra: 1321 / 1254,
  21205. bottom: 0.007
  21206. }
  21207. },
  21208. back: {
  21209. height: math.unit(5 + 11 / 12, "feet"),
  21210. weight: math.unit(180, "lb"),
  21211. name: "Back",
  21212. image: {
  21213. source: "./media/characters/sen/back.svg",
  21214. extra: 1321 / 1254
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(5 + 11 / 12, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(166.6, "cm"),
  21231. weight: math.unit(66.6, "kg"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/fruity/front.svg",
  21235. extra: 1510 / 1386,
  21236. bottom: 0.04
  21237. }
  21238. },
  21239. back: {
  21240. height: math.unit(166.6, "cm"),
  21241. weight: math.unit(66.6, "lb"),
  21242. name: "Back",
  21243. image: {
  21244. source: "./media/characters/fruity/back.svg",
  21245. extra: 1563 / 1435,
  21246. bottom: 0.005
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(166.6, "cm"),
  21254. default: true
  21255. },
  21256. {
  21257. name: "Demonic",
  21258. height: math.unit(166.6, "feet")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21264. {
  21265. side: {
  21266. height: math.unit(10, "feet"),
  21267. weight: math.unit(500, "lb"),
  21268. name: "Side",
  21269. image: {
  21270. source: "./media/characters/zost/side.svg",
  21271. extra: 966 / 880,
  21272. bottom: 0.075
  21273. }
  21274. },
  21275. mawFront: {
  21276. height: math.unit(1.08, "meters"),
  21277. name: "Maw (Front)",
  21278. image: {
  21279. source: "./media/characters/zost/maw-front.svg"
  21280. }
  21281. },
  21282. mawSide: {
  21283. height: math.unit(2.66, "feet"),
  21284. name: "Maw (Side)",
  21285. image: {
  21286. source: "./media/characters/zost/maw-side.svg"
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(10, "feet"),
  21294. default: true
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21300. {
  21301. front: {
  21302. height: math.unit(5 + 4 / 12, "feet"),
  21303. weight: math.unit(120, "lb"),
  21304. name: "Front",
  21305. image: {
  21306. source: "./media/characters/luci/front.svg",
  21307. extra: 1985 / 1884,
  21308. bottom: 0.04
  21309. }
  21310. },
  21311. back: {
  21312. height: math.unit(5 + 4 / 12, "feet"),
  21313. weight: math.unit(120, "lb"),
  21314. name: "Back",
  21315. image: {
  21316. source: "./media/characters/luci/back.svg",
  21317. extra: 1892 / 1791,
  21318. bottom: 0.002
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(5 + 4 / 12, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(1500, "feet"),
  21335. weight: math.unit(3.8e6, "tons"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/2th/front.svg",
  21339. extra: 3489 / 3350,
  21340. bottom: 0.1
  21341. }
  21342. },
  21343. foot: {
  21344. height: math.unit(461, "feet"),
  21345. name: "Foot",
  21346. image: {
  21347. source: "./media/characters/2th/foot.svg"
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "\"Micro\"",
  21354. height: math.unit(15 + 7 / 12, "feet")
  21355. },
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(1500, "feet"),
  21359. default: true
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(5000, "feet")
  21364. },
  21365. {
  21366. name: "Megamacro",
  21367. height: math.unit(15, "miles")
  21368. },
  21369. {
  21370. name: "Gigamacro",
  21371. height: math.unit(4000, "miles")
  21372. },
  21373. {
  21374. name: "Galactic",
  21375. height: math.unit(50, "AU")
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(5 + 6 / 12, "feet"),
  21384. weight: math.unit(220, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/amethyst/front.svg",
  21388. extra: 2078 / 2040,
  21389. bottom: 0.045
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(5 + 6 / 12, "feet"),
  21394. weight: math.unit(220, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/amethyst/back.svg",
  21398. extra: 2021 / 1989,
  21399. bottom: 0.02
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(5 + 6 / 12, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(4 + 11 / 12, "feet"),
  21416. weight: math.unit(120, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/yumi-akiyama/front.svg",
  21420. extra: 1327 / 1235,
  21421. bottom: 0.02
  21422. }
  21423. },
  21424. back: {
  21425. height: math.unit(4 + 11 / 12, "feet"),
  21426. weight: math.unit(120, "lb"),
  21427. name: "Back",
  21428. image: {
  21429. source: "./media/characters/yumi-akiyama/back.svg",
  21430. extra: 1287 / 1245,
  21431. bottom: 0.002
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Galactic",
  21438. height: math.unit(50, "galaxies"),
  21439. default: true
  21440. },
  21441. {
  21442. name: "Universal",
  21443. height: math.unit(100, "universes")
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(8, "feet"),
  21452. weight: math.unit(500, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/rifter-yrmori/front.svg",
  21456. extra: 1180 / 1125,
  21457. bottom: 0.02
  21458. }
  21459. },
  21460. back: {
  21461. height: math.unit(8, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/rifter-yrmori/back.svg",
  21466. extra: 1190 / 1145,
  21467. bottom: 0.001
  21468. }
  21469. },
  21470. wings: {
  21471. height: math.unit(7.75, "feet"),
  21472. weight: math.unit(500, "lb"),
  21473. name: "Wings",
  21474. image: {
  21475. source: "./media/characters/rifter-yrmori/wings.svg",
  21476. extra: 1357 / 1285
  21477. }
  21478. },
  21479. maw: {
  21480. height: math.unit(0.8, "feet"),
  21481. name: "Maw",
  21482. image: {
  21483. source: "./media/characters/rifter-yrmori/maw.svg"
  21484. }
  21485. },
  21486. mawfront: {
  21487. height: math.unit(1.45, "feet"),
  21488. name: "Maw (Front)",
  21489. image: {
  21490. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Normal",
  21497. height: math.unit(8, "feet"),
  21498. default: true
  21499. },
  21500. {
  21501. name: "Macro",
  21502. height: math.unit(42, "meters")
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21508. {
  21509. were: {
  21510. height: math.unit(25 + 6 / 12, "feet"),
  21511. weight: math.unit(10000, "lb"),
  21512. name: "Were",
  21513. image: {
  21514. source: "./media/characters/tahajin/were.svg",
  21515. extra: 801 / 770,
  21516. bottom: 0.042
  21517. }
  21518. },
  21519. aquatic: {
  21520. height: math.unit(6 + 4 / 12, "feet"),
  21521. weight: math.unit(160, "lb"),
  21522. name: "Aquatic",
  21523. image: {
  21524. source: "./media/characters/tahajin/aquatic.svg",
  21525. extra: 572 / 542,
  21526. bottom: 0.04
  21527. }
  21528. },
  21529. chow: {
  21530. height: math.unit(8 + 11 / 12, "feet"),
  21531. weight: math.unit(450, "lb"),
  21532. name: "Chow",
  21533. image: {
  21534. source: "./media/characters/tahajin/chow.svg",
  21535. extra: 660 / 640,
  21536. bottom: 0.015
  21537. }
  21538. },
  21539. demiNaga: {
  21540. height: math.unit(6 + 8 / 12, "feet"),
  21541. weight: math.unit(300, "lb"),
  21542. name: "Demi Naga",
  21543. image: {
  21544. source: "./media/characters/tahajin/demi-naga.svg",
  21545. extra: 643 / 615,
  21546. bottom: 0.1
  21547. }
  21548. },
  21549. data: {
  21550. height: math.unit(5, "inches"),
  21551. weight: math.unit(0.1, "lb"),
  21552. name: "Data",
  21553. image: {
  21554. source: "./media/characters/tahajin/data.svg"
  21555. }
  21556. },
  21557. fluu: {
  21558. height: math.unit(5 + 7 / 12, "feet"),
  21559. weight: math.unit(140, "lb"),
  21560. name: "Fluu",
  21561. image: {
  21562. source: "./media/characters/tahajin/fluu.svg",
  21563. extra: 628 / 592,
  21564. bottom: 0.02
  21565. }
  21566. },
  21567. starWarrior: {
  21568. height: math.unit(4 + 5 / 12, "feet"),
  21569. weight: math.unit(50, "lb"),
  21570. name: "Star Warrior",
  21571. image: {
  21572. source: "./media/characters/tahajin/star-warrior.svg"
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(25 + 6 / 12, "feet"),
  21580. default: true
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(8, "feet"),
  21589. weight: math.unit(350, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/gabira/front.svg",
  21593. extra: 608 / 580,
  21594. bottom: 0.03
  21595. }
  21596. },
  21597. back: {
  21598. height: math.unit(8, "feet"),
  21599. weight: math.unit(350, "lb"),
  21600. name: "Back",
  21601. image: {
  21602. source: "./media/characters/gabira/back.svg",
  21603. extra: 608 / 580,
  21604. bottom: 0.03
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(8, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(5 + 3 / 12, "feet"),
  21621. weight: math.unit(137, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/sasha-katraine/front.svg",
  21625. bottom: 0.045
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Micro",
  21632. height: math.unit(5, "inches")
  21633. },
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(5 + 3 / 12, "feet"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21643. {
  21644. side: {
  21645. height: math.unit(4, "inches"),
  21646. weight: math.unit(200, "grams"),
  21647. name: "Side",
  21648. image: {
  21649. source: "./media/characters/der/side.svg",
  21650. extra: 719 / 400,
  21651. bottom: 30.6 / 749.9187
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Micro",
  21658. height: math.unit(4, "inches"),
  21659. default: true
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21665. {
  21666. side: {
  21667. height: math.unit(30, "meters"),
  21668. weight: math.unit(700, "tonnes"),
  21669. name: "Side",
  21670. image: {
  21671. source: "./media/characters/fixerdragon/side.svg",
  21672. extra: (1293.0514 - 116.03) / 1106.86,
  21673. bottom: 116.03 / 1293.0514
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Planck",
  21680. height: math.unit(1.6e-35, "meters")
  21681. },
  21682. {
  21683. name: "Micro",
  21684. height: math.unit(0.4, "meters")
  21685. },
  21686. {
  21687. name: "Normal",
  21688. height: math.unit(30, "meters"),
  21689. default: true
  21690. },
  21691. {
  21692. name: "Megamacro",
  21693. height: math.unit(1.2, "megameters")
  21694. },
  21695. {
  21696. name: "Teramacro",
  21697. height: math.unit(130, "terameters")
  21698. },
  21699. {
  21700. name: "Yottamacro",
  21701. height: math.unit(6200, "yottameters")
  21702. },
  21703. ]
  21704. ));
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(8, "feet"),
  21710. weight: math.unit(250, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/kite/front.svg",
  21714. extra: 2796 / 2659,
  21715. bottom: 0.002
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(8, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(360, "feet")
  21728. },
  21729. {
  21730. name: "Megamacro",
  21731. height: math.unit(1500, "feet")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(5 + 11/12, "feet"),
  21740. weight: math.unit(170, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/poojawa-vynar/front.svg",
  21744. extra: 1735/1585,
  21745. bottom: 96/1831
  21746. }
  21747. },
  21748. back: {
  21749. height: math.unit(5 + 11/12, "feet"),
  21750. weight: math.unit(170, "lb"),
  21751. name: "Back",
  21752. image: {
  21753. source: "./media/characters/poojawa-vynar/back.svg",
  21754. extra: 1749/1607,
  21755. bottom: 28/1777
  21756. }
  21757. },
  21758. male: {
  21759. height: math.unit(5 + 11/12, "feet"),
  21760. weight: math.unit(170, "lb"),
  21761. name: "Male",
  21762. image: {
  21763. source: "./media/characters/poojawa-vynar/male.svg",
  21764. extra: 1855/1713,
  21765. bottom: 63/1918
  21766. }
  21767. },
  21768. taur: {
  21769. height: math.unit(5 + 11/12, "feet"),
  21770. weight: math.unit(170, "lb"),
  21771. name: "Taur",
  21772. image: {
  21773. source: "./media/characters/poojawa-vynar/taur.svg",
  21774. extra: 1151/1059,
  21775. bottom: 356/1507
  21776. }
  21777. },
  21778. frontDressed: {
  21779. height: math.unit(5 + 11/12, "feet"),
  21780. weight: math.unit(170, "lb"),
  21781. name: "Front (Dressed)",
  21782. image: {
  21783. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21784. extra: 1735/1585,
  21785. bottom: 96/1831
  21786. }
  21787. },
  21788. backDressed: {
  21789. height: math.unit(5 + 11/12, "feet"),
  21790. weight: math.unit(170, "lb"),
  21791. name: "Back (Dressed)",
  21792. image: {
  21793. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21794. extra: 1749/1607,
  21795. bottom: 28/1777
  21796. }
  21797. },
  21798. maleDressed: {
  21799. height: math.unit(5 + 11/12, "feet"),
  21800. weight: math.unit(170, "lb"),
  21801. name: "Male (Dressed)",
  21802. image: {
  21803. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21804. extra: 1855/1713,
  21805. bottom: 63/1918
  21806. }
  21807. },
  21808. taurDressed: {
  21809. height: math.unit(5 + 11/12, "feet"),
  21810. weight: math.unit(170, "lb"),
  21811. name: "Taur (Dressed)",
  21812. image: {
  21813. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21814. extra: 1151/1059,
  21815. bottom: 356/1507
  21816. }
  21817. },
  21818. maw: {
  21819. height: math.unit(1.46, "feet"),
  21820. name: "Maw",
  21821. image: {
  21822. source: "./media/characters/poojawa-vynar/maw.svg"
  21823. }
  21824. },
  21825. head: {
  21826. height: math.unit(2.34, "feet"),
  21827. name: "Head",
  21828. image: {
  21829. source: "./media/characters/poojawa-vynar/head.svg"
  21830. }
  21831. },
  21832. paw: {
  21833. height: math.unit(1.61, "feet"),
  21834. name: "Paw",
  21835. image: {
  21836. source: "./media/characters/poojawa-vynar/paw.svg"
  21837. }
  21838. },
  21839. pawToering: {
  21840. height: math.unit(1.72, "feet"),
  21841. name: "Paw (Toering)",
  21842. image: {
  21843. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21844. }
  21845. },
  21846. toering: {
  21847. height: math.unit(2.9, "inches"),
  21848. name: "Toering",
  21849. image: {
  21850. source: "./media/characters/poojawa-vynar/toering.svg"
  21851. }
  21852. },
  21853. shaft: {
  21854. height: math.unit(0.625, "feet"),
  21855. name: "Shaft",
  21856. image: {
  21857. source: "./media/characters/poojawa-vynar/shaft.svg"
  21858. }
  21859. },
  21860. spade: {
  21861. height: math.unit(0.42, "feet"),
  21862. name: "Spade",
  21863. image: {
  21864. source: "./media/characters/poojawa-vynar/spade.svg"
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Shortstack",
  21871. height: math.unit(4, "feet")
  21872. },
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(5 + 11 / 12, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Tauric",
  21880. height: math.unit(4, "meters")
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(293, "meters"),
  21889. weight: math.unit(70400, "tons"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/violette/front.svg",
  21893. extra: 1227 / 1180,
  21894. bottom: 0.005
  21895. }
  21896. },
  21897. back: {
  21898. height: math.unit(293, "meters"),
  21899. weight: math.unit(70400, "tons"),
  21900. name: "Back",
  21901. image: {
  21902. source: "./media/characters/violette/back.svg",
  21903. extra: 1227 / 1180,
  21904. bottom: 0.005
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Macro",
  21911. height: math.unit(293, "meters"),
  21912. default: true
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(1050, "feet"),
  21921. weight: math.unit(200000, "tons"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/alessandra/front.svg",
  21925. extra: 960 / 912,
  21926. bottom: 0.06
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(1050, "feet")
  21934. },
  21935. {
  21936. name: "Macro+",
  21937. height: math.unit(900, "meters"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(5, "feet"),
  21947. weight: math.unit(187, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/person/front.svg",
  21951. extra: 3087 / 2945,
  21952. bottom: 91 / 3181
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Micro",
  21959. height: math.unit(3, "inches")
  21960. },
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(5, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(90, "feet")
  21969. },
  21970. {
  21971. name: "Max Size",
  21972. height: math.unit(280, "feet")
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21978. {
  21979. front: {
  21980. height: math.unit(4.5, "meters"),
  21981. weight: math.unit(3200, "lb"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/ty/front.svg",
  21985. extra: 1038 / 960,
  21986. bottom: 31.156 / 1068
  21987. }
  21988. },
  21989. back: {
  21990. height: math.unit(4.5, "meters"),
  21991. weight: math.unit(3200, "lb"),
  21992. name: "Back",
  21993. image: {
  21994. source: "./media/characters/ty/back.svg",
  21995. extra: 1044 / 966,
  21996. bottom: 7.48 / 1049
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(4.5, "meters"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(5 + 4 / 12, "feet"),
  22013. weight: math.unit(115, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/rocky/front.svg",
  22017. extra: 1012 / 975,
  22018. bottom: 54 / 1066
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(5 + 4 / 12, "feet"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22032. {
  22033. upright: {
  22034. height: math.unit(6, "meters"),
  22035. weight: math.unit(4000, "kg"),
  22036. name: "Upright",
  22037. image: {
  22038. source: "./media/characters/ruin/upright.svg",
  22039. extra: 668 / 661,
  22040. bottom: 42 / 799.8396
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(6, "meters"),
  22048. default: true
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(5, "feet"),
  22057. weight: math.unit(106, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/robin/front.svg",
  22061. extra: 862 / 799,
  22062. bottom: 42.4 / 914.8856
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(5, "feet"),
  22070. default: true
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22076. {
  22077. side: {
  22078. height: math.unit(3, "feet"),
  22079. weight: math.unit(225, "lb"),
  22080. name: "Side",
  22081. image: {
  22082. source: "./media/characters/saian/side.svg",
  22083. extra: 566 / 356,
  22084. bottom: 79.7 / 643
  22085. }
  22086. },
  22087. maw: {
  22088. height: math.unit(2.85, "feet"),
  22089. name: "Maw",
  22090. image: {
  22091. source: "./media/characters/saian/maw.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(3, "feet"),
  22099. default: true
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22105. {
  22106. side: {
  22107. height: math.unit(8, "feet"),
  22108. weight: math.unit(300, "lb"),
  22109. name: "Side",
  22110. image: {
  22111. source: "./media/characters/equus-silvermane/side.svg",
  22112. extra: 2176 / 2050,
  22113. bottom: 65.7 / 2245
  22114. }
  22115. },
  22116. front: {
  22117. height: math.unit(8, "feet"),
  22118. weight: math.unit(300, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/equus-silvermane/front.svg",
  22122. extra: 4633 / 4400,
  22123. bottom: 71.3 / 4706.915
  22124. }
  22125. },
  22126. sideStepping: {
  22127. height: math.unit(8, "feet"),
  22128. weight: math.unit(300, "lb"),
  22129. name: "Side (Stepping)",
  22130. image: {
  22131. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22132. extra: 1968 / 1860,
  22133. bottom: 16.4 / 1989
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(8, "feet")
  22141. },
  22142. {
  22143. name: "Minimacro",
  22144. height: math.unit(75, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(150, "feet")
  22150. },
  22151. {
  22152. name: "Macro+",
  22153. height: math.unit(1000, "feet")
  22154. },
  22155. {
  22156. name: "Megamacro",
  22157. height: math.unit(1, "mile")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22163. {
  22164. side: {
  22165. height: math.unit(20, "feet"),
  22166. weight: math.unit(30000, "kg"),
  22167. name: "Side",
  22168. image: {
  22169. source: "./media/characters/windar/side.svg",
  22170. extra: 1491 / 1248,
  22171. bottom: 82.56 / 1568
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(20, "feet"),
  22179. default: true
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22185. {
  22186. side: {
  22187. height: math.unit(15.66, "feet"),
  22188. weight: math.unit(150, "lb"),
  22189. name: "Side",
  22190. image: {
  22191. source: "./media/characters/melody/side.svg",
  22192. extra: 1097 / 944,
  22193. bottom: 11.8 / 1109
  22194. }
  22195. },
  22196. sideOutfit: {
  22197. height: math.unit(15.66, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Side (Outfit)",
  22200. image: {
  22201. source: "./media/characters/melody/side-outfit.svg",
  22202. extra: 1097 / 944,
  22203. bottom: 11.8 / 1109
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(15.66, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(8, "feet"),
  22220. weight: math.unit(325, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/windera/front.svg",
  22224. extra: 3180 / 2845,
  22225. bottom: 178 / 3365
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(8, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22239. {
  22240. front: {
  22241. height: math.unit(28.75, "feet"),
  22242. weight: math.unit(2000, "kg"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/sonear/front.svg",
  22246. extra: 1041.1 / 964.9,
  22247. bottom: 53.7 / 1096.6
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(28.75, "feet"),
  22255. default: true
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22261. {
  22262. side: {
  22263. height: math.unit(25.5, "feet"),
  22264. weight: math.unit(23000, "kg"),
  22265. name: "Side",
  22266. image: {
  22267. source: "./media/characters/kanara/side.svg"
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(25.5, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(10, "feet"),
  22284. weight: math.unit(1000, "kg"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/ereus/side.svg",
  22288. extra: 1157 / 959,
  22289. bottom: 153 / 1312.5
  22290. }
  22291. },
  22292. },
  22293. [
  22294. {
  22295. name: "Normal",
  22296. height: math.unit(10, "feet"),
  22297. default: true
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22303. {
  22304. side: {
  22305. height: math.unit(4.5, "feet"),
  22306. weight: math.unit(500, "lb"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/e-ter/side.svg",
  22310. extra: 1550 / 1248,
  22311. bottom: 146 / 1694
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(4.5, "feet"),
  22319. default: true
  22320. },
  22321. ]
  22322. ))
  22323. characterMakers.push(() => makeCharacter(
  22324. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22325. {
  22326. side: {
  22327. height: math.unit(9.7, "feet"),
  22328. weight: math.unit(4000, "kg"),
  22329. name: "Side",
  22330. image: {
  22331. source: "./media/characters/yamie/side.svg"
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(9.7, "feet"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(50, "feet"),
  22348. weight: math.unit(50000, "kg"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/anders/front.svg",
  22352. extra: 570 / 539,
  22353. bottom: 14.7 / 586.7
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Large",
  22360. height: math.unit(50, "feet")
  22361. },
  22362. {
  22363. name: "Macro",
  22364. height: math.unit(2000, "feet"),
  22365. default: true
  22366. },
  22367. {
  22368. name: "Megamacro",
  22369. height: math.unit(12, "miles")
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(7 + 2 / 12, "feet"),
  22378. weight: math.unit(300, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/reban/front.svg",
  22382. extra: 516 / 487,
  22383. bottom: 42.82 / 558.356
  22384. }
  22385. },
  22386. dick: {
  22387. height: math.unit(7 / 5, "feet"),
  22388. name: "Dick",
  22389. image: {
  22390. source: "./media/characters/reban/dick.svg"
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Natural Height",
  22397. height: math.unit(7 + 2 / 12, "feet")
  22398. },
  22399. {
  22400. name: "Macro",
  22401. height: math.unit(500, "feet"),
  22402. default: true
  22403. },
  22404. {
  22405. name: "Canon Height",
  22406. height: math.unit(50, "AU")
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(6, "feet"),
  22415. weight: math.unit(150, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/terrance-keayes/front.svg",
  22419. extra: 1.005,
  22420. bottom: 151 / 1615
  22421. }
  22422. },
  22423. side: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Side",
  22427. image: {
  22428. source: "./media/characters/terrance-keayes/side.svg",
  22429. extra: 1.005,
  22430. bottom: 129.4 / 1544
  22431. }
  22432. },
  22433. back: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(150, "lb"),
  22436. name: "Back",
  22437. image: {
  22438. source: "./media/characters/terrance-keayes/back.svg",
  22439. extra: 1.005,
  22440. bottom: 58.4 / 1557.3
  22441. }
  22442. },
  22443. dick: {
  22444. height: math.unit(6 * 0.208, "feet"),
  22445. name: "Dick",
  22446. image: {
  22447. source: "./media/characters/terrance-keayes/dick.svg"
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Canon Height",
  22454. height: math.unit(35, "miles"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(6, "feet"),
  22464. weight: math.unit(150, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/ofelia/front.svg",
  22468. extra: 546 / 541,
  22469. bottom: 39 / 583
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/ofelia/back.svg",
  22478. extra: 564 / 559.5,
  22479. bottom: 8.69 / 573.02
  22480. }
  22481. },
  22482. maw: {
  22483. height: math.unit(1, "feet"),
  22484. name: "Maw",
  22485. image: {
  22486. source: "./media/characters/ofelia/maw.svg"
  22487. }
  22488. },
  22489. foot: {
  22490. height: math.unit(1.949, "feet"),
  22491. name: "Foot",
  22492. image: {
  22493. source: "./media/characters/ofelia/foot.svg"
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Canon Height",
  22500. height: math.unit(2000, "miles"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22507. {
  22508. front: {
  22509. height: math.unit(6, "feet"),
  22510. weight: math.unit(150, "lb"),
  22511. name: "Front",
  22512. image: {
  22513. source: "./media/characters/samuel/front.svg",
  22514. extra: 265 / 258,
  22515. bottom: 2 / 266.1566
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Macro",
  22522. height: math.unit(100, "feet"),
  22523. default: true
  22524. },
  22525. {
  22526. name: "Full Size",
  22527. height: math.unit(1000, "miles")
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(6, "feet"),
  22536. weight: math.unit(300, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/beishir-kiel/front.svg",
  22540. extra: 569 / 547,
  22541. bottom: 41.9 / 609
  22542. }
  22543. },
  22544. maw: {
  22545. height: math.unit(6 * 0.202, "feet"),
  22546. name: "Maw",
  22547. image: {
  22548. source: "./media/characters/beishir-kiel/maw.svg"
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Macro",
  22555. height: math.unit(300, "feet"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(5 + 7/12, "feet"),
  22565. weight: math.unit(120, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/logan-grey/front.svg",
  22569. extra: 1836/1738,
  22570. bottom: 108/1944
  22571. }
  22572. },
  22573. back: {
  22574. height: math.unit(5 + 7/12, "feet"),
  22575. weight: math.unit(120, "lb"),
  22576. name: "Back",
  22577. image: {
  22578. source: "./media/characters/logan-grey/back.svg",
  22579. extra: 1880/1794,
  22580. bottom: 24/1904
  22581. }
  22582. },
  22583. frontSfw: {
  22584. height: math.unit(5 + 7/12, "feet"),
  22585. weight: math.unit(120, "lb"),
  22586. name: "Front (SFW)",
  22587. image: {
  22588. source: "./media/characters/logan-grey/front-sfw.svg",
  22589. extra: 1836/1738,
  22590. bottom: 108/1944
  22591. }
  22592. },
  22593. backSfw: {
  22594. height: math.unit(5 + 7/12, "feet"),
  22595. weight: math.unit(120, "lb"),
  22596. name: "Back (SFW)",
  22597. image: {
  22598. source: "./media/characters/logan-grey/back-sfw.svg",
  22599. extra: 1880/1794,
  22600. bottom: 24/1904
  22601. }
  22602. },
  22603. hands: {
  22604. height: math.unit(0.84, "feet"),
  22605. name: "Hands",
  22606. image: {
  22607. source: "./media/characters/logan-grey/hands.svg"
  22608. }
  22609. },
  22610. paws: {
  22611. height: math.unit(0.72, "feet"),
  22612. name: "Paws",
  22613. image: {
  22614. source: "./media/characters/logan-grey/paws.svg"
  22615. }
  22616. },
  22617. cock: {
  22618. height: math.unit(1.45, "feet"),
  22619. name: "Cock",
  22620. image: {
  22621. source: "./media/characters/logan-grey/cock.svg"
  22622. }
  22623. },
  22624. cockAlt: {
  22625. height: math.unit(1.437, "feet"),
  22626. name: "Cock (alt)",
  22627. image: {
  22628. source: "./media/characters/logan-grey/cock-alt.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Normal",
  22635. height: math.unit(5 + 8 / 12, "feet")
  22636. },
  22637. {
  22638. name: "The 500 Foot Femboy",
  22639. height: math.unit(500, "feet"),
  22640. default: true
  22641. },
  22642. {
  22643. name: "Megmacro",
  22644. height: math.unit(20, "miles")
  22645. },
  22646. ]
  22647. ))
  22648. characterMakers.push(() => makeCharacter(
  22649. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22650. {
  22651. front: {
  22652. height: math.unit(8 + 2 / 12, "feet"),
  22653. weight: math.unit(275, "lb"),
  22654. name: "Front",
  22655. image: {
  22656. source: "./media/characters/draganta/front.svg",
  22657. extra: 1177 / 1135,
  22658. bottom: 33.46 / 1212.1
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Normal",
  22665. height: math.unit(8 + 6 / 12, "feet"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(150, "feet")
  22671. },
  22672. {
  22673. name: "Megamacro",
  22674. height: math.unit(1000, "miles")
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(1.72, "m"),
  22683. weight: math.unit(80, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/voski/front.svg",
  22687. extra: 2076.22 / 2022.4,
  22688. bottom: 102.7 / 2177.3866
  22689. }
  22690. },
  22691. frontNsfw: {
  22692. height: math.unit(1.72, "m"),
  22693. weight: math.unit(80, "lb"),
  22694. name: "Front (NSFW)",
  22695. image: {
  22696. source: "./media/characters/voski/front-nsfw.svg",
  22697. extra: 2076.22 / 2022.4,
  22698. bottom: 102.7 / 2177.3866
  22699. }
  22700. },
  22701. back: {
  22702. height: math.unit(1.72, "m"),
  22703. weight: math.unit(80, "lb"),
  22704. name: "Back",
  22705. image: {
  22706. source: "./media/characters/voski/back.svg",
  22707. extra: 2104 / 2051,
  22708. bottom: 10.45 / 2113.63
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(1.72, "m")
  22716. },
  22717. {
  22718. name: "Macro",
  22719. height: math.unit(55, "m"),
  22720. default: true
  22721. },
  22722. {
  22723. name: "Macro+",
  22724. height: math.unit(300, "m")
  22725. },
  22726. {
  22727. name: "Macro++",
  22728. height: math.unit(700, "m")
  22729. },
  22730. {
  22731. name: "Macro+++",
  22732. height: math.unit(4500, "m")
  22733. },
  22734. {
  22735. name: "Macro++++",
  22736. height: math.unit(45, "km")
  22737. },
  22738. {
  22739. name: "Macro+++++",
  22740. height: math.unit(1220, "km")
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(2.3, "m"),
  22749. weight: math.unit(304, "kg"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/icowom-lee/front.svg",
  22753. extra: 985 / 955,
  22754. bottom: 25.4 / 1012
  22755. }
  22756. },
  22757. fronttentacles: {
  22758. height: math.unit(2.3, "m"),
  22759. weight: math.unit(304, "kg"),
  22760. name: "Front-tentacles",
  22761. image: {
  22762. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22763. extra: 985 / 955,
  22764. bottom: 25.4 / 1012
  22765. }
  22766. },
  22767. back: {
  22768. height: math.unit(2.3, "m"),
  22769. weight: math.unit(304, "kg"),
  22770. name: "Back",
  22771. image: {
  22772. source: "./media/characters/icowom-lee/back.svg",
  22773. extra: 975 / 954,
  22774. bottom: 9.5 / 985
  22775. }
  22776. },
  22777. backtentacles: {
  22778. height: math.unit(2.3, "m"),
  22779. weight: math.unit(304, "kg"),
  22780. name: "Back-tentacles",
  22781. image: {
  22782. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22783. extra: 975 / 954,
  22784. bottom: 9.5 / 985
  22785. }
  22786. },
  22787. frontDressed: {
  22788. height: math.unit(2.3, "m"),
  22789. weight: math.unit(304, "kg"),
  22790. name: "Front (Dressed)",
  22791. image: {
  22792. source: "./media/characters/icowom-lee/front-dressed.svg",
  22793. extra: 3076 / 2933,
  22794. bottom: 51.4 / 3125.1889
  22795. }
  22796. },
  22797. rump: {
  22798. height: math.unit(0.776, "meters"),
  22799. name: "Rump",
  22800. image: {
  22801. source: "./media/characters/icowom-lee/rump.svg"
  22802. }
  22803. },
  22804. genitals: {
  22805. height: math.unit(0.78, "meters"),
  22806. name: "Genitals",
  22807. image: {
  22808. source: "./media/characters/icowom-lee/genitals.svg"
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(2.3, "meters"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(94, "meters"),
  22821. default: true
  22822. },
  22823. ]
  22824. ))
  22825. characterMakers.push(() => makeCharacter(
  22826. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22827. {
  22828. front: {
  22829. height: math.unit(22, "meters"),
  22830. weight: math.unit(21000, "kg"),
  22831. name: "Front",
  22832. image: {
  22833. source: "./media/characters/shock-diamond/front.svg",
  22834. extra: 2204 / 2053,
  22835. bottom: 65 / 2239.47
  22836. }
  22837. },
  22838. frontNude: {
  22839. height: math.unit(22, "meters"),
  22840. weight: math.unit(21000, "kg"),
  22841. name: "Front (Nude)",
  22842. image: {
  22843. source: "./media/characters/shock-diamond/front-nude.svg",
  22844. extra: 2514 / 2285,
  22845. bottom: 13 / 2527.56
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Normal",
  22852. height: math.unit(3, "meters")
  22853. },
  22854. {
  22855. name: "Macro",
  22856. height: math.unit(22, "meters"),
  22857. default: true
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22863. {
  22864. front: {
  22865. height: math.unit(5 + 4 / 12, "feet"),
  22866. weight: math.unit(120, "lb"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/rory/front.svg",
  22870. extra: 1318/1241,
  22871. bottom: 42/1360
  22872. }
  22873. },
  22874. back: {
  22875. height: math.unit(5 + 4 / 12, "feet"),
  22876. weight: math.unit(120, "lb"),
  22877. name: "Back",
  22878. image: {
  22879. source: "./media/characters/rory/back.svg",
  22880. extra: 1318/1241,
  22881. bottom: 42/1360
  22882. }
  22883. },
  22884. butt: {
  22885. height: math.unit(1.74, "feet"),
  22886. name: "Butt",
  22887. image: {
  22888. source: "./media/characters/rory/butt.svg"
  22889. }
  22890. },
  22891. dick: {
  22892. height: math.unit(1.02, "feet"),
  22893. name: "Dick",
  22894. image: {
  22895. source: "./media/characters/rory/dick.svg"
  22896. }
  22897. },
  22898. paws: {
  22899. height: math.unit(1, "feet"),
  22900. name: "Paws",
  22901. image: {
  22902. source: "./media/characters/rory/paws.svg"
  22903. }
  22904. },
  22905. frontAlt: {
  22906. height: math.unit(5 + 4 / 12, "feet"),
  22907. weight: math.unit(120, "lb"),
  22908. name: "Front (Alt)",
  22909. image: {
  22910. source: "./media/characters/rory/front-alt.svg",
  22911. extra: 589 / 556,
  22912. bottom: 45.7 / 635.76
  22913. }
  22914. },
  22915. frontAltNude: {
  22916. height: math.unit(5 + 4 / 12, "feet"),
  22917. weight: math.unit(120, "lb"),
  22918. name: "Front (Alt, Nude)",
  22919. image: {
  22920. source: "./media/characters/rory/front-alt-nude.svg",
  22921. extra: 589 / 556,
  22922. bottom: 45.7 / 635.76
  22923. }
  22924. },
  22925. side: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Side",
  22929. image: {
  22930. source: "./media/characters/rory/side.svg",
  22931. extra: 597 / 564,
  22932. bottom: 55 / 653
  22933. }
  22934. },
  22935. backAlt: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Back (Alt)",
  22939. image: {
  22940. source: "./media/characters/rory/back-alt.svg",
  22941. extra: 620 / 585,
  22942. bottom: 8.86 / 630.43
  22943. }
  22944. },
  22945. dickAlt: {
  22946. height: math.unit(0.86, "feet"),
  22947. name: "Dick (Alt)",
  22948. image: {
  22949. source: "./media/characters/rory/dick-alt.svg"
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Normal",
  22956. height: math.unit(5 + 4 / 12, "feet"),
  22957. default: true
  22958. },
  22959. {
  22960. name: "Macro",
  22961. height: math.unit(100, "feet")
  22962. },
  22963. {
  22964. name: "Macro+",
  22965. height: math.unit(140, "feet")
  22966. },
  22967. {
  22968. name: "Macro++",
  22969. height: math.unit(300, "feet")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(5 + 9 / 12, "feet"),
  22978. weight: math.unit(190, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/sprisk/front.svg",
  22982. extra: 1225 / 1180,
  22983. bottom: 42.7 / 1266.4
  22984. }
  22985. },
  22986. frontNsfw: {
  22987. height: math.unit(5 + 9 / 12, "feet"),
  22988. weight: math.unit(190, "lb"),
  22989. name: "Front (NSFW)",
  22990. image: {
  22991. source: "./media/characters/sprisk/front-nsfw.svg",
  22992. extra: 1225 / 1180,
  22993. bottom: 42.7 / 1266.4
  22994. }
  22995. },
  22996. back: {
  22997. height: math.unit(5 + 9 / 12, "feet"),
  22998. weight: math.unit(190, "lb"),
  22999. name: "Back",
  23000. image: {
  23001. source: "./media/characters/sprisk/back.svg",
  23002. extra: 1247 / 1200,
  23003. bottom: 5.6 / 1253.04
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Tiny",
  23010. height: math.unit(2, "inches")
  23011. },
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(5 + 9 / 12, "feet"),
  23015. default: true
  23016. },
  23017. {
  23018. name: "Mini Macro",
  23019. height: math.unit(18, "feet")
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(100, "feet")
  23024. },
  23025. {
  23026. name: "MACRO",
  23027. height: math.unit(50, "miles")
  23028. },
  23029. {
  23030. name: "M A C R O",
  23031. height: math.unit(300, "miles")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23037. {
  23038. side: {
  23039. height: math.unit(15.6, "meters"),
  23040. weight: math.unit(700000, "kg"),
  23041. name: "Side",
  23042. image: {
  23043. source: "./media/characters/bunsen/side.svg",
  23044. extra: 1644 / 358
  23045. }
  23046. },
  23047. foot: {
  23048. height: math.unit(1.611 * 1644 / 358, "meter"),
  23049. name: "Foot",
  23050. image: {
  23051. source: "./media/characters/bunsen/foot.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Small",
  23058. height: math.unit(10, "feet")
  23059. },
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(15.6, "meters"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(4 + 11 / 12, "feet"),
  23072. weight: math.unit(140, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/sesh/front.svg",
  23076. extra: 3420 / 3231,
  23077. bottom: 72 / 3949.5
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(4 + 11 / 12, "feet")
  23085. },
  23086. {
  23087. name: "Grown",
  23088. height: math.unit(15, "feet"),
  23089. default: true
  23090. },
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(1500, "feet")
  23094. },
  23095. {
  23096. name: "Megamacro",
  23097. height: math.unit(30, "miles")
  23098. },
  23099. {
  23100. name: "Continental",
  23101. height: math.unit(3000, "miles")
  23102. },
  23103. {
  23104. name: "Gravity Mass",
  23105. height: math.unit(300000, "miles")
  23106. },
  23107. {
  23108. name: "Planet Buster",
  23109. height: math.unit(30000000, "miles")
  23110. },
  23111. {
  23112. name: "Big",
  23113. height: math.unit(3000000000, "miles")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(9, "feet"),
  23122. weight: math.unit(350, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/pepper/front.svg",
  23126. extra: 1448 / 1312,
  23127. bottom: 9.4 / 1457.88
  23128. }
  23129. },
  23130. back: {
  23131. height: math.unit(9, "feet"),
  23132. weight: math.unit(350, "lb"),
  23133. name: "Back",
  23134. image: {
  23135. source: "./media/characters/pepper/back.svg",
  23136. extra: 1423 / 1300,
  23137. bottom: 4.6 / 1429
  23138. }
  23139. },
  23140. maw: {
  23141. height: math.unit(0.932, "feet"),
  23142. name: "Maw",
  23143. image: {
  23144. source: "./media/characters/pepper/maw.svg"
  23145. }
  23146. },
  23147. },
  23148. [
  23149. {
  23150. name: "Normal",
  23151. height: math.unit(9, "feet"),
  23152. default: true
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(6, "feet"),
  23161. weight: math.unit(150, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/maelstrom/front.svg",
  23165. extra: 2100 / 1883,
  23166. bottom: 94 / 2196.7
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Less Kaiju",
  23173. height: math.unit(200, "feet")
  23174. },
  23175. {
  23176. name: "Kaiju",
  23177. height: math.unit(400, "feet"),
  23178. default: true
  23179. },
  23180. {
  23181. name: "Kaiju-er",
  23182. height: math.unit(600, "feet")
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(6 + 5 / 12, "feet"),
  23191. weight: math.unit(180, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/lexir/front.svg",
  23195. extra: 180 / 172,
  23196. bottom: 12 / 192
  23197. }
  23198. },
  23199. back: {
  23200. height: math.unit(6 + 5 / 12, "feet"),
  23201. weight: math.unit(180, "lb"),
  23202. name: "Back",
  23203. image: {
  23204. source: "./media/characters/lexir/back.svg",
  23205. extra: 183.84 / 175.5,
  23206. bottom: 3.1 / 187
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Very Smal",
  23213. height: math.unit(1, "nm")
  23214. },
  23215. {
  23216. name: "Normal",
  23217. height: math.unit(6 + 5 / 12, "feet"),
  23218. default: true
  23219. },
  23220. {
  23221. name: "Macro",
  23222. height: math.unit(1, "mile")
  23223. },
  23224. {
  23225. name: "Megamacro",
  23226. height: math.unit(50, "miles")
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23232. {
  23233. front: {
  23234. height: math.unit(1.5, "meters"),
  23235. weight: math.unit(100, "lb"),
  23236. name: "Front",
  23237. image: {
  23238. source: "./media/characters/maksio/front.svg",
  23239. extra: 1549 / 1531,
  23240. bottom: 123.7 / 1674.5429
  23241. }
  23242. },
  23243. back: {
  23244. height: math.unit(1.5, "meters"),
  23245. weight: math.unit(100, "lb"),
  23246. name: "Back",
  23247. image: {
  23248. source: "./media/characters/maksio/back.svg",
  23249. extra: 1541 / 1509,
  23250. bottom: 97 / 1639
  23251. }
  23252. },
  23253. hand: {
  23254. height: math.unit(0.621, "feet"),
  23255. name: "Hand",
  23256. image: {
  23257. source: "./media/characters/maksio/hand.svg"
  23258. }
  23259. },
  23260. foot: {
  23261. height: math.unit(1.611, "feet"),
  23262. name: "Foot",
  23263. image: {
  23264. source: "./media/characters/maksio/foot.svg"
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Shrunken",
  23271. height: math.unit(10, "cm")
  23272. },
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(150, "cm"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(100, "feet"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/erza-bear/front.svg",
  23288. extra: 2449 / 2390,
  23289. bottom: 46 / 2494
  23290. }
  23291. },
  23292. back: {
  23293. height: math.unit(100, "feet"),
  23294. name: "Back",
  23295. image: {
  23296. source: "./media/characters/erza-bear/back.svg",
  23297. extra: 2489 / 2430,
  23298. bottom: 85.4 / 2480
  23299. }
  23300. },
  23301. tail: {
  23302. height: math.unit(42, "feet"),
  23303. name: "Tail",
  23304. image: {
  23305. source: "./media/characters/erza-bear/tail.svg"
  23306. }
  23307. },
  23308. tongue: {
  23309. height: math.unit(8, "feet"),
  23310. name: "Tongue",
  23311. image: {
  23312. source: "./media/characters/erza-bear/tongue.svg"
  23313. }
  23314. },
  23315. dick: {
  23316. height: math.unit(10.5, "feet"),
  23317. name: "Dick",
  23318. image: {
  23319. source: "./media/characters/erza-bear/dick.svg"
  23320. }
  23321. },
  23322. dickVertical: {
  23323. height: math.unit(16.9, "feet"),
  23324. name: "Dick (Vertical)",
  23325. image: {
  23326. source: "./media/characters/erza-bear/dick-vertical.svg"
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(100, "feet"),
  23334. default: true
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23340. {
  23341. front: {
  23342. height: math.unit(172, "cm"),
  23343. weight: math.unit(73, "kg"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/violet-flor/front.svg",
  23347. extra: 1530 / 1442,
  23348. bottom: 61.9 / 1588.8
  23349. }
  23350. },
  23351. back: {
  23352. height: math.unit(180, "cm"),
  23353. weight: math.unit(73, "kg"),
  23354. name: "Back",
  23355. image: {
  23356. source: "./media/characters/violet-flor/back.svg",
  23357. extra: 1692 / 1630,
  23358. bottom: 20 / 1712
  23359. }
  23360. },
  23361. },
  23362. [
  23363. {
  23364. name: "Normal",
  23365. height: math.unit(172, "cm"),
  23366. default: true
  23367. },
  23368. ]
  23369. ))
  23370. characterMakers.push(() => makeCharacter(
  23371. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23372. {
  23373. front: {
  23374. height: math.unit(6, "feet"),
  23375. weight: math.unit(220, "lb"),
  23376. name: "Front",
  23377. image: {
  23378. source: "./media/characters/lynn-rhea/front.svg",
  23379. extra: 310 / 273
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(6, "feet"),
  23384. weight: math.unit(220, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/lynn-rhea/back.svg",
  23388. extra: 310 / 273
  23389. }
  23390. },
  23391. dicks: {
  23392. height: math.unit(0.9, "feet"),
  23393. name: "Dicks",
  23394. image: {
  23395. source: "./media/characters/lynn-rhea/dicks.svg"
  23396. }
  23397. },
  23398. slit: {
  23399. height: math.unit(0.4, "feet"),
  23400. name: "Slit",
  23401. image: {
  23402. source: "./media/characters/lynn-rhea/slit.svg"
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Micro",
  23409. height: math.unit(1, "inch")
  23410. },
  23411. {
  23412. name: "Macro",
  23413. height: math.unit(60, "feet"),
  23414. default: true
  23415. },
  23416. {
  23417. name: "Megamacro",
  23418. height: math.unit(2, "miles")
  23419. },
  23420. {
  23421. name: "Gigamacro",
  23422. height: math.unit(3, "earths")
  23423. },
  23424. {
  23425. name: "Galactic",
  23426. height: math.unit(0.8, "galaxies")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23432. {
  23433. front: {
  23434. height: math.unit(1600, "feet"),
  23435. weight: math.unit(85758785169, "kg"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/valathos/front.svg",
  23439. extra: 1451 / 1339
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(1600, "feet"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(7 + 5 / 12, "feet"),
  23456. weight: math.unit(300, "lb"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/azula/front.svg",
  23460. extra: 3208 / 2880,
  23461. bottom: 80.2 / 3277
  23462. }
  23463. },
  23464. back: {
  23465. height: math.unit(7 + 5 / 12, "feet"),
  23466. weight: math.unit(300, "lb"),
  23467. name: "Back",
  23468. image: {
  23469. source: "./media/characters/azula/back.svg",
  23470. extra: 3169 / 2822,
  23471. bottom: 150.6 / 3321
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(7 + 5 / 12, "feet"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Big",
  23483. height: math.unit(20, "feet")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(5 + 1 / 12, "feet"),
  23492. weight: math.unit(110, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/rupert/front.svg",
  23496. extra: 1549 / 1495,
  23497. bottom: 54.2 / 1604.4
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(5 + 1 / 12, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23511. {
  23512. front: {
  23513. height: math.unit(8 + 4 / 12, "feet"),
  23514. weight: math.unit(350, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/sheera-castellar/front.svg",
  23518. extra: 1957 / 1894,
  23519. bottom: 26.97 / 1975.017
  23520. }
  23521. },
  23522. side: {
  23523. height: math.unit(8 + 4 / 12, "feet"),
  23524. weight: math.unit(350, "lb"),
  23525. name: "Side",
  23526. image: {
  23527. source: "./media/characters/sheera-castellar/side.svg",
  23528. extra: 1957 / 1894
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(8 + 4 / 12, "feet"),
  23533. weight: math.unit(350, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/sheera-castellar/back.svg",
  23537. extra: 1957 / 1894
  23538. }
  23539. },
  23540. angled: {
  23541. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23542. weight: math.unit(350, "lb"),
  23543. name: "Angled",
  23544. image: {
  23545. source: "./media/characters/sheera-castellar/angled.svg",
  23546. extra: 1807 / 1707,
  23547. bottom: 68 / 1875
  23548. }
  23549. },
  23550. genitals: {
  23551. height: math.unit(2.2, "feet"),
  23552. name: "Genitals",
  23553. image: {
  23554. source: "./media/characters/sheera-castellar/genitals.svg"
  23555. }
  23556. },
  23557. taur: {
  23558. height: math.unit(10 + 6/12, "feet"),
  23559. name: "Taur",
  23560. image: {
  23561. source: "./media/characters/sheera-castellar/taur.svg",
  23562. extra: 2017/1909,
  23563. bottom: 185/2202
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(8 + 4 / 12, "feet")
  23571. },
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(150, "feet"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Macro+",
  23579. height: math.unit(800, "feet")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(6, "feet"),
  23588. weight: math.unit(150, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/jaipur/front.svg",
  23592. extra: 3860 / 3731,
  23593. bottom: 287 / 4140
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(6, "feet"),
  23598. weight: math.unit(150, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/jaipur/back.svg",
  23602. extra: 4060 / 3930,
  23603. bottom: 151 / 4200
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(1.85, "meters"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Macro",
  23615. height: math.unit(150, "meters")
  23616. },
  23617. {
  23618. name: "Macro+",
  23619. height: math.unit(0.5, "miles")
  23620. },
  23621. {
  23622. name: "Macro++",
  23623. height: math.unit(2.5, "miles")
  23624. },
  23625. {
  23626. name: "Macro+++",
  23627. height: math.unit(12, "miles")
  23628. },
  23629. {
  23630. name: "Macro++++",
  23631. height: math.unit(120, "miles")
  23632. },
  23633. {
  23634. name: "Macro+++++",
  23635. height: math.unit(1200, "miles")
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(6, "feet"),
  23644. weight: math.unit(150, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/sheila-wolf/front.svg",
  23648. extra: 1931 / 1808,
  23649. bottom: 29.5 / 1960
  23650. }
  23651. },
  23652. dick: {
  23653. height: math.unit(1.464, "feet"),
  23654. name: "Dick",
  23655. image: {
  23656. source: "./media/characters/sheila-wolf/dick.svg"
  23657. }
  23658. },
  23659. muzzle: {
  23660. height: math.unit(0.513, "feet"),
  23661. name: "Muzzle",
  23662. image: {
  23663. source: "./media/characters/sheila-wolf/muzzle.svg"
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(70, "feet"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(32, "meters"),
  23680. weight: math.unit(300000, "kg"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/almor/front.svg",
  23684. extra: 1408 / 1322,
  23685. bottom: 94.6 / 1506.5
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(32, "meters"),
  23693. default: true
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(7, "feet"),
  23702. weight: math.unit(200, "lb"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/silver/front.svg",
  23706. extra: 472.1 / 450.5,
  23707. bottom: 26.5 / 499.424
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(7, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(800, "feet")
  23720. },
  23721. {
  23722. name: "Megamacro",
  23723. height: math.unit(250, "miles")
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(6, "feet"),
  23732. weight: math.unit(150, "lb"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/pliskin/front.svg",
  23736. extra: 1469 / 1359,
  23737. bottom: 70 / 1540
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Micro",
  23744. height: math.unit(3, "inches")
  23745. },
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(5 + 11 / 12, "feet"),
  23749. default: true
  23750. },
  23751. {
  23752. name: "Macro",
  23753. height: math.unit(120, "feet")
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(6, "feet"),
  23762. weight: math.unit(150, "lb"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/sammy/front.svg",
  23766. extra: 1193 / 1089,
  23767. bottom: 30.5 / 1226
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Macro",
  23774. height: math.unit(1700, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Examacro",
  23779. height: math.unit(2.5e9, "lightyears")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(21, "meters"),
  23788. weight: math.unit(12, "tonnes"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/kuru/front.svg",
  23792. extra: 4301 / 3785,
  23793. bottom: 371.3 / 4691
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Macro",
  23800. height: math.unit(21, "meters"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(23, "meters"),
  23810. weight: math.unit(12.2, "tonnes"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/rakka/front.svg",
  23814. extra: 4670 / 4169,
  23815. bottom: 301 / 4968.7
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Macro",
  23822. height: math.unit(23, "meters"),
  23823. default: true
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(6, "feet"),
  23832. weight: math.unit(150, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/rhys-feline/front.svg",
  23836. extra: 2488 / 2308,
  23837. bottom: 35.67 / 2519.19
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Really Small",
  23844. height: math.unit(1, "nm")
  23845. },
  23846. {
  23847. name: "Micro",
  23848. height: math.unit(4, "inches")
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(4 + 10 / 12, "feet"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(100, "feet")
  23858. },
  23859. {
  23860. name: "Megamacto",
  23861. height: math.unit(50, "miles")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23867. {
  23868. side: {
  23869. height: math.unit(30, "feet"),
  23870. weight: math.unit(35000, "kg"),
  23871. name: "Side",
  23872. image: {
  23873. source: "./media/characters/alydar/side.svg",
  23874. extra: 234 / 222,
  23875. bottom: 6.5 / 241
  23876. }
  23877. },
  23878. front: {
  23879. height: math.unit(30, "feet"),
  23880. weight: math.unit(35000, "kg"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/alydar/front.svg",
  23884. extra: 223.37 / 210.2,
  23885. bottom: 22.3 / 246.76
  23886. }
  23887. },
  23888. top: {
  23889. height: math.unit(64.54, "feet"),
  23890. weight: math.unit(35000, "kg"),
  23891. name: "Top",
  23892. image: {
  23893. source: "./media/characters/alydar/top.svg"
  23894. }
  23895. },
  23896. anthro: {
  23897. height: math.unit(30, "feet"),
  23898. weight: math.unit(9000, "kg"),
  23899. name: "Anthro",
  23900. image: {
  23901. source: "./media/characters/alydar/anthro.svg",
  23902. extra: 432 / 421,
  23903. bottom: 7.18 / 440
  23904. }
  23905. },
  23906. maw: {
  23907. height: math.unit(11.693, "feet"),
  23908. name: "Maw",
  23909. image: {
  23910. source: "./media/characters/alydar/maw.svg"
  23911. }
  23912. },
  23913. head: {
  23914. height: math.unit(11.693, "feet"),
  23915. name: "Head",
  23916. image: {
  23917. source: "./media/characters/alydar/head.svg"
  23918. }
  23919. },
  23920. headAlt: {
  23921. height: math.unit(12.861, "feet"),
  23922. name: "Head (Alt)",
  23923. image: {
  23924. source: "./media/characters/alydar/head-alt.svg"
  23925. }
  23926. },
  23927. wing: {
  23928. height: math.unit(20.712, "feet"),
  23929. name: "Wing",
  23930. image: {
  23931. source: "./media/characters/alydar/wing.svg"
  23932. }
  23933. },
  23934. wingFeather: {
  23935. height: math.unit(9.662, "feet"),
  23936. name: "Wing Feather",
  23937. image: {
  23938. source: "./media/characters/alydar/wing-feather.svg"
  23939. }
  23940. },
  23941. countourFeather: {
  23942. height: math.unit(4.154, "feet"),
  23943. name: "Contour Feather",
  23944. image: {
  23945. source: "./media/characters/alydar/contour-feather.svg"
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Diplomatic",
  23952. height: math.unit(13, "feet"),
  23953. default: true
  23954. },
  23955. {
  23956. name: "Small",
  23957. height: math.unit(30, "feet")
  23958. },
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(95, "feet"),
  23962. default: true
  23963. },
  23964. {
  23965. name: "Large",
  23966. height: math.unit(285, "feet")
  23967. },
  23968. {
  23969. name: "Incomprehensible",
  23970. height: math.unit(450, "megameters")
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23976. {
  23977. side: {
  23978. height: math.unit(11, "feet"),
  23979. weight: math.unit(1750, "kg"),
  23980. name: "Side",
  23981. image: {
  23982. source: "./media/characters/selicia/side.svg",
  23983. extra: 440 / 396,
  23984. bottom: 24.8 / 465.979
  23985. }
  23986. },
  23987. maw: {
  23988. height: math.unit(4.665, "feet"),
  23989. name: "Maw",
  23990. image: {
  23991. source: "./media/characters/selicia/maw.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(11, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24005. {
  24006. side: {
  24007. height: math.unit(2 + 6 / 12, "feet"),
  24008. weight: math.unit(30, "lb"),
  24009. name: "Side",
  24010. image: {
  24011. source: "./media/characters/layla/side.svg",
  24012. extra: 244 / 188,
  24013. bottom: 18.2 / 262.1
  24014. }
  24015. },
  24016. back: {
  24017. height: math.unit(2 + 6 / 12, "feet"),
  24018. weight: math.unit(30, "lb"),
  24019. name: "Back",
  24020. image: {
  24021. source: "./media/characters/layla/back.svg",
  24022. extra: 308 / 241.5,
  24023. bottom: 8.9 / 316.8
  24024. }
  24025. },
  24026. cumming: {
  24027. height: math.unit(2 + 6 / 12, "feet"),
  24028. weight: math.unit(30, "lb"),
  24029. name: "Cumming",
  24030. image: {
  24031. source: "./media/characters/layla/cumming.svg",
  24032. extra: 342 / 279,
  24033. bottom: 595 / 938
  24034. }
  24035. },
  24036. dickFlaccid: {
  24037. height: math.unit(2.595, "feet"),
  24038. name: "Flaccid Genitals",
  24039. image: {
  24040. source: "./media/characters/layla/dick-flaccid.svg"
  24041. }
  24042. },
  24043. dickErect: {
  24044. height: math.unit(2.359, "feet"),
  24045. name: "Erect Genitals",
  24046. image: {
  24047. source: "./media/characters/layla/dick-erect.svg"
  24048. }
  24049. },
  24050. dragon: {
  24051. height: math.unit(40, "feet"),
  24052. name: "Dragon",
  24053. image: {
  24054. source: "./media/characters/layla/dragon.svg",
  24055. extra: 610/535,
  24056. bottom: 367/977
  24057. }
  24058. },
  24059. taur: {
  24060. height: math.unit(30, "feet"),
  24061. name: "Taur",
  24062. image: {
  24063. source: "./media/characters/layla/taur.svg",
  24064. extra: 1268/1199,
  24065. bottom: 112/1380
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Micro",
  24072. height: math.unit(1, "inch")
  24073. },
  24074. {
  24075. name: "Small",
  24076. height: math.unit(1, "foot")
  24077. },
  24078. {
  24079. name: "Normal",
  24080. height: math.unit(2 + 6 / 12, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Macro",
  24085. height: math.unit(200, "feet")
  24086. },
  24087. {
  24088. name: "Megamacro",
  24089. height: math.unit(1000, "miles")
  24090. },
  24091. {
  24092. name: "Planetary",
  24093. height: math.unit(8000, "miles")
  24094. },
  24095. {
  24096. name: "True Layla",
  24097. height: math.unit(200000 * 7, "multiverses")
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24103. {
  24104. back: {
  24105. height: math.unit(10.5, "feet"),
  24106. weight: math.unit(800, "lb"),
  24107. name: "Back",
  24108. image: {
  24109. source: "./media/characters/knox/back.svg",
  24110. extra: 1486 / 1089,
  24111. bottom: 107 / 1601.4
  24112. }
  24113. },
  24114. side: {
  24115. height: math.unit(10.5, "feet"),
  24116. weight: math.unit(800, "lb"),
  24117. name: "Side",
  24118. image: {
  24119. source: "./media/characters/knox/side.svg",
  24120. extra: 244 / 218,
  24121. bottom: 14 / 260
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Compact",
  24128. height: math.unit(10.5, "feet"),
  24129. default: true
  24130. },
  24131. {
  24132. name: "Dynamax",
  24133. height: math.unit(210, "feet")
  24134. },
  24135. {
  24136. name: "Full Macro",
  24137. height: math.unit(850, "feet")
  24138. },
  24139. ]
  24140. ))
  24141. characterMakers.push(() => makeCharacter(
  24142. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24143. {
  24144. front: {
  24145. height: math.unit(28, "feet"),
  24146. weight: math.unit(10500, "lb"),
  24147. name: "Front",
  24148. image: {
  24149. source: "./media/characters/kayda/front.svg",
  24150. extra: 1536 / 1428,
  24151. bottom: 68.7 / 1603
  24152. }
  24153. },
  24154. back: {
  24155. height: math.unit(28, "feet"),
  24156. weight: math.unit(10500, "lb"),
  24157. name: "Back",
  24158. image: {
  24159. source: "./media/characters/kayda/back.svg",
  24160. extra: 1557 / 1464,
  24161. bottom: 39.5 / 1597.49
  24162. }
  24163. },
  24164. dick: {
  24165. height: math.unit(3.858, "feet"),
  24166. name: "Dick",
  24167. image: {
  24168. source: "./media/characters/kayda/dick.svg"
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Macro",
  24175. height: math.unit(28, "feet"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(10 + 11 / 12, "feet"),
  24185. weight: math.unit(1400, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/brian/front.svg",
  24189. extra: 737 / 692,
  24190. bottom: 55.4 / 785
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(10 + 11 / 12, "feet"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(5 + 8 / 12, "feet"),
  24207. weight: math.unit(140, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/khemri/front.svg",
  24211. extra: 4780 / 4059,
  24212. bottom: 80.1 / 4859.25
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Micro",
  24219. height: math.unit(6, "inches")
  24220. },
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(5 + 8 / 12, "feet"),
  24224. default: true
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24230. {
  24231. front: {
  24232. height: math.unit(13, "feet"),
  24233. weight: math.unit(1700, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/felix-braveheart/front.svg",
  24237. extra: 1222 / 1157,
  24238. bottom: 53.2 / 1280
  24239. }
  24240. },
  24241. back: {
  24242. height: math.unit(13, "feet"),
  24243. weight: math.unit(1700, "lb"),
  24244. name: "Back",
  24245. image: {
  24246. source: "./media/characters/felix-braveheart/back.svg",
  24247. extra: 1277 / 1203,
  24248. bottom: 50.2 / 1327
  24249. }
  24250. },
  24251. feral: {
  24252. height: math.unit(6, "feet"),
  24253. weight: math.unit(400, "lb"),
  24254. name: "Feral",
  24255. image: {
  24256. source: "./media/characters/felix-braveheart/feral.svg",
  24257. extra: 682 / 625,
  24258. bottom: 6.9 / 688
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(13, "feet"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24272. {
  24273. side: {
  24274. height: math.unit(5 + 11 / 12, "feet"),
  24275. weight: math.unit(1400, "lb"),
  24276. name: "Side",
  24277. image: {
  24278. source: "./media/characters/shadow-blade/side.svg",
  24279. extra: 1726 / 1267,
  24280. bottom: 58.4 / 1785
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(5 + 11 / 12, "feet"),
  24288. default: true
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(1 + 6 / 12, "feet"),
  24297. weight: math.unit(25, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/karla-halldor/front.svg",
  24301. extra: 1459 / 1383,
  24302. bottom: 12 / 1472
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Normal",
  24309. height: math.unit(1 + 6 / 12, "feet"),
  24310. default: true
  24311. },
  24312. ]
  24313. ))
  24314. characterMakers.push(() => makeCharacter(
  24315. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24316. {
  24317. front: {
  24318. height: math.unit(6 + 2 / 12, "feet"),
  24319. weight: math.unit(160, "lb"),
  24320. name: "Front",
  24321. image: {
  24322. source: "./media/characters/ariam/front.svg",
  24323. extra: 1073/976,
  24324. bottom: 52/1125
  24325. }
  24326. },
  24327. back: {
  24328. height: math.unit(6 + 2/12, "feet"),
  24329. weight: math.unit(160, "lb"),
  24330. name: "Back",
  24331. image: {
  24332. source: "./media/characters/ariam/back.svg",
  24333. extra: 1103/1023,
  24334. bottom: 9/1112
  24335. }
  24336. },
  24337. dressed: {
  24338. height: math.unit(6 + 2/12, "feet"),
  24339. weight: math.unit(160, "lb"),
  24340. name: "Dressed",
  24341. image: {
  24342. source: "./media/characters/ariam/dressed.svg",
  24343. extra: 1099/1009,
  24344. bottom: 25/1124
  24345. }
  24346. },
  24347. squatting: {
  24348. height: math.unit(4.1, "feet"),
  24349. weight: math.unit(160, "lb"),
  24350. name: "Squatting",
  24351. image: {
  24352. source: "./media/characters/ariam/squatting.svg",
  24353. extra: 2617 / 2112,
  24354. bottom: 61.2 / 2681,
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(6 + 2 / 12, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Normal+",
  24366. height: math.unit(4, "meters")
  24367. },
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(50, "meters")
  24371. },
  24372. {
  24373. name: "Macro+",
  24374. height: math.unit(100, "meters")
  24375. },
  24376. {
  24377. name: "Megamacro",
  24378. height: math.unit(20, "km")
  24379. },
  24380. {
  24381. name: "Caretaker",
  24382. height: math.unit(444, "megameters")
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24388. {
  24389. front: {
  24390. height: math.unit(1.67, "meters"),
  24391. weight: math.unit(140, "lb"),
  24392. name: "Front",
  24393. image: {
  24394. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24395. extra: 438 / 410,
  24396. bottom: 0.75 / 439
  24397. }
  24398. },
  24399. },
  24400. [
  24401. {
  24402. name: "Shrunken",
  24403. height: math.unit(7.6, "cm")
  24404. },
  24405. {
  24406. name: "Human Scale",
  24407. height: math.unit(1.67, "meters")
  24408. },
  24409. {
  24410. name: "Wolxi Scale",
  24411. height: math.unit(36.7, "meters"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24418. {
  24419. front: {
  24420. height: math.unit(1.73, "meters"),
  24421. weight: math.unit(240, "lb"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/izue-two-mothers/front.svg",
  24425. extra: 469 / 437,
  24426. bottom: 1.24 / 470.6
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Shrunken",
  24433. height: math.unit(7.86, "cm")
  24434. },
  24435. {
  24436. name: "Human Scale",
  24437. height: math.unit(1.73, "meters")
  24438. },
  24439. {
  24440. name: "Wolxi Scale",
  24441. height: math.unit(38, "meters"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(1.55, "meters"),
  24451. weight: math.unit(120, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/teeku-love-shack/front.svg",
  24455. extra: 387 / 362,
  24456. bottom: 1.51 / 388
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Shrunken",
  24463. height: math.unit(7, "cm")
  24464. },
  24465. {
  24466. name: "Human Scale",
  24467. height: math.unit(1.55, "meters")
  24468. },
  24469. {
  24470. name: "Wolxi Scale",
  24471. height: math.unit(34.1, "meters"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(1.83, "meters"),
  24481. weight: math.unit(135, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/dejma-the-red/front.svg",
  24485. extra: 480 / 458,
  24486. bottom: 1.8 / 482
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Shrunken",
  24493. height: math.unit(8.3, "cm")
  24494. },
  24495. {
  24496. name: "Human Scale",
  24497. height: math.unit(1.83, "meters")
  24498. },
  24499. {
  24500. name: "Wolxi Scale",
  24501. height: math.unit(40, "meters"),
  24502. default: true
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(1.78, "meters"),
  24511. weight: math.unit(65, "kg"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/aki/front.svg",
  24515. extra: 452 / 415
  24516. }
  24517. },
  24518. frontNsfw: {
  24519. height: math.unit(1.78, "meters"),
  24520. weight: math.unit(65, "kg"),
  24521. name: "Front (NSFW)",
  24522. image: {
  24523. source: "./media/characters/aki/front-nsfw.svg",
  24524. extra: 452 / 415
  24525. }
  24526. },
  24527. back: {
  24528. height: math.unit(1.78, "meters"),
  24529. weight: math.unit(65, "kg"),
  24530. name: "Back",
  24531. image: {
  24532. source: "./media/characters/aki/back.svg",
  24533. extra: 452 / 415
  24534. }
  24535. },
  24536. rump: {
  24537. height: math.unit(2.05, "feet"),
  24538. name: "Rump",
  24539. image: {
  24540. source: "./media/characters/aki/rump.svg"
  24541. }
  24542. },
  24543. dick: {
  24544. height: math.unit(0.95, "feet"),
  24545. name: "Dick",
  24546. image: {
  24547. source: "./media/characters/aki/dick.svg"
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Micro",
  24554. height: math.unit(15, "cm")
  24555. },
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(178, "cm"),
  24559. default: true
  24560. },
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(214, "m")
  24564. },
  24565. {
  24566. name: "Macro+",
  24567. height: math.unit(534, "m")
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(5 + 5 / 12, "feet"),
  24576. weight: math.unit(120, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/ari/front.svg",
  24580. extra: 714.5 / 682,
  24581. bottom: 8 / 722.5
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(5 + 5 / 12, "feet")
  24589. },
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(100, "feet"),
  24593. default: true
  24594. },
  24595. {
  24596. name: "Megamacro",
  24597. height: math.unit(100, "miles")
  24598. },
  24599. {
  24600. name: "Gigamacro",
  24601. height: math.unit(80000, "miles")
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24607. {
  24608. side: {
  24609. height: math.unit(9, "feet"),
  24610. weight: math.unit(400, "kg"),
  24611. name: "Side",
  24612. image: {
  24613. source: "./media/characters/bolt/side.svg",
  24614. extra: 1126 / 896,
  24615. bottom: 60 / 1187.3,
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Micro",
  24622. height: math.unit(5, "inches")
  24623. },
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(9, "feet"),
  24627. default: true
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(700, "feet")
  24632. },
  24633. {
  24634. name: "Max Size",
  24635. height: math.unit(1.52e22, "yottameters")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(4.53, "meters"),
  24644. weight: math.unit(3, "tons"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/draekon-sylviar/front.svg",
  24648. extra: 1228 / 1068,
  24649. bottom: 41 / 1270
  24650. }
  24651. },
  24652. tail: {
  24653. height: math.unit(1.772, "meter"),
  24654. name: "Tail",
  24655. image: {
  24656. source: "./media/characters/draekon-sylviar/tail.svg"
  24657. }
  24658. },
  24659. head: {
  24660. height: math.unit(1.331, "meter"),
  24661. name: "Head",
  24662. image: {
  24663. source: "./media/characters/draekon-sylviar/head.svg"
  24664. }
  24665. },
  24666. hand: {
  24667. height: math.unit(0.564, "meter"),
  24668. name: "Hand",
  24669. image: {
  24670. source: "./media/characters/draekon-sylviar/hand.svg"
  24671. }
  24672. },
  24673. foot: {
  24674. height: math.unit(0.621, "meter"),
  24675. name: "Foot",
  24676. image: {
  24677. source: "./media/characters/draekon-sylviar/foot.svg",
  24678. bottom: 32 / 324
  24679. }
  24680. },
  24681. dick: {
  24682. height: math.unit(61, "cm"),
  24683. name: "Dick",
  24684. image: {
  24685. source: "./media/characters/draekon-sylviar/dick.svg"
  24686. }
  24687. },
  24688. dickseparated: {
  24689. height: math.unit(61, "cm"),
  24690. name: "Dick-separated",
  24691. image: {
  24692. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Small",
  24699. height: math.unit(4.53 / 2, "meters"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(4.53, "meters"),
  24705. default: true
  24706. },
  24707. {
  24708. name: "Large",
  24709. height: math.unit(4.53 * 2, "meters"),
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24715. {
  24716. front: {
  24717. height: math.unit(6 + 2 / 12, "feet"),
  24718. weight: math.unit(180, "lb"),
  24719. name: "Front",
  24720. image: {
  24721. source: "./media/characters/brawler/front.svg",
  24722. extra: 3301 / 3027,
  24723. bottom: 138 / 3439
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(6 + 2 / 12, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(11, "feet"),
  24740. weight: math.unit(1000, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/alex/front.svg",
  24744. bottom: 44.5 / 620
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Micro",
  24751. height: math.unit(5, "inches")
  24752. },
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(11, "feet"),
  24756. default: true
  24757. },
  24758. {
  24759. name: "Macro",
  24760. height: math.unit(9.5e9, "feet")
  24761. },
  24762. {
  24763. name: "Max Size",
  24764. height: math.unit(1.4e283, "yottameters")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24770. {
  24771. female: {
  24772. height: math.unit(29.9, "m"),
  24773. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24774. name: "Female",
  24775. image: {
  24776. source: "./media/characters/zenari/female.svg",
  24777. extra: 3281.6 / 3217,
  24778. bottom: 72.2 / 3353
  24779. }
  24780. },
  24781. male: {
  24782. height: math.unit(27.7, "m"),
  24783. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24784. name: "Male",
  24785. image: {
  24786. source: "./media/characters/zenari/male.svg",
  24787. extra: 3008 / 2991,
  24788. bottom: 54.6 / 3069
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Macro",
  24795. height: math.unit(29.7, "meters"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24802. {
  24803. female: {
  24804. height: math.unit(23.8, "m"),
  24805. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24806. name: "Female",
  24807. image: {
  24808. source: "./media/characters/mactarian/female.svg",
  24809. extra: 2662 / 2569,
  24810. bottom: 73 / 2736
  24811. }
  24812. },
  24813. male: {
  24814. height: math.unit(23.8, "m"),
  24815. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24816. name: "Male",
  24817. image: {
  24818. source: "./media/characters/mactarian/male.svg",
  24819. extra: 2673 / 2600,
  24820. bottom: 76 / 2750
  24821. }
  24822. },
  24823. },
  24824. [
  24825. {
  24826. name: "Macro",
  24827. height: math.unit(23.8, "meters"),
  24828. default: true
  24829. },
  24830. ]
  24831. ))
  24832. characterMakers.push(() => makeCharacter(
  24833. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24834. {
  24835. female: {
  24836. height: math.unit(19.3, "m"),
  24837. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24838. name: "Female",
  24839. image: {
  24840. source: "./media/characters/umok/female.svg",
  24841. extra: 2186 / 2078,
  24842. bottom: 87 / 2277
  24843. }
  24844. },
  24845. male: {
  24846. height: math.unit(19.5, "m"),
  24847. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24848. name: "Male",
  24849. image: {
  24850. source: "./media/characters/umok/male.svg",
  24851. extra: 2233 / 2140,
  24852. bottom: 24.4 / 2258
  24853. }
  24854. },
  24855. },
  24856. [
  24857. {
  24858. name: "Macro",
  24859. height: math.unit(19.3, "meters"),
  24860. default: true
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24866. {
  24867. female: {
  24868. height: math.unit(26.15, "m"),
  24869. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24870. name: "Female",
  24871. image: {
  24872. source: "./media/characters/joraxian/female.svg",
  24873. extra: 2912 / 2824,
  24874. bottom: 36 / 2956
  24875. }
  24876. },
  24877. male: {
  24878. height: math.unit(25.4, "m"),
  24879. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24880. name: "Male",
  24881. image: {
  24882. source: "./media/characters/joraxian/male.svg",
  24883. extra: 2877 / 2721,
  24884. bottom: 82 / 2967
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Macro",
  24891. height: math.unit(26.15, "meters"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24898. {
  24899. female: {
  24900. height: math.unit(21.6, "m"),
  24901. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24902. name: "Female",
  24903. image: {
  24904. source: "./media/characters/sthara/female.svg",
  24905. extra: 2516 / 2347,
  24906. bottom: 21.5 / 2537
  24907. }
  24908. },
  24909. male: {
  24910. height: math.unit(24, "m"),
  24911. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24912. name: "Male",
  24913. image: {
  24914. source: "./media/characters/sthara/male.svg",
  24915. extra: 2732 / 2607,
  24916. bottom: 23 / 2732
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Macro",
  24923. height: math.unit(21.6, "meters"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(6 + 4 / 12, "feet"),
  24933. weight: math.unit(175, "lb"),
  24934. name: "Front",
  24935. image: {
  24936. source: "./media/characters/luka-bryzant/front.svg",
  24937. extra: 311 / 289,
  24938. bottom: 4 / 315
  24939. }
  24940. },
  24941. back: {
  24942. height: math.unit(6 + 4 / 12, "feet"),
  24943. weight: math.unit(175, "lb"),
  24944. name: "Back",
  24945. image: {
  24946. source: "./media/characters/luka-bryzant/back.svg",
  24947. extra: 311 / 289,
  24948. bottom: 3.8 / 313.7
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Micro",
  24955. height: math.unit(10, "inches")
  24956. },
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(6 + 4 / 12, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Large",
  24964. height: math.unit(12, "feet")
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(5 + 7 / 12, "feet"),
  24973. weight: math.unit(185, "lb"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/aman-aquila/front.svg",
  24977. extra: 1013 / 976,
  24978. bottom: 45.6 / 1057
  24979. }
  24980. },
  24981. side: {
  24982. height: math.unit(5 + 7 / 12, "feet"),
  24983. weight: math.unit(185, "lb"),
  24984. name: "Side",
  24985. image: {
  24986. source: "./media/characters/aman-aquila/side.svg",
  24987. extra: 1054 / 1011,
  24988. bottom: 15 / 1070
  24989. }
  24990. },
  24991. back: {
  24992. height: math.unit(5 + 7 / 12, "feet"),
  24993. weight: math.unit(185, "lb"),
  24994. name: "Back",
  24995. image: {
  24996. source: "./media/characters/aman-aquila/back.svg",
  24997. extra: 1026 / 970,
  24998. bottom: 12 / 1039
  24999. }
  25000. },
  25001. head: {
  25002. height: math.unit(1.211, "feet"),
  25003. name: "Head",
  25004. image: {
  25005. source: "./media/characters/aman-aquila/head.svg",
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Minimicro",
  25012. height: math.unit(0.057, "inches")
  25013. },
  25014. {
  25015. name: "Micro",
  25016. height: math.unit(7, "inches")
  25017. },
  25018. {
  25019. name: "Mini",
  25020. height: math.unit(3 + 7 / 12, "feet")
  25021. },
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(5 + 7 / 12, "feet"),
  25025. default: true
  25026. },
  25027. {
  25028. name: "Macro",
  25029. height: math.unit(157 + 7 / 12, "feet")
  25030. },
  25031. {
  25032. name: "Megamacro",
  25033. height: math.unit(1557 + 7 / 12, "feet")
  25034. },
  25035. {
  25036. name: "Gigamacro",
  25037. height: math.unit(15557 + 7 / 12, "feet")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(3 + 2 / 12, "inches"),
  25046. weight: math.unit(0.3, "ounces"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/hiphae/front.svg",
  25050. extra: 1931 / 1683,
  25051. bottom: 24 / 1955
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(3 + 1 / 2, "inches"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(5 + 10 / 12, "feet"),
  25068. weight: math.unit(165, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/nicky/front.svg",
  25072. extra: 3144 / 2886,
  25073. bottom: 45.6 / 3192
  25074. }
  25075. },
  25076. back: {
  25077. height: math.unit(5 + 10 / 12, "feet"),
  25078. weight: math.unit(165, "lb"),
  25079. name: "Back",
  25080. image: {
  25081. source: "./media/characters/nicky/back.svg",
  25082. extra: 3055 / 2804,
  25083. bottom: 28.4 / 3087
  25084. }
  25085. },
  25086. frontclothed: {
  25087. height: math.unit(5 + 10 / 12, "feet"),
  25088. weight: math.unit(165, "lb"),
  25089. name: "Front-clothed",
  25090. image: {
  25091. source: "./media/characters/nicky/front-clothed.svg",
  25092. extra: 3184.9 / 2926.9,
  25093. bottom: 86.5 / 3239.9
  25094. }
  25095. },
  25096. foot: {
  25097. height: math.unit(1.16, "feet"),
  25098. name: "Foot",
  25099. image: {
  25100. source: "./media/characters/nicky/foot.svg"
  25101. }
  25102. },
  25103. feet: {
  25104. height: math.unit(1.34, "feet"),
  25105. name: "Feet",
  25106. image: {
  25107. source: "./media/characters/nicky/feet.svg"
  25108. }
  25109. },
  25110. maw: {
  25111. height: math.unit(0.9, "feet"),
  25112. name: "Maw",
  25113. image: {
  25114. source: "./media/characters/nicky/maw.svg"
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(5 + 10 / 12, "feet"),
  25122. default: true
  25123. },
  25124. {
  25125. name: "Macro",
  25126. height: math.unit(60, "feet")
  25127. },
  25128. {
  25129. name: "Megamacro",
  25130. height: math.unit(1, "mile")
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25136. {
  25137. side: {
  25138. height: math.unit(10, "feet"),
  25139. weight: math.unit(600, "lb"),
  25140. name: "Side",
  25141. image: {
  25142. source: "./media/characters/blair/side.svg",
  25143. bottom: 16.6 / 475,
  25144. extra: 458 / 431
  25145. }
  25146. },
  25147. },
  25148. [
  25149. {
  25150. name: "Micro",
  25151. height: math.unit(8, "inches")
  25152. },
  25153. {
  25154. name: "Normal",
  25155. height: math.unit(10, "feet"),
  25156. default: true
  25157. },
  25158. {
  25159. name: "Macro",
  25160. height: math.unit(180, "feet")
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(5 + 4 / 12, "feet"),
  25169. weight: math.unit(125, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/fisher/front.svg",
  25173. extra: 444 / 390,
  25174. bottom: 2 / 444.8
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Micro",
  25181. height: math.unit(4, "inches")
  25182. },
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(5 + 4 / 12, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Macro",
  25190. height: math.unit(100, "feet")
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(6.71, "feet"),
  25199. weight: math.unit(200, "lb"),
  25200. capacity: math.unit(1000000, "people"),
  25201. name: "Front",
  25202. image: {
  25203. source: "./media/characters/gliss/front.svg",
  25204. extra: 2347 / 2231,
  25205. bottom: 113 / 2462
  25206. }
  25207. },
  25208. hammerspaceSize: {
  25209. height: math.unit(6.71 * 717, "feet"),
  25210. weight: math.unit(200, "lb"),
  25211. capacity: math.unit(1000000, "people"),
  25212. name: "Hammerspace Size",
  25213. image: {
  25214. source: "./media/characters/gliss/front.svg",
  25215. extra: 2347 / 2231,
  25216. bottom: 113 / 2462
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(6.71, "feet"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25230. {
  25231. side: {
  25232. height: math.unit(1.44, "m"),
  25233. weight: math.unit(80, "kg"),
  25234. name: "Side",
  25235. image: {
  25236. source: "./media/characters/dune-anderson/side.svg",
  25237. bottom: 49 / 1426
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Wolf-sized",
  25244. height: math.unit(1.44, "meters")
  25245. },
  25246. {
  25247. name: "Normal",
  25248. height: math.unit(5.05, "meters"),
  25249. default: true
  25250. },
  25251. {
  25252. name: "Big",
  25253. height: math.unit(14.4, "meters")
  25254. },
  25255. {
  25256. name: "Huge",
  25257. height: math.unit(144, "meters")
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(7, "feet"),
  25266. weight: math.unit(425, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/hind/front.svg",
  25270. extra: 2091 / 1860,
  25271. bottom: 129 / 2220
  25272. }
  25273. },
  25274. back: {
  25275. height: math.unit(7, "feet"),
  25276. weight: math.unit(425, "lb"),
  25277. name: "Back",
  25278. image: {
  25279. source: "./media/characters/hind/back.svg",
  25280. extra: 2091 / 1860,
  25281. bottom: 24.6 / 2309
  25282. }
  25283. },
  25284. tail: {
  25285. height: math.unit(2.8, "feet"),
  25286. name: "Tail",
  25287. image: {
  25288. source: "./media/characters/hind/tail.svg"
  25289. }
  25290. },
  25291. head: {
  25292. height: math.unit(2.55, "feet"),
  25293. name: "Head",
  25294. image: {
  25295. source: "./media/characters/hind/head.svg"
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "XS",
  25302. height: math.unit(0.7, "feet")
  25303. },
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(7, "feet"),
  25307. default: true
  25308. },
  25309. {
  25310. name: "XL",
  25311. height: math.unit(70, "feet")
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(2.1, "meters"),
  25320. weight: math.unit(150, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/tharquench-sizestealer/front.svg",
  25324. extra: 1605/1470,
  25325. bottom: 36/1641
  25326. }
  25327. },
  25328. frontAlt: {
  25329. height: math.unit(2.1, "meters"),
  25330. weight: math.unit(150, "lb"),
  25331. name: "Front (Alt)",
  25332. image: {
  25333. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25334. extra: 2318 / 2063,
  25335. bottom: 93.4 / 2410
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Nano",
  25342. height: math.unit(1, "mm")
  25343. },
  25344. {
  25345. name: "Micro",
  25346. height: math.unit(1, "cm")
  25347. },
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(2.1, "meters"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25357. {
  25358. front: {
  25359. height: math.unit(7 + 5 / 12, "feet"),
  25360. weight: math.unit(357, "lb"),
  25361. name: "Front",
  25362. image: {
  25363. source: "./media/characters/solex-draconov/front.svg",
  25364. extra: 1993 / 1865,
  25365. bottom: 117 / 2111
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Natural Height",
  25372. height: math.unit(7 + 5 / 12, "feet"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Macro",
  25377. height: math.unit(350, "feet")
  25378. },
  25379. {
  25380. name: "Macro+",
  25381. height: math.unit(1000, "feet")
  25382. },
  25383. {
  25384. name: "Megamacro",
  25385. height: math.unit(20, "km")
  25386. },
  25387. {
  25388. name: "Megamacro+",
  25389. height: math.unit(1000, "km")
  25390. },
  25391. {
  25392. name: "Gigamacro",
  25393. height: math.unit(2.5, "Gm")
  25394. },
  25395. {
  25396. name: "Teramacro",
  25397. height: math.unit(15, "Tm")
  25398. },
  25399. {
  25400. name: "Galactic",
  25401. height: math.unit(30, "Zm")
  25402. },
  25403. {
  25404. name: "Universal",
  25405. height: math.unit(21000, "Ym")
  25406. },
  25407. {
  25408. name: "Omniversal",
  25409. height: math.unit(9.861e50, "Ym")
  25410. },
  25411. {
  25412. name: "Existential",
  25413. height: math.unit(1e300, "meters")
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25419. {
  25420. side: {
  25421. height: math.unit(25, "feet"),
  25422. weight: math.unit(90000, "lb"),
  25423. name: "Side",
  25424. image: {
  25425. source: "./media/characters/mandarax/side.svg",
  25426. extra: 614 / 332,
  25427. bottom: 55 / 630
  25428. }
  25429. },
  25430. head: {
  25431. height: math.unit(11.4, "feet"),
  25432. name: "Head",
  25433. image: {
  25434. source: "./media/characters/mandarax/head.svg"
  25435. }
  25436. },
  25437. belly: {
  25438. height: math.unit(33, "feet"),
  25439. name: "Belly",
  25440. capacity: math.unit(500, "people"),
  25441. image: {
  25442. source: "./media/characters/mandarax/belly.svg"
  25443. }
  25444. },
  25445. dick: {
  25446. height: math.unit(8.46, "feet"),
  25447. name: "Dick",
  25448. image: {
  25449. source: "./media/characters/mandarax/dick.svg"
  25450. }
  25451. },
  25452. top: {
  25453. height: math.unit(28, "meters"),
  25454. name: "Top",
  25455. image: {
  25456. source: "./media/characters/mandarax/top.svg"
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(25, "feet"),
  25464. default: true
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25470. {
  25471. front: {
  25472. height: math.unit(5, "feet"),
  25473. weight: math.unit(90, "lb"),
  25474. name: "Front",
  25475. image: {
  25476. source: "./media/characters/pixil/front.svg",
  25477. extra: 2000 / 1618,
  25478. bottom: 12.3 / 2011
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(5, "feet"),
  25486. default: true
  25487. },
  25488. {
  25489. name: "Megamacro",
  25490. height: math.unit(10, "miles"),
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(7 + 2 / 12, "feet"),
  25499. weight: math.unit(200, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/angel/front.svg",
  25503. extra: 1830 / 1737,
  25504. bottom: 22.6 / 1854,
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(7 + 2 / 12, "feet"),
  25512. default: true
  25513. },
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(1000, "feet")
  25517. },
  25518. {
  25519. name: "Megamacro",
  25520. height: math.unit(2, "miles")
  25521. },
  25522. {
  25523. name: "Gigamacro",
  25524. height: math.unit(20, "earths")
  25525. },
  25526. ]
  25527. ))
  25528. characterMakers.push(() => makeCharacter(
  25529. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25530. {
  25531. front: {
  25532. height: math.unit(5, "feet"),
  25533. weight: math.unit(180, "lb"),
  25534. name: "Front",
  25535. image: {
  25536. source: "./media/characters/mekana/front.svg",
  25537. extra: 1671 / 1605,
  25538. bottom: 3.5 / 1691
  25539. }
  25540. },
  25541. side: {
  25542. height: math.unit(5, "feet"),
  25543. weight: math.unit(180, "lb"),
  25544. name: "Side",
  25545. image: {
  25546. source: "./media/characters/mekana/side.svg",
  25547. extra: 1671 / 1605,
  25548. bottom: 3.5 / 1691
  25549. }
  25550. },
  25551. back: {
  25552. height: math.unit(5, "feet"),
  25553. weight: math.unit(180, "lb"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/mekana/back.svg",
  25557. extra: 1671 / 1605,
  25558. bottom: 3.5 / 1691
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(5, "feet"),
  25566. default: true
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25572. {
  25573. front: {
  25574. height: math.unit(4 + 6 / 12, "feet"),
  25575. weight: math.unit(80, "lb"),
  25576. name: "Front",
  25577. image: {
  25578. source: "./media/characters/pixie/front.svg",
  25579. extra: 1924 / 1825,
  25580. bottom: 22.4 / 1946
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Normal",
  25587. height: math.unit(4 + 6 / 12, "feet"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(40, "feet")
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(2.1, "meters"),
  25601. weight: math.unit(200, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/the-lascivious/front.svg",
  25605. extra: 1 / 0.893,
  25606. bottom: 3.5 / 573.7
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Human Scale",
  25613. height: math.unit(2.1, "meters")
  25614. },
  25615. {
  25616. name: "Wolxi Scale",
  25617. height: math.unit(46.2, "m"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Boinker of Buildings",
  25622. height: math.unit(10, "km")
  25623. },
  25624. {
  25625. name: "Shagger of Skyscrapers",
  25626. height: math.unit(40, "km")
  25627. },
  25628. {
  25629. name: "Banger of Boroughs",
  25630. height: math.unit(4000, "km")
  25631. },
  25632. {
  25633. name: "Screwer of States",
  25634. height: math.unit(100000, "km")
  25635. },
  25636. {
  25637. name: "Pounder of Planets",
  25638. height: math.unit(2000000, "km")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(6, "feet"),
  25647. weight: math.unit(150, "lb"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/aj/front.svg",
  25651. extra: 2039 / 1562,
  25652. bottom: 40 / 2079
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(11 + 6 / 12, "feet"),
  25660. default: true
  25661. },
  25662. {
  25663. name: "Megamacro",
  25664. height: math.unit(60, "megameters")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25670. {
  25671. side: {
  25672. height: math.unit(31 + 8 / 12, "feet"),
  25673. weight: math.unit(75000, "kg"),
  25674. name: "Side",
  25675. image: {
  25676. source: "./media/characters/koros/side.svg",
  25677. extra: 1442 / 1297,
  25678. bottom: 122.7 / 1562
  25679. }
  25680. },
  25681. dicksKingsCrown: {
  25682. height: math.unit(6, "feet"),
  25683. name: "Dicks (King's Crown)",
  25684. image: {
  25685. source: "./media/characters/koros/dicks-kings-crown.svg"
  25686. }
  25687. },
  25688. dicksTailSet: {
  25689. height: math.unit(3, "feet"),
  25690. name: "Dicks (Tail Set)",
  25691. image: {
  25692. source: "./media/characters/koros/dicks-tail-set.svg"
  25693. }
  25694. },
  25695. dickCumming: {
  25696. height: math.unit(7.98, "feet"),
  25697. name: "Dick (Cumming)",
  25698. image: {
  25699. source: "./media/characters/koros/dick-cumming.svg"
  25700. }
  25701. },
  25702. dicksBack: {
  25703. height: math.unit(5.9, "feet"),
  25704. name: "Dicks (Back)",
  25705. image: {
  25706. source: "./media/characters/koros/dicks-back.svg"
  25707. }
  25708. },
  25709. dicksFront: {
  25710. height: math.unit(3.72, "feet"),
  25711. name: "Dicks (Front)",
  25712. image: {
  25713. source: "./media/characters/koros/dicks-front.svg"
  25714. }
  25715. },
  25716. dicksPeeking: {
  25717. height: math.unit(3.0, "feet"),
  25718. name: "Dicks (Peeking)",
  25719. image: {
  25720. source: "./media/characters/koros/dicks-peeking.svg"
  25721. }
  25722. },
  25723. eye: {
  25724. height: math.unit(1.7, "feet"),
  25725. name: "Eye",
  25726. image: {
  25727. source: "./media/characters/koros/eye.svg"
  25728. }
  25729. },
  25730. headFront: {
  25731. height: math.unit(11.69, "feet"),
  25732. name: "Head (Front)",
  25733. image: {
  25734. source: "./media/characters/koros/head-front.svg"
  25735. }
  25736. },
  25737. headSide: {
  25738. height: math.unit(14, "feet"),
  25739. name: "Head (Side)",
  25740. image: {
  25741. source: "./media/characters/koros/head-side.svg"
  25742. }
  25743. },
  25744. leg: {
  25745. height: math.unit(17, "feet"),
  25746. name: "Leg",
  25747. image: {
  25748. source: "./media/characters/koros/leg.svg"
  25749. }
  25750. },
  25751. mawSide: {
  25752. height: math.unit(12.8, "feet"),
  25753. name: "Maw (Side)",
  25754. image: {
  25755. source: "./media/characters/koros/maw-side.svg"
  25756. }
  25757. },
  25758. mawSpitting: {
  25759. height: math.unit(17, "feet"),
  25760. name: "Maw (Spitting)",
  25761. image: {
  25762. source: "./media/characters/koros/maw-spitting.svg"
  25763. }
  25764. },
  25765. slit: {
  25766. height: math.unit(2.8, "feet"),
  25767. name: "Slit",
  25768. image: {
  25769. source: "./media/characters/koros/slit.svg"
  25770. }
  25771. },
  25772. stomach: {
  25773. height: math.unit(6.8, "feet"),
  25774. capacity: math.unit(20, "people"),
  25775. name: "Stomach",
  25776. image: {
  25777. source: "./media/characters/koros/stomach.svg"
  25778. }
  25779. },
  25780. wingspanBottom: {
  25781. height: math.unit(114, "feet"),
  25782. name: "Wingspan (Bottom)",
  25783. image: {
  25784. source: "./media/characters/koros/wingspan-bottom.svg"
  25785. }
  25786. },
  25787. wingspanTop: {
  25788. height: math.unit(104, "feet"),
  25789. name: "Wingspan (Top)",
  25790. image: {
  25791. source: "./media/characters/koros/wingspan-top.svg"
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(31 + 8 / 12, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(18 + 5 / 12, "feet"),
  25808. weight: math.unit(3750, "kg"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/vexx/front.svg",
  25812. extra: 426 / 396,
  25813. bottom: 31.5 / 458
  25814. }
  25815. },
  25816. maw: {
  25817. height: math.unit(6, "feet"),
  25818. name: "Maw",
  25819. image: {
  25820. source: "./media/characters/vexx/maw.svg"
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(18 + 5 / 12, "feet"),
  25828. default: true
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(17 + 6 / 12, "feet"),
  25837. weight: math.unit(150, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/baadra/front.svg",
  25841. extra: 3137 / 2890,
  25842. bottom: 168.4 / 3305
  25843. }
  25844. },
  25845. back: {
  25846. height: math.unit(17 + 6 / 12, "feet"),
  25847. weight: math.unit(150, "lb"),
  25848. name: "Back",
  25849. image: {
  25850. source: "./media/characters/baadra/back.svg",
  25851. extra: 3142 / 2890,
  25852. bottom: 220 / 3371
  25853. }
  25854. },
  25855. head: {
  25856. height: math.unit(5.45, "feet"),
  25857. name: "Head",
  25858. image: {
  25859. source: "./media/characters/baadra/head.svg"
  25860. }
  25861. },
  25862. headAngry: {
  25863. height: math.unit(4.95, "feet"),
  25864. name: "Head (Angry)",
  25865. image: {
  25866. source: "./media/characters/baadra/head-angry.svg"
  25867. }
  25868. },
  25869. headOpen: {
  25870. height: math.unit(6, "feet"),
  25871. name: "Head (Open)",
  25872. image: {
  25873. source: "./media/characters/baadra/head-open.svg"
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(17 + 6 / 12, "feet"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(7 + 3 / 12, "feet"),
  25890. weight: math.unit(180, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/juri/front.svg",
  25894. extra: 1401 / 1237,
  25895. bottom: 18.5 / 1418
  25896. }
  25897. },
  25898. side: {
  25899. height: math.unit(7 + 3 / 12, "feet"),
  25900. weight: math.unit(180, "lb"),
  25901. name: "Side",
  25902. image: {
  25903. source: "./media/characters/juri/side.svg",
  25904. extra: 1424 / 1242,
  25905. bottom: 18.5 / 1447
  25906. }
  25907. },
  25908. sitting: {
  25909. height: math.unit(6, "feet"),
  25910. weight: math.unit(180, "lb"),
  25911. name: "Sitting",
  25912. image: {
  25913. source: "./media/characters/juri/sitting.svg",
  25914. extra: 1270 / 1143,
  25915. bottom: 100 / 1343
  25916. }
  25917. },
  25918. back: {
  25919. height: math.unit(7 + 3 / 12, "feet"),
  25920. weight: math.unit(180, "lb"),
  25921. name: "Back",
  25922. image: {
  25923. source: "./media/characters/juri/back.svg",
  25924. extra: 1377 / 1240,
  25925. bottom: 23.7 / 1405
  25926. }
  25927. },
  25928. maw: {
  25929. height: math.unit(2.8, "feet"),
  25930. name: "Maw",
  25931. image: {
  25932. source: "./media/characters/juri/maw.svg"
  25933. }
  25934. },
  25935. stomach: {
  25936. height: math.unit(0.89, "feet"),
  25937. capacity: math.unit(4, "liters"),
  25938. name: "Stomach",
  25939. image: {
  25940. source: "./media/characters/juri/stomach.svg"
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(7 + 3 / 12, "feet"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25954. {
  25955. fox: {
  25956. height: math.unit(5 + 6 / 12, "feet"),
  25957. weight: math.unit(140, "lb"),
  25958. name: "Fox",
  25959. image: {
  25960. source: "./media/characters/maxene-sita/fox.svg",
  25961. extra: 146 / 138,
  25962. bottom: 2.1 / 148.19
  25963. }
  25964. },
  25965. foxLaying: {
  25966. height: math.unit(1.70, "feet"),
  25967. weight: math.unit(140, "lb"),
  25968. name: "Fox (Laying)",
  25969. image: {
  25970. source: "./media/characters/maxene-sita/fox-laying.svg",
  25971. extra: 910 / 572,
  25972. bottom: 71 / 981
  25973. }
  25974. },
  25975. kitsune: {
  25976. height: math.unit(10, "feet"),
  25977. weight: math.unit(800, "lb"),
  25978. name: "Kitsune",
  25979. image: {
  25980. source: "./media/characters/maxene-sita/kitsune.svg",
  25981. extra: 185 / 176,
  25982. bottom: 4.7 / 189.9
  25983. }
  25984. },
  25985. hellhound: {
  25986. height: math.unit(10, "feet"),
  25987. weight: math.unit(700, "lb"),
  25988. name: "Hellhound",
  25989. image: {
  25990. source: "./media/characters/maxene-sita/hellhound.svg",
  25991. extra: 1600 / 1545,
  25992. bottom: 81 / 1681
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Normal",
  25999. height: math.unit(5 + 6 / 12, "feet"),
  26000. default: true
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26006. {
  26007. front: {
  26008. height: math.unit(3 + 4 / 12, "feet"),
  26009. weight: math.unit(70, "lb"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/maia/front.svg",
  26013. extra: 227 / 219.5,
  26014. bottom: 40 / 267
  26015. }
  26016. },
  26017. back: {
  26018. height: math.unit(3 + 4 / 12, "feet"),
  26019. weight: math.unit(70, "lb"),
  26020. name: "Back",
  26021. image: {
  26022. source: "./media/characters/maia/back.svg",
  26023. extra: 237 / 225
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(3 + 4 / 12, "feet"),
  26031. default: true
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(5 + 10 / 12, "feet"),
  26040. weight: math.unit(197, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/jabaro/front.svg",
  26044. extra: 225 / 216,
  26045. bottom: 5.06 / 230
  26046. }
  26047. },
  26048. back: {
  26049. height: math.unit(5 + 10 / 12, "feet"),
  26050. weight: math.unit(197, "lb"),
  26051. name: "Back",
  26052. image: {
  26053. source: "./media/characters/jabaro/back.svg",
  26054. extra: 225 / 219,
  26055. bottom: 1.9 / 227
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(5 + 10 / 12, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(5 + 8 / 12, "feet"),
  26072. weight: math.unit(139, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/risa/front.svg",
  26076. extra: 270 / 260,
  26077. bottom: 11.2 / 282
  26078. }
  26079. },
  26080. back: {
  26081. height: math.unit(5 + 8 / 12, "feet"),
  26082. weight: math.unit(139, "lb"),
  26083. name: "Back",
  26084. image: {
  26085. source: "./media/characters/risa/back.svg",
  26086. extra: 264 / 255,
  26087. bottom: 4 / 268
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Normal",
  26094. height: math.unit(5 + 8 / 12, "feet"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(2 + 11 / 12, "feet"),
  26104. weight: math.unit(30, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/weatley/front.svg",
  26108. bottom: 10.7 / 414,
  26109. extra: 403.5 / 362
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(2 + 11 / 12, "feet"),
  26114. weight: math.unit(30, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/weatley/back.svg",
  26118. bottom: 10.7 / 414,
  26119. extra: 403.5 / 362
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(2 + 11 / 12, "feet"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(5 + 2 / 12, "feet"),
  26136. weight: math.unit(50, "kg"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/mercury-crescent/front.svg",
  26140. extra: 1088 / 1033,
  26141. bottom: 18.9 / 1109
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(5 + 2 / 12, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26155. {
  26156. front: {
  26157. height: math.unit(2, "feet"),
  26158. weight: math.unit(15, "kg"),
  26159. name: "Front",
  26160. image: {
  26161. source: "./media/characters/diamond-jones/front.svg",
  26162. extra: 727/723,
  26163. bottom: 46/773
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(2, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(3, "feet"),
  26180. weight: math.unit(30, "kg"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/sweet-bit/front.svg",
  26184. extra: 675 / 567,
  26185. bottom: 27.7 / 703
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(3, "feet"),
  26193. default: true
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26199. {
  26200. side: {
  26201. height: math.unit(9.178, "feet"),
  26202. weight: math.unit(500, "lb"),
  26203. name: "Side",
  26204. image: {
  26205. source: "./media/characters/umbrazen/side.svg",
  26206. extra: 1730 / 1473,
  26207. bottom: 34.6 / 1765
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(9.178, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(10, "feet"),
  26224. weight: math.unit(750, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/arlist/front.svg",
  26228. extra: 961 / 778,
  26229. bottom: 6.2 / 986
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(10, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(5 + 1 / 12, "feet"),
  26246. weight: math.unit(110, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/aradel/front.svg",
  26250. extra: 324 / 303,
  26251. bottom: 3.6 / 329.4
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 1 / 12, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(3 + 8 / 12, "feet"),
  26268. weight: math.unit(50, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/serryn/front.svg",
  26272. extra: 1792 / 1656,
  26273. bottom: 43.5 / 1840
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(3 + 8 / 12, "feet"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(7 + 10 / 12, "feet"),
  26290. weight: math.unit(255, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/xavier-thyme/front.svg",
  26294. extra: 3733 / 3642,
  26295. bottom: 131 / 3869
  26296. }
  26297. },
  26298. frontRaven: {
  26299. height: math.unit(7 + 10 / 12, "feet"),
  26300. weight: math.unit(255, "lb"),
  26301. name: "Front (Raven)",
  26302. image: {
  26303. source: "./media/characters/xavier-thyme/front-raven.svg",
  26304. extra: 4385 / 3642,
  26305. bottom: 131 / 4517
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(7 + 10 / 12, "feet"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26319. {
  26320. front: {
  26321. height: math.unit(1.6, "m"),
  26322. weight: math.unit(50, "kg"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/kiki/front.svg",
  26326. extra: 4682 / 3610,
  26327. bottom: 115 / 4777
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(1.6, "meters"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(50, "m"),
  26344. weight: math.unit(500, "tonnes"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/ryoko/front.svg",
  26348. extra: 4632 / 3926,
  26349. bottom: 193 / 4823
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(50, "meters"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(30, "m"),
  26366. weight: math.unit(22, "tonnes"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/elio/front.svg",
  26370. extra: 4582 / 3720,
  26371. bottom: 236 / 4828
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(30, "meters"),
  26379. default: true
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(6 + 3 / 12, "feet"),
  26388. weight: math.unit(120, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/azura/front.svg",
  26392. extra: 1149 / 1135,
  26393. bottom: 45 / 1194
  26394. }
  26395. },
  26396. frontClothed: {
  26397. height: math.unit(6 + 3 / 12, "feet"),
  26398. weight: math.unit(120, "lb"),
  26399. name: "Front (Clothed)",
  26400. image: {
  26401. source: "./media/characters/azura/front-clothed.svg",
  26402. extra: 1149 / 1135,
  26403. bottom: 45 / 1194
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(6 + 3 / 12, "feet"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Macro",
  26415. height: math.unit(20 + 6 / 12, "feet")
  26416. },
  26417. {
  26418. name: "Megamacro",
  26419. height: math.unit(12, "miles")
  26420. },
  26421. {
  26422. name: "Gigamacro",
  26423. height: math.unit(10000, "miles")
  26424. },
  26425. {
  26426. name: "Teramacro",
  26427. height: math.unit(900000, "miles")
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26433. {
  26434. front: {
  26435. height: math.unit(12, "feet"),
  26436. weight: math.unit(1, "ton"),
  26437. capacity: math.unit(660000, "gallons"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/zeus/front.svg",
  26441. extra: 5005 / 4717,
  26442. bottom: 363 / 5388
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(12, "feet")
  26450. },
  26451. {
  26452. name: "Preferred Size",
  26453. height: math.unit(0.5, "miles"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Giga Horse",
  26458. height: math.unit(300, "miles")
  26459. },
  26460. {
  26461. name: "Riding Planets",
  26462. height: math.unit(30, "megameters")
  26463. },
  26464. {
  26465. name: "Cosmic Giant",
  26466. height: math.unit(3, "zettameters")
  26467. },
  26468. {
  26469. name: "Breeding God",
  26470. height: math.unit(9.92e22, "yottameters")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26476. {
  26477. side: {
  26478. height: math.unit(9, "feet"),
  26479. weight: math.unit(1500, "kg"),
  26480. name: "Side",
  26481. image: {
  26482. source: "./media/characters/fang/side.svg",
  26483. extra: 924 / 866,
  26484. bottom: 47.5 / 972.3
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(9, "feet"),
  26492. default: true
  26493. },
  26494. {
  26495. name: "Macro",
  26496. height: math.unit(75 + 6 / 12, "feet")
  26497. },
  26498. {
  26499. name: "Teramacro",
  26500. height: math.unit(50000, "miles")
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(10, "feet"),
  26509. weight: math.unit(2, "tons"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/rekhit/front.svg",
  26513. extra: 2796 / 2590,
  26514. bottom: 225 / 3022
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(10, "feet"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(500, "feet")
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(7 + 6.451 / 12, "feet"),
  26535. weight: math.unit(310, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/dahlia-verrick/front.svg",
  26539. extra: 1488 / 1365,
  26540. bottom: 6.2 / 1495
  26541. }
  26542. },
  26543. back: {
  26544. height: math.unit(7 + 6.451 / 12, "feet"),
  26545. weight: math.unit(310, "lb"),
  26546. name: "Back",
  26547. image: {
  26548. source: "./media/characters/dahlia-verrick/back.svg",
  26549. extra: 1472 / 1351,
  26550. bottom: 5.28 / 1477
  26551. }
  26552. },
  26553. frontBusiness: {
  26554. height: math.unit(7 + 6.451 / 12, "feet"),
  26555. weight: math.unit(200, "lb"),
  26556. name: "Front (Business)",
  26557. image: {
  26558. source: "./media/characters/dahlia-verrick/front-business.svg",
  26559. extra: 1478 / 1381,
  26560. bottom: 5.5 / 1484
  26561. }
  26562. },
  26563. frontCasual: {
  26564. height: math.unit(7 + 6.451 / 12, "feet"),
  26565. weight: math.unit(200, "lb"),
  26566. name: "Front (Casual)",
  26567. image: {
  26568. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26569. extra: 1478 / 1381,
  26570. bottom: 5.5 / 1484
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Travel-Sized",
  26577. height: math.unit(7.45, "inches")
  26578. },
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(7 + 6.451 / 12, "feet"),
  26582. default: true
  26583. },
  26584. {
  26585. name: "Hitting the Town",
  26586. height: math.unit(37 + 8 / 12, "feet")
  26587. },
  26588. {
  26589. name: "Stomp in the Suburbs",
  26590. height: math.unit(964 + 9.728 / 12, "feet")
  26591. },
  26592. {
  26593. name: "Sit on the City",
  26594. height: math.unit(61747 + 10.592 / 12, "feet")
  26595. },
  26596. {
  26597. name: "Glomp the Globe",
  26598. height: math.unit(252919327 + 4.832 / 12, "feet")
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(6 + 4 / 12, "feet"),
  26607. weight: math.unit(320, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/balina-mahigan/front.svg",
  26611. extra: 447 / 428,
  26612. bottom: 18 / 466
  26613. }
  26614. },
  26615. back: {
  26616. height: math.unit(6 + 4 / 12, "feet"),
  26617. weight: math.unit(320, "lb"),
  26618. name: "Back",
  26619. image: {
  26620. source: "./media/characters/balina-mahigan/back.svg",
  26621. extra: 445 / 428,
  26622. bottom: 4.07 / 448
  26623. }
  26624. },
  26625. arm: {
  26626. height: math.unit(1.88, "feet"),
  26627. name: "Arm",
  26628. image: {
  26629. source: "./media/characters/balina-mahigan/arm.svg"
  26630. }
  26631. },
  26632. backPort: {
  26633. height: math.unit(0.685, "feet"),
  26634. name: "Back Port",
  26635. image: {
  26636. source: "./media/characters/balina-mahigan/back-port.svg"
  26637. }
  26638. },
  26639. hoofpaw: {
  26640. height: math.unit(1.41, "feet"),
  26641. name: "Hoofpaw",
  26642. image: {
  26643. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26644. }
  26645. },
  26646. leftHandBack: {
  26647. height: math.unit(0.938, "feet"),
  26648. name: "Left Hand (Back)",
  26649. image: {
  26650. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26651. }
  26652. },
  26653. leftHandFront: {
  26654. height: math.unit(0.938, "feet"),
  26655. name: "Left Hand (Front)",
  26656. image: {
  26657. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26658. }
  26659. },
  26660. rightHandBack: {
  26661. height: math.unit(0.95, "feet"),
  26662. name: "Right Hand (Back)",
  26663. image: {
  26664. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26665. }
  26666. },
  26667. rightHandFront: {
  26668. height: math.unit(0.95, "feet"),
  26669. name: "Right Hand (Front)",
  26670. image: {
  26671. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Normal",
  26678. height: math.unit(6 + 4 / 12, "feet"),
  26679. default: true
  26680. },
  26681. ]
  26682. ))
  26683. characterMakers.push(() => makeCharacter(
  26684. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26685. {
  26686. front: {
  26687. height: math.unit(6, "feet"),
  26688. weight: math.unit(320, "lb"),
  26689. name: "Front",
  26690. image: {
  26691. source: "./media/characters/balina-mejeri/front.svg",
  26692. extra: 517 / 488,
  26693. bottom: 44.2 / 561
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(6 + 4 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Business",
  26704. height: math.unit(155, "feet"),
  26705. default: true
  26706. },
  26707. ]
  26708. ))
  26709. characterMakers.push(() => makeCharacter(
  26710. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26711. {
  26712. kneeling: {
  26713. height: math.unit(6 + 4 / 12, "feet"),
  26714. weight: math.unit(300 * 20, "lb"),
  26715. name: "Kneeling",
  26716. image: {
  26717. source: "./media/characters/balbarian/kneeling.svg",
  26718. extra: 922 / 862,
  26719. bottom: 42.4 / 965
  26720. }
  26721. },
  26722. },
  26723. [
  26724. {
  26725. name: "Normal",
  26726. height: math.unit(6 + 4 / 12, "feet")
  26727. },
  26728. {
  26729. name: "Treasured",
  26730. height: math.unit(18 + 9 / 12, "feet"),
  26731. default: true
  26732. },
  26733. {
  26734. name: "Macro",
  26735. height: math.unit(900, "feet")
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(6 + 4 / 12, "feet"),
  26744. weight: math.unit(325, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/balina-amarini/front.svg",
  26748. extra: 415 / 403,
  26749. bottom: 19 / 433.4
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(6 + 4 / 12, "feet"),
  26754. weight: math.unit(325, "lb"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/balina-amarini/back.svg",
  26758. extra: 415 / 403,
  26759. bottom: 13.5 / 432
  26760. }
  26761. },
  26762. overdrive: {
  26763. height: math.unit(6 + 4 / 12, "feet"),
  26764. weight: math.unit(400, "lb"),
  26765. name: "Overdrive",
  26766. image: {
  26767. source: "./media/characters/balina-amarini/overdrive.svg",
  26768. extra: 269 / 259,
  26769. bottom: 12 / 282
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Boom",
  26776. height: math.unit(9 + 10 / 12, "feet"),
  26777. default: true
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(280, "feet")
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26787. {
  26788. goddess: {
  26789. height: math.unit(600, "feet"),
  26790. weight: math.unit(2000000, "tons"),
  26791. name: "Goddess",
  26792. image: {
  26793. source: "./media/characters/lady-kubwa/goddess.svg",
  26794. extra: 1240.5 / 1223,
  26795. bottom: 22 / 1263
  26796. }
  26797. },
  26798. goddesser: {
  26799. height: math.unit(900, "feet"),
  26800. weight: math.unit(20000000, "lb"),
  26801. name: "Goddess-er",
  26802. image: {
  26803. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26804. extra: 899 / 888,
  26805. bottom: 12.6 / 912
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(600, "feet"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "Megamacro",
  26817. height: math.unit(250, "miles")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(7 + 7 / 12, "feet"),
  26826. weight: math.unit(250, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/tala-grovehorn/front.svg",
  26830. extra: 2636 / 2525,
  26831. bottom: 147 / 2781
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(7 + 7 / 12, "feet"),
  26836. weight: math.unit(250, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/tala-grovehorn/back.svg",
  26840. extra: 2635 / 2539,
  26841. bottom: 100 / 2732.8
  26842. }
  26843. },
  26844. mouth: {
  26845. height: math.unit(1.15, "feet"),
  26846. name: "Mouth",
  26847. image: {
  26848. source: "./media/characters/tala-grovehorn/mouth.svg"
  26849. }
  26850. },
  26851. dick: {
  26852. height: math.unit(2.36, "feet"),
  26853. name: "Dick",
  26854. image: {
  26855. source: "./media/characters/tala-grovehorn/dick.svg"
  26856. }
  26857. },
  26858. slit: {
  26859. height: math.unit(0.61, "feet"),
  26860. name: "Slit",
  26861. image: {
  26862. source: "./media/characters/tala-grovehorn/slit.svg"
  26863. }
  26864. },
  26865. },
  26866. [
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(7 + 7 / 12, "feet"),
  26874. weight: math.unit(225, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/epona/front.svg",
  26878. extra: 2445 / 2290,
  26879. bottom: 251 / 2696
  26880. }
  26881. },
  26882. back: {
  26883. height: math.unit(7 + 7 / 12, "feet"),
  26884. weight: math.unit(225, "lb"),
  26885. name: "Back",
  26886. image: {
  26887. source: "./media/characters/epona/back.svg",
  26888. extra: 2546 / 2408,
  26889. bottom: 44 / 2589
  26890. }
  26891. },
  26892. genitals: {
  26893. height: math.unit(1.5, "feet"),
  26894. name: "Genitals",
  26895. image: {
  26896. source: "./media/characters/epona/genitals.svg"
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(7 + 7 / 12, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(7, "feet"),
  26913. weight: math.unit(518, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/avia-bloodbourn/front.svg",
  26917. extra: 1466 / 1350,
  26918. bottom: 65 / 1527
  26919. }
  26920. },
  26921. },
  26922. [
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(9.35, "feet"),
  26930. weight: math.unit(600, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/amera/front.svg",
  26934. extra: 891 / 818,
  26935. bottom: 30 / 922.7
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(9.35, "feet"),
  26940. weight: math.unit(600, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/amera/back.svg",
  26944. extra: 876 / 824,
  26945. bottom: 6.8 / 884
  26946. }
  26947. },
  26948. dick: {
  26949. height: math.unit(2.14, "feet"),
  26950. name: "Dick",
  26951. image: {
  26952. source: "./media/characters/amera/dick.svg"
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(9.35, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26966. {
  26967. kneeling: {
  26968. height: math.unit(3 + 4 / 12, "feet"),
  26969. weight: math.unit(90, "lb"),
  26970. name: "Kneeling",
  26971. image: {
  26972. source: "./media/characters/rosewen/kneeling.svg",
  26973. extra: 1835 / 1571,
  26974. bottom: 27.7 / 1862
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(3 + 4 / 12, "feet"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(5 + 10 / 12, "feet"),
  26991. weight: math.unit(200, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/sabah/front.svg",
  26995. extra: 849 / 763,
  26996. bottom: 33.9 / 881
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(5 + 10 / 12, "feet"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27010. {
  27011. front: {
  27012. height: math.unit(3 + 5 / 12, "feet"),
  27013. weight: math.unit(40, "kg"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/purple-flame/front.svg",
  27017. extra: 1577 / 1412,
  27018. bottom: 97 / 1694
  27019. }
  27020. },
  27021. frontDressed: {
  27022. height: math.unit(3 + 5 / 12, "feet"),
  27023. weight: math.unit(40, "kg"),
  27024. name: "Front (Dressed)",
  27025. image: {
  27026. source: "./media/characters/purple-flame/front-dressed.svg",
  27027. extra: 1577 / 1412,
  27028. bottom: 97 / 1694
  27029. }
  27030. },
  27031. headphones: {
  27032. height: math.unit(0.85, "feet"),
  27033. name: "Headphones",
  27034. image: {
  27035. source: "./media/characters/purple-flame/headphones.svg"
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Really Small",
  27042. height: math.unit(5, "cm")
  27043. },
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(1 + 5 / 12, "feet")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(3 + 5 / 12, "feet"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Minimacro",
  27055. height: math.unit(125, "feet")
  27056. },
  27057. {
  27058. name: "Macro",
  27059. height: math.unit(0.5, "miles")
  27060. },
  27061. {
  27062. name: "Megamacro",
  27063. height: math.unit(50, "miles")
  27064. },
  27065. {
  27066. name: "Gigantic",
  27067. height: math.unit(750, "miles")
  27068. },
  27069. {
  27070. name: "Planetary",
  27071. height: math.unit(15000, "miles")
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(14, "feet"),
  27080. weight: math.unit(959, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/arsenal/front.svg",
  27084. extra: 2357 / 2157,
  27085. bottom: 93 / 2458
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(14, "feet"),
  27093. default: true
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(6, "feet"),
  27102. weight: math.unit(150, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/adira/front.svg",
  27106. extra: 1078 / 1029,
  27107. bottom: 87 / 1166
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Micro",
  27114. height: math.unit(4, "inches"),
  27115. default: true
  27116. },
  27117. {
  27118. name: "Macro",
  27119. height: math.unit(50, "feet")
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(16, "feet"),
  27128. weight: math.unit(1000, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/grim/front.svg",
  27132. extra: 622 / 614,
  27133. bottom: 18.1 / 642
  27134. }
  27135. },
  27136. back: {
  27137. height: math.unit(16, "feet"),
  27138. weight: math.unit(1000, "lb"),
  27139. name: "Back",
  27140. image: {
  27141. source: "./media/characters/grim/back.svg",
  27142. extra: 610.6 / 602,
  27143. bottom: 40.8 / 652
  27144. }
  27145. },
  27146. hunched: {
  27147. height: math.unit(9.75, "feet"),
  27148. weight: math.unit(1000, "lb"),
  27149. name: "Hunched",
  27150. image: {
  27151. source: "./media/characters/grim/hunched.svg",
  27152. extra: 304 / 297,
  27153. bottom: 35.4 / 394
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(16, "feet"),
  27161. default: true
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(2.3, "meters"),
  27170. weight: math.unit(300, "lb"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/sinja/front-sfw.svg",
  27174. extra: 1393 / 1294,
  27175. bottom: 70 / 1463
  27176. }
  27177. },
  27178. frontNsfw: {
  27179. height: math.unit(2.3, "meters"),
  27180. weight: math.unit(300, "lb"),
  27181. name: "Front (NSFW)",
  27182. image: {
  27183. source: "./media/characters/sinja/front-nsfw.svg",
  27184. extra: 1393 / 1294,
  27185. bottom: 70 / 1463
  27186. }
  27187. },
  27188. back: {
  27189. height: math.unit(2.3, "meters"),
  27190. weight: math.unit(300, "lb"),
  27191. name: "Back",
  27192. image: {
  27193. source: "./media/characters/sinja/back.svg",
  27194. extra: 1393 / 1294,
  27195. bottom: 70 / 1463
  27196. }
  27197. },
  27198. head: {
  27199. height: math.unit(1.771, "feet"),
  27200. name: "Head",
  27201. image: {
  27202. source: "./media/characters/sinja/head.svg"
  27203. }
  27204. },
  27205. slit: {
  27206. height: math.unit(0.8, "feet"),
  27207. name: "Slit",
  27208. image: {
  27209. source: "./media/characters/sinja/slit.svg"
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(2.3, "meters")
  27217. },
  27218. {
  27219. name: "Macro",
  27220. height: math.unit(91, "meters"),
  27221. default: true
  27222. },
  27223. {
  27224. name: "Megamacro",
  27225. height: math.unit(91440, "meters")
  27226. },
  27227. {
  27228. name: "Gigamacro",
  27229. height: math.unit(60960000, "meters")
  27230. },
  27231. {
  27232. name: "Teramacro",
  27233. height: math.unit(9144000000, "meters")
  27234. },
  27235. ]
  27236. ))
  27237. characterMakers.push(() => makeCharacter(
  27238. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27239. {
  27240. front: {
  27241. height: math.unit(1.7, "meters"),
  27242. weight: math.unit(130, "lb"),
  27243. name: "Front",
  27244. image: {
  27245. source: "./media/characters/kyu/front.svg",
  27246. extra: 415 / 395,
  27247. bottom: 5 / 420
  27248. }
  27249. },
  27250. head: {
  27251. height: math.unit(1.75, "feet"),
  27252. name: "Head",
  27253. image: {
  27254. source: "./media/characters/kyu/head.svg"
  27255. }
  27256. },
  27257. foot: {
  27258. height: math.unit(0.81, "feet"),
  27259. name: "Foot",
  27260. image: {
  27261. source: "./media/characters/kyu/foot.svg"
  27262. }
  27263. },
  27264. },
  27265. [
  27266. {
  27267. name: "Normal",
  27268. height: math.unit(1.7, "meters")
  27269. },
  27270. {
  27271. name: "Macro",
  27272. height: math.unit(131, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Megamacro",
  27277. height: math.unit(91440, "meters")
  27278. },
  27279. {
  27280. name: "Gigamacro",
  27281. height: math.unit(60960000, "meters")
  27282. },
  27283. {
  27284. name: "Teramacro",
  27285. height: math.unit(9144000000, "meters")
  27286. },
  27287. ]
  27288. ))
  27289. characterMakers.push(() => makeCharacter(
  27290. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27291. {
  27292. front: {
  27293. height: math.unit(7 + 1 / 12, "feet"),
  27294. weight: math.unit(250, "lb"),
  27295. name: "Front",
  27296. image: {
  27297. source: "./media/characters/joey/front.svg",
  27298. extra: 1791 / 1537,
  27299. bottom: 28 / 1816
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Micro",
  27306. height: math.unit(3, "inches")
  27307. },
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(7 + 1 / 12, "feet"),
  27311. default: true
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(165, "cm"),
  27320. weight: math.unit(140, "lb"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/sam-evans/front.svg",
  27324. extra: 3417 / 3230,
  27325. bottom: 41.3 / 3417
  27326. }
  27327. },
  27328. frontSixTails: {
  27329. height: math.unit(165, "cm"),
  27330. weight: math.unit(140, "lb"),
  27331. name: "Front-six-tails",
  27332. image: {
  27333. source: "./media/characters/sam-evans/front-six-tails.svg",
  27334. extra: 3417 / 3230,
  27335. bottom: 41.3 / 3417
  27336. }
  27337. },
  27338. back: {
  27339. height: math.unit(165, "cm"),
  27340. weight: math.unit(140, "lb"),
  27341. name: "Back",
  27342. image: {
  27343. source: "./media/characters/sam-evans/back.svg",
  27344. extra: 3227 / 3032,
  27345. bottom: 6.8 / 3234
  27346. }
  27347. },
  27348. face: {
  27349. height: math.unit(0.68, "feet"),
  27350. name: "Face",
  27351. image: {
  27352. source: "./media/characters/sam-evans/face.svg"
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(165, "cm"),
  27360. default: true
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(100, "meters")
  27365. },
  27366. {
  27367. name: "Macro+",
  27368. height: math.unit(800, "meters")
  27369. },
  27370. {
  27371. name: "Macro++",
  27372. height: math.unit(3, "km")
  27373. },
  27374. {
  27375. name: "Macro+++",
  27376. height: math.unit(30, "km")
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(10, "feet"),
  27385. weight: math.unit(750, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/juliet-a/front.svg",
  27389. extra: 1766 / 1720,
  27390. bottom: 43 / 1809
  27391. }
  27392. },
  27393. back: {
  27394. height: math.unit(10, "feet"),
  27395. weight: math.unit(750, "lb"),
  27396. name: "Back",
  27397. image: {
  27398. source: "./media/characters/juliet-a/back.svg",
  27399. extra: 1781 / 1734,
  27400. bottom: 35 / 1810,
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(10, "feet"),
  27408. default: true
  27409. },
  27410. {
  27411. name: "Dragon Form",
  27412. height: math.unit(250, "feet")
  27413. },
  27414. {
  27415. name: "Macro",
  27416. height: math.unit(1000, "feet")
  27417. },
  27418. {
  27419. name: "Megamacro",
  27420. height: math.unit(10000, "feet")
  27421. }
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27426. {
  27427. regular: {
  27428. height: math.unit(7 + 3 / 12, "feet"),
  27429. weight: math.unit(260, "lb"),
  27430. name: "Regular",
  27431. image: {
  27432. source: "./media/characters/wild/regular.svg",
  27433. extra: 97.45 / 92,
  27434. bottom: 6.8 / 104.3
  27435. }
  27436. },
  27437. biggums: {
  27438. height: math.unit(8 + 6 / 12, "feet"),
  27439. weight: math.unit(425, "lb"),
  27440. name: "Biggums",
  27441. image: {
  27442. source: "./media/characters/wild/biggums.svg",
  27443. extra: 97.45 / 92,
  27444. bottom: 7.5 / 132.34
  27445. }
  27446. },
  27447. mawRegular: {
  27448. height: math.unit(1.24, "feet"),
  27449. name: "Maw (Regular)",
  27450. image: {
  27451. source: "./media/characters/wild/maw.svg"
  27452. }
  27453. },
  27454. mawBiggums: {
  27455. height: math.unit(1.47, "feet"),
  27456. name: "Maw (Biggums)",
  27457. image: {
  27458. source: "./media/characters/wild/maw.svg"
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(7 + 3 / 12, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27472. {
  27473. front: {
  27474. height: math.unit(2.5, "meters"),
  27475. weight: math.unit(200, "kg"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/vidar/front.svg",
  27479. extra: 2994 / 2795,
  27480. bottom: 56 / 3061
  27481. }
  27482. },
  27483. back: {
  27484. height: math.unit(2.5, "meters"),
  27485. weight: math.unit(200, "kg"),
  27486. name: "Back",
  27487. image: {
  27488. source: "./media/characters/vidar/back.svg",
  27489. extra: 3131 / 2928,
  27490. bottom: 13.5 / 3141.5
  27491. }
  27492. },
  27493. feral: {
  27494. height: math.unit(2.5, "meters"),
  27495. weight: math.unit(2000, "kg"),
  27496. name: "Feral",
  27497. image: {
  27498. source: "./media/characters/vidar/feral.svg",
  27499. extra: 2790 / 1765,
  27500. bottom: 6 / 2796
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(2.5, "meters"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Macro",
  27512. height: math.unit(100, "meters")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(5 + 9 / 12, "feet"),
  27521. weight: math.unit(120, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/ash/front.svg",
  27525. extra: 2189 / 1961,
  27526. bottom: 5.2 / 2194
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(5 + 9 / 12, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(9, "feet"),
  27543. weight: math.unit(10000, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/gygabite/front.svg",
  27547. bottom: 31.7 / 537.8,
  27548. extra: 505 / 370
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(9, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(12, "feet"),
  27565. weight: math.unit(35000, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/p0tat0/front.svg",
  27569. extra: 1065 / 921,
  27570. bottom: 55.7 / 1121.25
  27571. }
  27572. },
  27573. },
  27574. [
  27575. {
  27576. name: "Normal",
  27577. height: math.unit(12, "feet"),
  27578. default: true
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27584. {
  27585. side: {
  27586. height: math.unit(6.5, "feet"),
  27587. weight: math.unit(800, "lb"),
  27588. name: "Side",
  27589. image: {
  27590. source: "./media/characters/dusk/side.svg",
  27591. extra: 615 / 373,
  27592. bottom: 53 / 664
  27593. }
  27594. },
  27595. sitting: {
  27596. height: math.unit(7, "feet"),
  27597. weight: math.unit(800, "lb"),
  27598. name: "Sitting",
  27599. image: {
  27600. source: "./media/characters/dusk/sitting.svg",
  27601. extra: 753 / 425,
  27602. bottom: 33 / 774
  27603. }
  27604. },
  27605. head: {
  27606. height: math.unit(6.1, "feet"),
  27607. name: "Head",
  27608. image: {
  27609. source: "./media/characters/dusk/head.svg"
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(7, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(15, "feet"),
  27626. weight: math.unit(7000, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/jay-direwolf/front.svg",
  27630. extra: 1810 / 1732,
  27631. bottom: 66 / 1892
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(15, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(4 + 9 / 12, "feet"),
  27648. weight: math.unit(130, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/anchovie/front.svg",
  27652. extra: 382 / 350,
  27653. bottom: 25 / 409
  27654. }
  27655. },
  27656. back: {
  27657. height: math.unit(4 + 9 / 12, "feet"),
  27658. weight: math.unit(130, "lb"),
  27659. name: "Back",
  27660. image: {
  27661. source: "./media/characters/anchovie/back.svg",
  27662. extra: 385 / 352,
  27663. bottom: 16.6 / 402
  27664. }
  27665. },
  27666. frontDressed: {
  27667. height: math.unit(4 + 9 / 12, "feet"),
  27668. weight: math.unit(130, "lb"),
  27669. name: "Front (Dressed)",
  27670. image: {
  27671. source: "./media/characters/anchovie/front-dressed.svg",
  27672. extra: 382 / 350,
  27673. bottom: 25 / 409
  27674. }
  27675. },
  27676. backDressed: {
  27677. height: math.unit(4 + 9 / 12, "feet"),
  27678. weight: math.unit(130, "lb"),
  27679. name: "Back (Dressed)",
  27680. image: {
  27681. source: "./media/characters/anchovie/back-dressed.svg",
  27682. extra: 385 / 352,
  27683. bottom: 16.6 / 402
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Micro",
  27690. height: math.unit(6.4, "inches")
  27691. },
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(4 + 9 / 12, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27701. {
  27702. front: {
  27703. height: math.unit(2, "meters"),
  27704. weight: math.unit(180, "lb"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/acidrenamon/front.svg",
  27708. extra: 987 / 890,
  27709. bottom: 22.8 / 1009
  27710. }
  27711. },
  27712. back: {
  27713. height: math.unit(2, "meters"),
  27714. weight: math.unit(180, "lb"),
  27715. name: "Back",
  27716. image: {
  27717. source: "./media/characters/acidrenamon/back.svg",
  27718. extra: 983 / 891,
  27719. bottom: 8.4 / 992
  27720. }
  27721. },
  27722. head: {
  27723. height: math.unit(1.92, "feet"),
  27724. name: "Head",
  27725. image: {
  27726. source: "./media/characters/acidrenamon/head.svg"
  27727. }
  27728. },
  27729. rump: {
  27730. height: math.unit(1.72, "feet"),
  27731. name: "Rump",
  27732. image: {
  27733. source: "./media/characters/acidrenamon/rump.svg"
  27734. }
  27735. },
  27736. tail: {
  27737. height: math.unit(4.2, "feet"),
  27738. name: "Tail",
  27739. image: {
  27740. source: "./media/characters/acidrenamon/tail.svg"
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(2, "meters"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Minimacro",
  27752. height: math.unit(7, "meters")
  27753. },
  27754. {
  27755. name: "Macro",
  27756. height: math.unit(200, "meters")
  27757. },
  27758. {
  27759. name: "Gigamacro",
  27760. height: math.unit(0.2, "earths")
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(152, "feet"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/kenzie-lee/front.svg",
  27772. extra: 1869/1774,
  27773. bottom: 128/1997
  27774. }
  27775. },
  27776. side: {
  27777. height: math.unit(86, "feet"),
  27778. name: "Side",
  27779. image: {
  27780. source: "./media/characters/kenzie-lee/side.svg",
  27781. extra: 930/815,
  27782. bottom: 177/1107
  27783. }
  27784. },
  27785. paw: {
  27786. height: math.unit(15, "feet"),
  27787. name: "Paw",
  27788. image: {
  27789. source: "./media/characters/kenzie-lee/paw.svg"
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Micro",
  27796. height: math.unit(1.5, "inches")
  27797. },
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(152, "feet"),
  27801. default: true
  27802. },
  27803. {
  27804. name: "Megamacro",
  27805. height: math.unit(7, "miles")
  27806. },
  27807. {
  27808. name: "Gigamacro",
  27809. height: math.unit(8000, "miles")
  27810. },
  27811. ]
  27812. ))
  27813. characterMakers.push(() => makeCharacter(
  27814. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27815. {
  27816. side: {
  27817. height: math.unit(6, "feet"),
  27818. weight: math.unit(150, "lb"),
  27819. name: "Side",
  27820. image: {
  27821. source: "./media/characters/withers/side.svg",
  27822. extra: 1830 / 1728,
  27823. bottom: 96 / 1927
  27824. }
  27825. },
  27826. front: {
  27827. height: math.unit(6, "feet"),
  27828. weight: math.unit(150, "lb"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/withers/front.svg",
  27832. extra: 1514 / 1438,
  27833. bottom: 118 / 1632
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Macro",
  27840. height: math.unit(168, "feet"),
  27841. default: true
  27842. },
  27843. {
  27844. name: "Megamacro",
  27845. height: math.unit(15, "miles")
  27846. }
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27851. {
  27852. front: {
  27853. height: math.unit(6 + 7 / 12, "feet"),
  27854. weight: math.unit(250, "lb"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/nemoskii/front.svg",
  27858. extra: 2270 / 1734,
  27859. bottom: 86 / 2354
  27860. }
  27861. },
  27862. back: {
  27863. height: math.unit(6 + 7 / 12, "feet"),
  27864. weight: math.unit(250, "lb"),
  27865. name: "Back",
  27866. image: {
  27867. source: "./media/characters/nemoskii/back.svg",
  27868. extra: 1845 / 1788,
  27869. bottom: 10.5 / 1852
  27870. }
  27871. },
  27872. head: {
  27873. height: math.unit(1.31, "feet"),
  27874. name: "Head",
  27875. image: {
  27876. source: "./media/characters/nemoskii/head.svg"
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Micro",
  27883. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27884. },
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(6 + 7 / 12, "feet"),
  27888. default: true
  27889. },
  27890. {
  27891. name: "Macro",
  27892. height: math.unit((6 + 7 / 12) * 150, "feet")
  27893. },
  27894. {
  27895. name: "Macro+",
  27896. height: math.unit((6 + 7 / 12) * 500, "feet")
  27897. },
  27898. {
  27899. name: "Megamacro",
  27900. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(1, "mile"),
  27909. weight: math.unit(265261.9, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/shui/front.svg",
  27913. extra: 1633 / 1564,
  27914. bottom: 91.5 / 1726
  27915. }
  27916. },
  27917. },
  27918. [
  27919. {
  27920. name: "Macro",
  27921. height: math.unit(1, "mile"),
  27922. default: true
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27928. {
  27929. front: {
  27930. height: math.unit(12 + 6 / 12, "feet"),
  27931. weight: math.unit(1342, "lb"),
  27932. name: "Front",
  27933. image: {
  27934. source: "./media/characters/arokh-takakura/front.svg",
  27935. extra: 1089 / 1043,
  27936. bottom: 77.4 / 1176.7
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(12 + 6 / 12, "feet"),
  27941. weight: math.unit(1342, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/arokh-takakura/back.svg",
  27945. extra: 1046 / 1019,
  27946. bottom: 102 / 1150
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Big",
  27953. height: math.unit(12 + 6 / 12, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(5 + 6 / 12, "feet"),
  27963. weight: math.unit(150, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/theo/front.svg",
  27967. extra: 1184 / 1131,
  27968. bottom: 7.4 / 1191
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Micro",
  27975. height: math.unit(5, "inches")
  27976. },
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(5 + 6 / 12, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(5 + 9 / 12, "feet"),
  27989. weight: math.unit(130, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/cecelia-swift/front.svg",
  27993. extra: 502 / 484,
  27994. bottom: 23 / 523
  27995. }
  27996. },
  27997. back: {
  27998. height: math.unit(5 + 9 / 12, "feet"),
  27999. weight: math.unit(130, "lb"),
  28000. name: "Back",
  28001. image: {
  28002. source: "./media/characters/cecelia-swift/back.svg",
  28003. extra: 499 / 485,
  28004. bottom: 12 / 511
  28005. }
  28006. },
  28007. head: {
  28008. height: math.unit(0.90, "feet"),
  28009. name: "Head",
  28010. image: {
  28011. source: "./media/characters/cecelia-swift/head.svg"
  28012. }
  28013. },
  28014. rump: {
  28015. height: math.unit(1.75, "feet"),
  28016. name: "Rump",
  28017. image: {
  28018. source: "./media/characters/cecelia-swift/rump.svg"
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(5 + 9 / 12, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Big",
  28030. height: math.unit(50, "feet")
  28031. },
  28032. {
  28033. name: "Macro",
  28034. height: math.unit(100, "feet")
  28035. },
  28036. {
  28037. name: "Macro+",
  28038. height: math.unit(500, "feet")
  28039. },
  28040. {
  28041. name: "Macro++",
  28042. height: math.unit(1000, "feet")
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(6, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/kaunan/front.svg",
  28055. extra: 2890 / 2523,
  28056. bottom: 49 / 2939
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Macro",
  28063. height: math.unit(150, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(175, "cm"),
  28073. weight: math.unit(60, "kg"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/fei/front.svg",
  28077. extra: 1873/1723,
  28078. bottom: 53/1926
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Mortal",
  28085. height: math.unit(175, "cm")
  28086. },
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(3500, "m"),
  28090. default: true
  28091. },
  28092. {
  28093. name: "Stroll",
  28094. height: math.unit(17.5, "km")
  28095. },
  28096. {
  28097. name: "Showoff",
  28098. height: math.unit(175, "km")
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(7, "feet"),
  28107. weight: math.unit(1000, "kg"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/edrax/front.svg",
  28111. extra: 2838 / 2550,
  28112. bottom: 130 / 2968
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Small",
  28119. height: math.unit(7, "feet")
  28120. },
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(1500, "meters")
  28124. },
  28125. {
  28126. name: "Mega",
  28127. height: math.unit(12000000, "km"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Megamacro",
  28132. height: math.unit(10600000, "lightyears")
  28133. },
  28134. {
  28135. name: "Hypermacro",
  28136. height: math.unit(256, "yottameters")
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28142. {
  28143. front: {
  28144. height: math.unit(10, "feet"),
  28145. weight: math.unit(750, "lb"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/clove/front.svg",
  28149. extra: 1918/1751,
  28150. bottom: 52/1970
  28151. }
  28152. },
  28153. back: {
  28154. height: math.unit(10, "feet"),
  28155. weight: math.unit(750, "lb"),
  28156. name: "Back",
  28157. image: {
  28158. source: "./media/characters/clove/back.svg",
  28159. extra: 1912/1747,
  28160. bottom: 50/1962
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(10, "feet"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(4, "feet"),
  28177. weight: math.unit(50, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/alex-rabbit/front.svg",
  28181. extra: 507 / 458,
  28182. bottom: 18.5 / 527
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(4, "feet"),
  28187. weight: math.unit(50, "lb"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/alex-rabbit/back.svg",
  28191. extra: 502 / 460,
  28192. bottom: 18.9 / 521
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Normal",
  28199. height: math.unit(4, "feet"),
  28200. default: true
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28206. {
  28207. front: {
  28208. height: math.unit(1 + 3 / 12, "feet"),
  28209. weight: math.unit(80, "lb"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/zander-rose/front.svg",
  28213. extra: 916 / 797,
  28214. bottom: 17 / 933
  28215. }
  28216. },
  28217. back: {
  28218. height: math.unit(1 + 3 / 12, "feet"),
  28219. weight: math.unit(80, "lb"),
  28220. name: "Back",
  28221. image: {
  28222. source: "./media/characters/zander-rose/back.svg",
  28223. extra: 903 / 779,
  28224. bottom: 31 / 934
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(1 + 3 / 12, "feet"),
  28232. default: true
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28238. {
  28239. anthro: {
  28240. height: math.unit(6, "feet"),
  28241. weight: math.unit(150, "lb"),
  28242. name: "Anthro",
  28243. image: {
  28244. source: "./media/characters/razz/anthro.svg",
  28245. extra: 1437 / 1343,
  28246. bottom: 48 / 1485
  28247. }
  28248. },
  28249. feral: {
  28250. height: math.unit(6, "feet"),
  28251. weight: math.unit(150, "lb"),
  28252. name: "Feral",
  28253. image: {
  28254. source: "./media/characters/razz/feral.svg",
  28255. extra: 2569 / 1385,
  28256. bottom: 95 / 2664
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(6, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(9 + 4 / 12, "feet"),
  28273. weight: math.unit(500, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/morrigan/front.svg",
  28277. extra: 2707 / 2579,
  28278. bottom: 156 / 2863
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(9 + 4 / 12, "feet"),
  28286. default: true
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(5, "stories"),
  28295. weight: math.unit(4000, "lb"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/jenene/front.svg",
  28299. extra: 1780 / 1710,
  28300. bottom: 57 / 1837
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Normal",
  28307. height: math.unit(5, "stories"),
  28308. default: true
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28314. {
  28315. taurSfw: {
  28316. height: math.unit(10, "meters"),
  28317. weight: math.unit(17500, "kg"),
  28318. name: "Taur",
  28319. image: {
  28320. source: "./media/characters/faey/taur-sfw.svg",
  28321. extra: 1200 / 968,
  28322. bottom: 41 / 1241
  28323. }
  28324. },
  28325. chestmaw: {
  28326. height: math.unit(2.01, "meters"),
  28327. name: "Chestmaw",
  28328. image: {
  28329. source: "./media/characters/faey/chestmaw.svg"
  28330. }
  28331. },
  28332. foot: {
  28333. height: math.unit(2.43, "meters"),
  28334. name: "Foot",
  28335. image: {
  28336. source: "./media/characters/faey/foot.svg"
  28337. }
  28338. },
  28339. jaws: {
  28340. height: math.unit(1.66, "meters"),
  28341. name: "Jaws",
  28342. image: {
  28343. source: "./media/characters/faey/jaws.svg"
  28344. }
  28345. },
  28346. tongues: {
  28347. height: math.unit(2.01, "meters"),
  28348. name: "Tongues",
  28349. image: {
  28350. source: "./media/characters/faey/tongues.svg"
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Small",
  28357. height: math.unit(10, "meters"),
  28358. default: true
  28359. },
  28360. {
  28361. name: "Big",
  28362. height: math.unit(500000, "km")
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(7, "feet"),
  28371. weight: math.unit(275, "lb"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/roku/front.svg",
  28375. extra: 903 / 878,
  28376. bottom: 37 / 940
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(7, "feet"),
  28384. default: true
  28385. },
  28386. {
  28387. name: "Macro",
  28388. height: math.unit(500, "feet")
  28389. },
  28390. {
  28391. name: "Megamacro",
  28392. height: math.unit(200, "miles")
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(6 + 2 / 12, "feet"),
  28401. weight: math.unit(150, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/lira/front.svg",
  28405. extra: 1727 / 1605,
  28406. bottom: 26 / 1753
  28407. }
  28408. },
  28409. back: {
  28410. height: math.unit(6 + 2 / 12, "feet"),
  28411. weight: math.unit(150, "lb"),
  28412. name: "Back",
  28413. image: {
  28414. source: "./media/characters/lira/back.svg",
  28415. extra: 1713/1621,
  28416. bottom: 20/1733
  28417. }
  28418. },
  28419. hand: {
  28420. height: math.unit(0.75, "feet"),
  28421. name: "Hand",
  28422. image: {
  28423. source: "./media/characters/lira/hand.svg"
  28424. }
  28425. },
  28426. maw: {
  28427. height: math.unit(0.65, "feet"),
  28428. name: "Maw",
  28429. image: {
  28430. source: "./media/characters/lira/maw.svg"
  28431. }
  28432. },
  28433. pawDigi: {
  28434. height: math.unit(1.6, "feet"),
  28435. name: "Paw Digi",
  28436. image: {
  28437. source: "./media/characters/lira/paw-digi.svg"
  28438. }
  28439. },
  28440. pawPlanti: {
  28441. height: math.unit(1.4, "feet"),
  28442. name: "Paw Planti",
  28443. image: {
  28444. source: "./media/characters/lira/paw-planti.svg"
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(6 + 2 / 12, "feet"),
  28452. default: true
  28453. },
  28454. {
  28455. name: "Macro",
  28456. height: math.unit(100, "feet")
  28457. },
  28458. {
  28459. name: "Macro²",
  28460. height: math.unit(1600, "feet")
  28461. },
  28462. {
  28463. name: "Planetary",
  28464. height: math.unit(20, "earths")
  28465. },
  28466. ]
  28467. ))
  28468. characterMakers.push(() => makeCharacter(
  28469. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28470. {
  28471. front: {
  28472. height: math.unit(6, "feet"),
  28473. weight: math.unit(150, "lb"),
  28474. name: "Front",
  28475. image: {
  28476. source: "./media/characters/hadjet/front.svg",
  28477. extra: 1480 / 1346,
  28478. bottom: 26 / 1506
  28479. }
  28480. },
  28481. frontNsfw: {
  28482. height: math.unit(6, "feet"),
  28483. weight: math.unit(150, "lb"),
  28484. name: "Front (NSFW)",
  28485. image: {
  28486. source: "./media/characters/hadjet/front-nsfw.svg",
  28487. extra: 1440 / 1358,
  28488. bottom: 52 / 1492
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(10, "stories"),
  28496. default: true
  28497. },
  28498. {
  28499. name: "Megamacro",
  28500. height: math.unit(1.5, "miles")
  28501. },
  28502. {
  28503. name: "Megamacro+",
  28504. height: math.unit(5, "miles")
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28510. {
  28511. side: {
  28512. height: math.unit(106, "feet"),
  28513. weight: math.unit(500, "tonnes"),
  28514. name: "Side",
  28515. image: {
  28516. source: "./media/characters/kodran/side.svg",
  28517. extra: 553 / 480,
  28518. bottom: 33 / 586
  28519. }
  28520. },
  28521. front: {
  28522. height: math.unit(132, "feet"),
  28523. weight: math.unit(500, "tonnes"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/kodran/front.svg",
  28527. extra: 667 / 643,
  28528. bottom: 42 / 709
  28529. }
  28530. },
  28531. flying: {
  28532. height: math.unit(350, "feet"),
  28533. weight: math.unit(500, "tonnes"),
  28534. name: "Flying",
  28535. image: {
  28536. source: "./media/characters/kodran/flying.svg"
  28537. }
  28538. },
  28539. foot: {
  28540. height: math.unit(33, "feet"),
  28541. name: "Foot",
  28542. image: {
  28543. source: "./media/characters/kodran/foot.svg"
  28544. }
  28545. },
  28546. footFront: {
  28547. height: math.unit(19, "feet"),
  28548. name: "Foot (Front)",
  28549. image: {
  28550. source: "./media/characters/kodran/foot-front.svg",
  28551. extra: 261 / 261,
  28552. bottom: 91 / 352
  28553. }
  28554. },
  28555. headFront: {
  28556. height: math.unit(53, "feet"),
  28557. name: "Head (Front)",
  28558. image: {
  28559. source: "./media/characters/kodran/head-front.svg"
  28560. }
  28561. },
  28562. headSide: {
  28563. height: math.unit(65, "feet"),
  28564. name: "Head (Side)",
  28565. image: {
  28566. source: "./media/characters/kodran/head-side.svg"
  28567. }
  28568. },
  28569. throat: {
  28570. height: math.unit(79, "feet"),
  28571. name: "Throat",
  28572. image: {
  28573. source: "./media/characters/kodran/throat.svg"
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Large",
  28580. height: math.unit(106, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28587. {
  28588. side: {
  28589. height: math.unit(11, "feet"),
  28590. weight: math.unit(150, "lb"),
  28591. name: "Side",
  28592. image: {
  28593. source: "./media/characters/pyxaron/side.svg",
  28594. extra: 305 / 195,
  28595. bottom: 17 / 322
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(11, "feet"),
  28603. default: true
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(6, "feet"),
  28612. weight: math.unit(150, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/meep/front.svg",
  28616. extra: 88 / 80,
  28617. bottom: 6 / 94
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Fun Sized",
  28624. height: math.unit(2, "inches"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Friend Sized",
  28629. height: math.unit(8, "inches")
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(15, "feet"),
  28638. weight: math.unit(2500, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/holly-rabbit/front.svg",
  28642. extra: 1433 / 1233,
  28643. bottom: 125 / 1558
  28644. }
  28645. },
  28646. dick: {
  28647. height: math.unit(4.6, "feet"),
  28648. name: "Dick",
  28649. image: {
  28650. source: "./media/characters/holly-rabbit/dick.svg"
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(15, "feet"),
  28658. default: true
  28659. },
  28660. {
  28661. name: "Macro",
  28662. height: math.unit(250, "feet")
  28663. },
  28664. {
  28665. name: "Macro+",
  28666. height: math.unit(2500, "feet")
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28672. {
  28673. front: {
  28674. height: math.unit(3.02, "meters"),
  28675. weight: math.unit(500, "kg"),
  28676. name: "Front",
  28677. image: {
  28678. source: "./media/characters/drena/front.svg",
  28679. extra: 282 / 243,
  28680. bottom: 8 / 290
  28681. }
  28682. },
  28683. side: {
  28684. height: math.unit(3.02, "meters"),
  28685. weight: math.unit(500, "kg"),
  28686. name: "Side",
  28687. image: {
  28688. source: "./media/characters/drena/side.svg",
  28689. extra: 280 / 245,
  28690. bottom: 10 / 290
  28691. }
  28692. },
  28693. back: {
  28694. height: math.unit(3.02, "meters"),
  28695. weight: math.unit(500, "kg"),
  28696. name: "Back",
  28697. image: {
  28698. source: "./media/characters/drena/back.svg",
  28699. extra: 278 / 243,
  28700. bottom: 2 / 280
  28701. }
  28702. },
  28703. foot: {
  28704. height: math.unit(0.75, "meters"),
  28705. name: "Foot",
  28706. image: {
  28707. source: "./media/characters/drena/foot.svg"
  28708. }
  28709. },
  28710. maw: {
  28711. height: math.unit(0.82, "meters"),
  28712. name: "Maw",
  28713. image: {
  28714. source: "./media/characters/drena/maw.svg"
  28715. }
  28716. },
  28717. rump: {
  28718. height: math.unit(0.93, "meters"),
  28719. name: "Rump",
  28720. image: {
  28721. source: "./media/characters/drena/rump.svg"
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Normal",
  28728. height: math.unit(3.02, "meters"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(6 + 4 / 12, "feet"),
  28738. weight: math.unit(250, "lb"),
  28739. name: "Front",
  28740. image: {
  28741. source: "./media/characters/remmyzilla/front.svg",
  28742. extra: 4033 / 3588,
  28743. bottom: 123 / 4156
  28744. }
  28745. },
  28746. back: {
  28747. height: math.unit(6 + 4 / 12, "feet"),
  28748. weight: math.unit(250, "lb"),
  28749. name: "Back",
  28750. image: {
  28751. source: "./media/characters/remmyzilla/back.svg",
  28752. extra: 2687 / 2555,
  28753. bottom: 48 / 2735
  28754. }
  28755. },
  28756. paw: {
  28757. height: math.unit(1.73, "feet"),
  28758. name: "Paw",
  28759. image: {
  28760. source: "./media/characters/remmyzilla/paw.svg"
  28761. }
  28762. },
  28763. maw: {
  28764. height: math.unit(1.73, "feet"),
  28765. name: "Maw",
  28766. image: {
  28767. source: "./media/characters/remmyzilla/maw.svg"
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(6 + 4 / 12, "feet")
  28775. },
  28776. {
  28777. name: "Minimacro",
  28778. height: math.unit(12 + 8 / 12, "feet")
  28779. },
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(640, "feet"),
  28783. default: true
  28784. },
  28785. {
  28786. name: "Megamacro",
  28787. height: math.unit(6400, "feet")
  28788. },
  28789. {
  28790. name: "Gigamacro",
  28791. height: math.unit(64000, "miles")
  28792. },
  28793. ]
  28794. ))
  28795. characterMakers.push(() => makeCharacter(
  28796. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28797. {
  28798. front: {
  28799. height: math.unit(2.5, "meters"),
  28800. weight: math.unit(300, "lb"),
  28801. name: "Front",
  28802. image: {
  28803. source: "./media/characters/lawrence/front.svg",
  28804. extra: 357 / 335,
  28805. bottom: 30 / 387
  28806. }
  28807. },
  28808. back: {
  28809. height: math.unit(2.5, "meters"),
  28810. weight: math.unit(300, "lb"),
  28811. name: "Back",
  28812. image: {
  28813. source: "./media/characters/lawrence/back.svg",
  28814. extra: 357 / 338,
  28815. bottom: 16 / 373
  28816. }
  28817. },
  28818. head: {
  28819. height: math.unit(0.9, "meter"),
  28820. name: "Head",
  28821. image: {
  28822. source: "./media/characters/lawrence/head.svg"
  28823. }
  28824. },
  28825. maw: {
  28826. height: math.unit(0.7, "meter"),
  28827. name: "Maw",
  28828. image: {
  28829. source: "./media/characters/lawrence/maw.svg"
  28830. }
  28831. },
  28832. footBottom: {
  28833. height: math.unit(0.5, "meter"),
  28834. name: "Foot (Bottom)",
  28835. image: {
  28836. source: "./media/characters/lawrence/foot-bottom.svg"
  28837. }
  28838. },
  28839. footTop: {
  28840. height: math.unit(0.5, "meter"),
  28841. name: "Foot (Top)",
  28842. image: {
  28843. source: "./media/characters/lawrence/foot-top.svg"
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(2.5, "meters"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Macro",
  28855. height: math.unit(95, "meters")
  28856. },
  28857. {
  28858. name: "Megamacro",
  28859. height: math.unit(150, "km")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28865. {
  28866. front: {
  28867. height: math.unit(4.2, "meters"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/sydney/front.svg",
  28871. extra: 1323 / 1277,
  28872. bottom: 111 / 1434
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(4.2, "meters"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28886. {
  28887. back: {
  28888. height: math.unit(201, "feet"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/jessica/back.svg",
  28892. extra: 273 / 259,
  28893. bottom: 7 / 280
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(201, "feet"),
  28901. default: true
  28902. },
  28903. {
  28904. name: "Megamacro",
  28905. height: math.unit(8, "miles")
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28911. {
  28912. side: {
  28913. height: math.unit(320, "cm"),
  28914. name: "Side",
  28915. image: {
  28916. source: "./media/characters/victoria/side.svg",
  28917. extra: 778 / 346,
  28918. bottom: 56 / 834
  28919. }
  28920. },
  28921. maw: {
  28922. height: math.unit(5.9, "feet"),
  28923. name: "Maw",
  28924. image: {
  28925. source: "./media/characters/victoria/maw.svg"
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(320, "cm"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28939. {
  28940. front: {
  28941. height: math.unit(5 + 6 / 12, "feet"),
  28942. name: "Front",
  28943. image: {
  28944. source: "./media/characters/cat/front.svg",
  28945. extra: 1449/1295,
  28946. bottom: 34/1483
  28947. }
  28948. },
  28949. back: {
  28950. height: math.unit(5 + 6 / 12, "feet"),
  28951. name: "Back",
  28952. image: {
  28953. source: "./media/characters/cat/back.svg",
  28954. extra: 1466/1301,
  28955. bottom: 19/1485
  28956. }
  28957. },
  28958. taur: {
  28959. height: math.unit(7, "feet"),
  28960. name: "Taur",
  28961. image: {
  28962. source: "./media/characters/cat/taur.svg",
  28963. extra: 1389/1233,
  28964. bottom: 83/1472
  28965. }
  28966. },
  28967. lucarioFront: {
  28968. height: math.unit(4, "feet"),
  28969. name: "Lucario (Front)",
  28970. image: {
  28971. source: "./media/characters/cat/lucario-front.svg",
  28972. extra: 1149/1019,
  28973. bottom: 84/1233
  28974. }
  28975. },
  28976. lucarioBack: {
  28977. height: math.unit(4, "feet"),
  28978. name: "Lucario (Back)",
  28979. image: {
  28980. source: "./media/characters/cat/lucario-back.svg",
  28981. extra: 1190/1059,
  28982. bottom: 33/1223
  28983. }
  28984. },
  28985. megaLucario: {
  28986. height: math.unit(4, "feet"),
  28987. name: "Mega Lucario",
  28988. image: {
  28989. source: "./media/characters/cat/mega-lucario.svg",
  28990. extra: 1515 / 1319,
  28991. bottom: 63 / 1578
  28992. }
  28993. },
  28994. nickit: {
  28995. height: math.unit(2, "feet"),
  28996. name: "Nickit",
  28997. image: {
  28998. source: "./media/characters/cat/nickit.svg",
  28999. extra: 1980 / 1585,
  29000. bottom: 102 / 2082
  29001. }
  29002. },
  29003. lopunnyFront: {
  29004. height: math.unit(5, "feet"),
  29005. name: "Lopunny (Front)",
  29006. image: {
  29007. source: "./media/characters/cat/lopunny-front.svg",
  29008. extra: 1782 / 1469,
  29009. bottom: 38 / 1820
  29010. }
  29011. },
  29012. lopunnyBack: {
  29013. height: math.unit(5, "feet"),
  29014. name: "Lopunny (Back)",
  29015. image: {
  29016. source: "./media/characters/cat/lopunny-back.svg",
  29017. extra: 1660 / 1490,
  29018. bottom: 25 / 1685
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Really small",
  29025. height: math.unit(1, "nm")
  29026. },
  29027. {
  29028. name: "Micro",
  29029. height: math.unit(5, "inches")
  29030. },
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(5 + 6 / 12, "feet"),
  29034. default: true
  29035. },
  29036. {
  29037. name: "Macro",
  29038. height: math.unit(50, "feet")
  29039. },
  29040. {
  29041. name: "Macro+",
  29042. height: math.unit(150, "feet")
  29043. },
  29044. {
  29045. name: "Megamacro",
  29046. height: math.unit(100, "miles")
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(63.4, "meters"),
  29055. weight: math.unit(3.28349e+6, "kilograms"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/kirina-violet/front.svg",
  29059. extra: 2812 / 2725,
  29060. bottom: 0 / 2812
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(63.4, "meters"),
  29065. weight: math.unit(3.28349e+6, "kilograms"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/kirina-violet/back.svg",
  29069. extra: 2812 / 2725,
  29070. bottom: 0 / 2812
  29071. }
  29072. },
  29073. mouth: {
  29074. height: math.unit(4.35, "meters"),
  29075. name: "Mouth",
  29076. image: {
  29077. source: "./media/characters/kirina-violet/mouth.svg"
  29078. }
  29079. },
  29080. paw: {
  29081. height: math.unit(5.6, "meters"),
  29082. name: "Paw",
  29083. image: {
  29084. source: "./media/characters/kirina-violet/paw.svg"
  29085. }
  29086. },
  29087. tail: {
  29088. height: math.unit(18, "meters"),
  29089. name: "Tail",
  29090. image: {
  29091. source: "./media/characters/kirina-violet/tail.svg"
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(63.4, "meters"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(75, "feet"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/cat-gigachu/front.svg",
  29111. extra: 1239/1027,
  29112. bottom: 32/1271
  29113. }
  29114. },
  29115. back: {
  29116. height: math.unit(75, "feet"),
  29117. name: "Back",
  29118. image: {
  29119. source: "./media/characters/cat-gigachu/back.svg",
  29120. extra: 1229/1030,
  29121. bottom: 9/1238
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Dynamax",
  29128. height: math.unit(75, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29135. {
  29136. front: {
  29137. height: math.unit(6, "feet"),
  29138. weight: math.unit(150, "lb"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/sfaiyan/front.svg",
  29142. extra: 999 / 978,
  29143. bottom: 5 / 1004
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(1.82, "meters")
  29151. },
  29152. {
  29153. name: "Giant",
  29154. height: math.unit(2.27, "km"),
  29155. default: true
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(179, "cm"),
  29164. weight: math.unit(100, "kg"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/raunehkeli/front.svg",
  29168. extra: 1934 / 1926,
  29169. bottom: 0 / 1934
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Normal",
  29176. height: math.unit(179, "cm")
  29177. },
  29178. {
  29179. name: "Maximum",
  29180. height: math.unit(575, "meters"),
  29181. default: true
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29194. extra: 2625 / 2518,
  29195. bottom: 60 / 2685
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(6 + 2 / 12, "feet")
  29203. },
  29204. {
  29205. name: "Macro",
  29206. height: math.unit(1180, "feet"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(5 + 6 / 12, "feet"),
  29216. weight: math.unit(108, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/lilith-zott/front.svg",
  29220. extra: 2510 / 2238,
  29221. bottom: 100 / 2610
  29222. }
  29223. },
  29224. frontDressed: {
  29225. height: math.unit(5 + 6 / 12, "feet"),
  29226. weight: math.unit(108, "lb"),
  29227. name: "Front (Dressed)",
  29228. image: {
  29229. source: "./media/characters/lilith-zott/front-dressed.svg",
  29230. extra: 2510 / 2238,
  29231. bottom: 100 / 2610
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(5 + 6 / 12, "feet")
  29239. },
  29240. {
  29241. name: "Macro",
  29242. height: math.unit(1030, "feet"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], 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/holly-the-mega-mousky-heathers/front.svg",
  29256. extra: 2567 / 2435,
  29257. bottom: 39 / 2606
  29258. }
  29259. },
  29260. frontSuper: {
  29261. height: math.unit(6, "feet"),
  29262. name: "Front (Super)",
  29263. image: {
  29264. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29265. extra: 2567 / 2435,
  29266. bottom: 39 / 2606
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(5 + 10 / 12, "feet")
  29274. },
  29275. {
  29276. name: "Macro",
  29277. height: math.unit(1100, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(100, "miles"),
  29287. name: "Front",
  29288. image: {
  29289. source: "./media/characters/sona/front.svg",
  29290. extra: 2433 / 2201,
  29291. bottom: 53 / 2486
  29292. }
  29293. },
  29294. foot: {
  29295. height: math.unit(16.1, "miles"),
  29296. name: "Foot",
  29297. image: {
  29298. source: "./media/characters/sona/foot.svg"
  29299. }
  29300. },
  29301. },
  29302. [
  29303. {
  29304. name: "Macro",
  29305. height: math.unit(100, "miles"),
  29306. default: true
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29312. {
  29313. front: {
  29314. height: math.unit(6, "feet"),
  29315. weight: math.unit(150, "lb"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/bailey/front.svg",
  29319. extra: 1778 / 1724,
  29320. bottom: 30 / 1808
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Micro",
  29327. height: math.unit(4, "inches")
  29328. },
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(5 + 5 / 12, "feet"),
  29332. default: true
  29333. },
  29334. {
  29335. name: "Macro",
  29336. height: math.unit(250, "feet")
  29337. },
  29338. {
  29339. name: "Megamacro",
  29340. height: math.unit(100, "miles")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(5 + 2 / 12, "feet"),
  29349. weight: math.unit(120, "lb"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/snaps/front.svg",
  29353. extra: 2370 / 2177,
  29354. bottom: 48 / 2418
  29355. }
  29356. },
  29357. back: {
  29358. height: math.unit(5 + 2 / 12, "feet"),
  29359. weight: math.unit(120, "lb"),
  29360. name: "Back",
  29361. image: {
  29362. source: "./media/characters/snaps/back.svg",
  29363. extra: 2408 / 2258,
  29364. bottom: 15 / 2423
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Micro",
  29371. height: math.unit(9, "inches")
  29372. },
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(5 + 2 / 12, "feet"),
  29376. default: true
  29377. },
  29378. {
  29379. name: "Mini Macro",
  29380. height: math.unit(10, "feet")
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(1.8, "meters"),
  29389. weight: math.unit(85, "kg"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/azteck/front.svg",
  29393. extra: 2815 / 2625,
  29394. bottom: 89 / 2904
  29395. }
  29396. },
  29397. back: {
  29398. height: math.unit(1.8, "meters"),
  29399. weight: math.unit(85, "kg"),
  29400. name: "Back",
  29401. image: {
  29402. source: "./media/characters/azteck/back.svg",
  29403. extra: 2856 / 2648,
  29404. bottom: 85 / 2941
  29405. }
  29406. },
  29407. frontDressed: {
  29408. height: math.unit(1.8, "meters"),
  29409. weight: math.unit(85, "kg"),
  29410. name: "Front (Dressed)",
  29411. image: {
  29412. source: "./media/characters/azteck/front-dressed.svg",
  29413. extra: 2147 / 2003,
  29414. bottom: 68 / 2215
  29415. }
  29416. },
  29417. head: {
  29418. height: math.unit(0.47, "meters"),
  29419. weight: math.unit(85, "kg"),
  29420. name: "Head",
  29421. image: {
  29422. source: "./media/characters/azteck/head.svg"
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Bite sized",
  29429. height: math.unit(16, "cm")
  29430. },
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(1.8, "meters"),
  29434. default: true
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(6, "feet"),
  29443. weight: math.unit(150, "lb"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/pidge/front.svg",
  29447. extra: 620 / 588,
  29448. bottom: 9 / 629
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(150, "lb"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/pidge/back.svg",
  29457. extra: 620 / 588,
  29458. bottom: 9 / 629
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Macro",
  29465. height: math.unit(1, "mile"),
  29466. default: true
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(6, "feet"),
  29475. weight: math.unit(150, "lb"),
  29476. name: "Front",
  29477. image: {
  29478. source: "./media/characters/en/front.svg",
  29479. extra: 1697 / 1563,
  29480. bottom: 103 / 1800
  29481. }
  29482. },
  29483. back: {
  29484. height: math.unit(6, "feet"),
  29485. weight: math.unit(150, "lb"),
  29486. name: "Back",
  29487. image: {
  29488. source: "./media/characters/en/back.svg",
  29489. extra: 1700 / 1570,
  29490. bottom: 51 / 1751
  29491. }
  29492. },
  29493. frontDressed: {
  29494. height: math.unit(6, "feet"),
  29495. weight: math.unit(150, "lb"),
  29496. name: "Front (Dressed)",
  29497. image: {
  29498. source: "./media/characters/en/front-dressed.svg",
  29499. extra: 1697 / 1563,
  29500. bottom: 103 / 1800
  29501. }
  29502. },
  29503. backDressed: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Back (Dressed)",
  29507. image: {
  29508. source: "./media/characters/en/back-dressed.svg",
  29509. extra: 1700 / 1570,
  29510. bottom: 51 / 1751
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Macro",
  29517. height: math.unit(210, "feet"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6, "feet"),
  29527. weight: math.unit(150, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/haze-orris/front.svg",
  29531. extra: 3975 / 3525,
  29532. bottom: 137 / 4112
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Micro",
  29539. height: math.unit(150, "mm"),
  29540. default: true
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(6, "feet"),
  29549. weight: math.unit(150, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/casselene-yaro/front.svg",
  29553. extra: 4721 / 4541,
  29554. bottom: 82 / 4803
  29555. }
  29556. },
  29557. back: {
  29558. height: math.unit(6, "feet"),
  29559. weight: math.unit(150, "lb"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/casselene-yaro/back.svg",
  29563. extra: 4569 / 4377,
  29564. bottom: 69 / 4638
  29565. }
  29566. },
  29567. frontDressed: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Front-dressed",
  29571. image: {
  29572. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29573. extra: 4721 / 4541,
  29574. bottom: 82 / 4803
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Macro",
  29581. height: math.unit(190, "feet"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29588. {
  29589. front: {
  29590. height: math.unit(6, "feet"),
  29591. weight: math.unit(150, "lb"),
  29592. name: "Front",
  29593. image: {
  29594. source: "./media/characters/myra-rue-delore/front.svg",
  29595. extra: 1340 / 1308,
  29596. bottom: 67 / 1407
  29597. }
  29598. },
  29599. back: {
  29600. height: math.unit(6, "feet"),
  29601. weight: math.unit(150, "lb"),
  29602. name: "Back",
  29603. image: {
  29604. source: "./media/characters/myra-rue-delore/back.svg",
  29605. extra: 1341 / 1310,
  29606. bottom: 40 / 1381
  29607. }
  29608. },
  29609. frontDressed: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Front (Dressed)",
  29613. image: {
  29614. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29615. extra: 1340 / 1308,
  29616. bottom: 67 / 1407
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Macro",
  29623. height: math.unit(150, "feet"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(10, "feet"),
  29633. weight: math.unit(15015, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/fem!plat/front.svg",
  29637. extra: 2799 / 2604,
  29638. bottom: 149 / 2948
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Normal",
  29645. height: math.unit(10, "feet"),
  29646. default: true
  29647. },
  29648. {
  29649. name: "Macro",
  29650. height: math.unit(100, "feet")
  29651. },
  29652. {
  29653. name: "Megamacro",
  29654. height: math.unit(1000, "feet")
  29655. },
  29656. ]
  29657. ))
  29658. characterMakers.push(() => makeCharacter(
  29659. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29660. {
  29661. front: {
  29662. height: math.unit(15 + 5 / 12, "feet"),
  29663. weight: math.unit(4600, "lb"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/neapolitan-ananassa/front.svg",
  29667. extra: 2903 / 2736,
  29668. bottom: 0 / 2903
  29669. }
  29670. },
  29671. side: {
  29672. height: math.unit(15 + 5 / 12, "feet"),
  29673. weight: math.unit(4600, "lb"),
  29674. name: "Side",
  29675. image: {
  29676. source: "./media/characters/neapolitan-ananassa/side.svg",
  29677. extra: 2925 / 2719,
  29678. bottom: 0 / 2925
  29679. }
  29680. },
  29681. back: {
  29682. height: math.unit(15 + 5 / 12, "feet"),
  29683. weight: math.unit(4600, "lb"),
  29684. name: "Back",
  29685. image: {
  29686. source: "./media/characters/neapolitan-ananassa/back.svg",
  29687. extra: 2903 / 2736,
  29688. bottom: 0 / 2903
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(15 + 5 / 12, "feet"),
  29696. default: true
  29697. },
  29698. {
  29699. name: "Post-Millenium",
  29700. height: math.unit(35 + 5 / 12, "feet")
  29701. },
  29702. {
  29703. name: "Post-Era",
  29704. height: math.unit(450 + 5 / 12, "feet")
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(300, "meters"),
  29713. weight: math.unit(125000, "tonnes"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/pazuzu/front.svg",
  29717. extra: 877 / 794,
  29718. bottom: 47 / 924
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Macro",
  29725. height: math.unit(300, "meters"),
  29726. default: true
  29727. },
  29728. ]
  29729. ))
  29730. characterMakers.push(() => makeCharacter(
  29731. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29732. {
  29733. side: {
  29734. height: math.unit(10 + 7 / 12, "feet"),
  29735. weight: math.unit(2.5, "tons"),
  29736. name: "Side",
  29737. image: {
  29738. source: "./media/characters/aasha/side.svg",
  29739. extra: 1345 / 1245,
  29740. bottom: 111 / 1456
  29741. }
  29742. },
  29743. back: {
  29744. height: math.unit(10 + 7 / 12, "feet"),
  29745. weight: math.unit(2.5, "tons"),
  29746. name: "Back",
  29747. image: {
  29748. source: "./media/characters/aasha/back.svg",
  29749. extra: 1133 / 1057,
  29750. bottom: 257 / 1390
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(10 + 7 / 12, "feet"),
  29758. default: true
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(6 + 3 / 12, "feet"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/nevan/front.svg",
  29770. extra: 704 / 704,
  29771. bottom: 28 / 732
  29772. }
  29773. },
  29774. back: {
  29775. height: math.unit(6 + 3 / 12, "feet"),
  29776. name: "Back",
  29777. image: {
  29778. source: "./media/characters/nevan/back.svg",
  29779. extra: 714 / 714,
  29780. bottom: 21 / 735
  29781. }
  29782. },
  29783. frontFlaccid: {
  29784. height: math.unit(6 + 3 / 12, "feet"),
  29785. name: "Front (Flaccid)",
  29786. image: {
  29787. source: "./media/characters/nevan/front-flaccid.svg",
  29788. extra: 704 / 704,
  29789. bottom: 28 / 732
  29790. }
  29791. },
  29792. frontErect: {
  29793. height: math.unit(6 + 3 / 12, "feet"),
  29794. name: "Front (Erect)",
  29795. image: {
  29796. source: "./media/characters/nevan/front-erect.svg",
  29797. extra: 704 / 704,
  29798. bottom: 28 / 732
  29799. }
  29800. },
  29801. backFlaccid: {
  29802. height: math.unit(6 + 3 / 12, "feet"),
  29803. name: "Back (Flaccid)",
  29804. image: {
  29805. source: "./media/characters/nevan/back-flaccid.svg",
  29806. extra: 714 / 714,
  29807. bottom: 21 / 735
  29808. }
  29809. },
  29810. },
  29811. [
  29812. {
  29813. name: "Normal",
  29814. height: math.unit(6 + 3 / 12, "feet"),
  29815. default: true
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(4, "feet"),
  29824. name: "Front",
  29825. image: {
  29826. source: "./media/characters/arhan/front.svg",
  29827. extra: 3368 / 3133,
  29828. bottom: 0 / 3368
  29829. }
  29830. },
  29831. side: {
  29832. height: math.unit(4, "feet"),
  29833. name: "Side",
  29834. image: {
  29835. source: "./media/characters/arhan/side.svg",
  29836. extra: 3347 / 3105,
  29837. bottom: 0 / 3347
  29838. }
  29839. },
  29840. tongue: {
  29841. height: math.unit(1.42, "feet"),
  29842. name: "Tongue",
  29843. image: {
  29844. source: "./media/characters/arhan/tongue.svg"
  29845. }
  29846. },
  29847. head: {
  29848. height: math.unit(0.85, "feet"),
  29849. name: "Head",
  29850. image: {
  29851. source: "./media/characters/arhan/head.svg"
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(4, "feet"),
  29859. default: true
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(5 + 7.5 / 12, "feet"),
  29868. weight: math.unit(120, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/digi-duncan/front.svg",
  29872. extra: 330 / 326,
  29873. bottom: 16 / 346
  29874. }
  29875. },
  29876. side: {
  29877. height: math.unit(5 + 7.5 / 12, "feet"),
  29878. weight: math.unit(120, "lb"),
  29879. name: "Side",
  29880. image: {
  29881. source: "./media/characters/digi-duncan/side.svg",
  29882. extra: 341 / 337,
  29883. bottom: 1 / 342
  29884. }
  29885. },
  29886. back: {
  29887. height: math.unit(5 + 7.5 / 12, "feet"),
  29888. weight: math.unit(120, "lb"),
  29889. name: "Back",
  29890. image: {
  29891. source: "./media/characters/digi-duncan/back.svg",
  29892. extra: 330 / 326,
  29893. bottom: 12 / 342
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Speck",
  29900. height: math.unit(0.25, "mm")
  29901. },
  29902. {
  29903. name: "Micro",
  29904. height: math.unit(5, "mm")
  29905. },
  29906. {
  29907. name: "Tiny",
  29908. height: math.unit(0.5, "inches"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Human",
  29913. height: math.unit(5 + 7.5 / 12, "feet")
  29914. },
  29915. {
  29916. name: "Minigiant",
  29917. height: math.unit(8 + 5.25, "feet")
  29918. },
  29919. {
  29920. name: "Giant",
  29921. height: math.unit(2000, "feet")
  29922. },
  29923. {
  29924. name: "Mega",
  29925. height: math.unit(371.1, "miles")
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(2, "meters"),
  29934. weight: math.unit(350, "kg"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29938. extra: 898 / 838,
  29939. bottom: 9 / 907
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Micro",
  29946. height: math.unit(8, "meters")
  29947. },
  29948. {
  29949. name: "Normal",
  29950. height: math.unit(50, "meters"),
  29951. default: true
  29952. },
  29953. {
  29954. name: "Macro",
  29955. height: math.unit(500, "meters")
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(6 + 6 / 12, "feet"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/khardesh/front.svg",
  29967. extra: 888 / 797,
  29968. bottom: 25 / 913
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Normal",
  29975. height: math.unit(6 + 6 / 12, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Normal+",
  29980. height: math.unit(4, "meters")
  29981. },
  29982. {
  29983. name: "Macro",
  29984. height: math.unit(50, "meters")
  29985. },
  29986. {
  29987. name: "Macro+",
  29988. height: math.unit(100, "meters")
  29989. },
  29990. {
  29991. name: "Megamacro",
  29992. height: math.unit(20, "km")
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/kosho/front.svg",
  30005. extra: 1847 / 1847,
  30006. bottom: 86 / 1933
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Second-stage micro",
  30013. height: math.unit(0.5, "inches")
  30014. },
  30015. {
  30016. name: "First-stage micro",
  30017. height: math.unit(6, "inches")
  30018. },
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(6, "feet"),
  30022. default: true
  30023. },
  30024. {
  30025. name: "First-stage macro",
  30026. height: math.unit(72, "feet")
  30027. },
  30028. {
  30029. name: "Second-stage macro",
  30030. height: math.unit(864, "feet")
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30036. {
  30037. normal: {
  30038. height: math.unit(4 + 6 / 12, "feet"),
  30039. name: "Normal",
  30040. image: {
  30041. source: "./media/characters/hydra/normal.svg",
  30042. extra: 2833 / 2634,
  30043. bottom: 68 / 2901
  30044. }
  30045. },
  30046. smol: {
  30047. height: math.unit(0.705, "inches"),
  30048. name: "Smol",
  30049. image: {
  30050. source: "./media/characters/hydra/smol.svg",
  30051. extra: 2715 / 2540,
  30052. bottom: 0 / 2715
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(4 + 6 / 12, "feet"),
  30060. default: true
  30061. }
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(0.6, "cm"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/daz/front.svg",
  30072. extra: 1682 / 1164,
  30073. bottom: 42 / 1724
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(0.6, "cm"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(235, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/theo-pangolin/front.svg",
  30094. extra: 1996 / 1969,
  30095. bottom: 115 / 2111
  30096. }
  30097. },
  30098. back: {
  30099. height: math.unit(6, "feet"),
  30100. weight: math.unit(235, "lb"),
  30101. name: "Back",
  30102. image: {
  30103. source: "./media/characters/theo-pangolin/back.svg",
  30104. extra: 1979 / 1979,
  30105. bottom: 40 / 2019
  30106. }
  30107. },
  30108. feral: {
  30109. height: math.unit(2, "feet"),
  30110. weight: math.unit(30, "lb"),
  30111. name: "Feral",
  30112. image: {
  30113. source: "./media/characters/theo-pangolin/feral.svg",
  30114. extra: 803 / 791,
  30115. bottom: 181 / 984
  30116. }
  30117. },
  30118. footFive: {
  30119. height: math.unit(1.43, "feet"),
  30120. name: "Foot (Five Toes)",
  30121. image: {
  30122. source: "./media/characters/theo-pangolin/foot-five.svg"
  30123. }
  30124. },
  30125. footFour: {
  30126. height: math.unit(1.43, "feet"),
  30127. name: "Foot (Four Toes)",
  30128. image: {
  30129. source: "./media/characters/theo-pangolin/foot-four.svg"
  30130. }
  30131. },
  30132. handFour: {
  30133. height: math.unit(0.81, "feet"),
  30134. name: "Hand (Four Fingers)",
  30135. image: {
  30136. source: "./media/characters/theo-pangolin/hand-four.svg"
  30137. }
  30138. },
  30139. handThree: {
  30140. height: math.unit(0.81, "feet"),
  30141. name: "Hand (Three Fingers)",
  30142. image: {
  30143. source: "./media/characters/theo-pangolin/hand-three.svg"
  30144. }
  30145. },
  30146. headFront: {
  30147. height: math.unit(1.37, "feet"),
  30148. name: "Head (Front)",
  30149. image: {
  30150. source: "./media/characters/theo-pangolin/head-front.svg"
  30151. }
  30152. },
  30153. headSide: {
  30154. height: math.unit(1.43, "feet"),
  30155. name: "Head (Side)",
  30156. image: {
  30157. source: "./media/characters/theo-pangolin/head-side.svg"
  30158. }
  30159. },
  30160. tongue: {
  30161. height: math.unit(2.29, "feet"),
  30162. name: "Tongue",
  30163. image: {
  30164. source: "./media/characters/theo-pangolin/tongue.svg"
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Normal",
  30171. height: math.unit(6, "feet")
  30172. },
  30173. {
  30174. name: "Macro",
  30175. height: math.unit(400, "feet"),
  30176. default: true
  30177. },
  30178. ]
  30179. ))
  30180. characterMakers.push(() => makeCharacter(
  30181. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30182. {
  30183. front: {
  30184. height: math.unit(6, "inches"),
  30185. weight: math.unit(0.036, "kg"),
  30186. name: "Front",
  30187. image: {
  30188. source: "./media/characters/renée/front.svg",
  30189. extra: 900 / 886,
  30190. bottom: 8 / 908
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Nano",
  30197. height: math.unit(1, "nm")
  30198. },
  30199. {
  30200. name: "Micro",
  30201. height: math.unit(1, "mm")
  30202. },
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(6, "inches")
  30206. },
  30207. {
  30208. name: "Macro",
  30209. height: math.unit(2000, "feet"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Megamacro",
  30214. height: math.unit(2, "km")
  30215. },
  30216. {
  30217. name: "Gigamacro",
  30218. height: math.unit(2000, "km")
  30219. },
  30220. {
  30221. name: "Teramacro",
  30222. height: math.unit(250000, "km")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30228. {
  30229. front: {
  30230. height: math.unit(4, "meters"),
  30231. weight: math.unit(150, "kg"),
  30232. name: "Front",
  30233. image: {
  30234. source: "./media/characters/caledvwlch/front.svg",
  30235. extra: 1760 / 1551,
  30236. bottom: 28 / 1788
  30237. }
  30238. },
  30239. side: {
  30240. height: math.unit(4, "meters"),
  30241. weight: math.unit(150, "kg"),
  30242. name: "Side",
  30243. image: {
  30244. source: "./media/characters/caledvwlch/side.svg",
  30245. extra: 1605 / 1536,
  30246. bottom: 31 / 1636
  30247. }
  30248. },
  30249. back: {
  30250. height: math.unit(4, "meters"),
  30251. weight: math.unit(150, "kg"),
  30252. name: "Back",
  30253. image: {
  30254. source: "./media/characters/caledvwlch/back.svg",
  30255. extra: 1635 / 1565,
  30256. bottom: 27 / 1662
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "\"Incognito\"",
  30263. height: math.unit(4, "meters")
  30264. },
  30265. {
  30266. name: "Small rampage",
  30267. height: math.unit(600, "meters")
  30268. },
  30269. {
  30270. name: "Mega",
  30271. height: math.unit(30, "km")
  30272. },
  30273. {
  30274. name: "Home-size",
  30275. height: math.unit(50, "km"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Giga",
  30280. height: math.unit(300, "km")
  30281. },
  30282. {
  30283. name: "Lounging",
  30284. height: math.unit(11000, "km")
  30285. },
  30286. {
  30287. name: "Planet snacking",
  30288. height: math.unit(2000000, "km")
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(6, "feet"),
  30297. weight: math.unit(215, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/sapphire-svell/front.svg",
  30301. extra: 495 / 455,
  30302. bottom: 20 / 515
  30303. }
  30304. },
  30305. back: {
  30306. height: math.unit(6, "feet"),
  30307. weight: math.unit(216, "lb"),
  30308. name: "Back",
  30309. image: {
  30310. source: "./media/characters/sapphire-svell/back.svg",
  30311. extra: 497 / 477,
  30312. bottom: 7 / 504
  30313. }
  30314. },
  30315. maw: {
  30316. height: math.unit(1.57, "feet"),
  30317. name: "Maw",
  30318. image: {
  30319. source: "./media/characters/sapphire-svell/maw.svg"
  30320. }
  30321. },
  30322. foot: {
  30323. height: math.unit(1.07, "feet"),
  30324. name: "Foot",
  30325. image: {
  30326. source: "./media/characters/sapphire-svell/foot.svg"
  30327. }
  30328. },
  30329. toering: {
  30330. height: math.unit(1.7, "inch"),
  30331. name: "Toering",
  30332. image: {
  30333. source: "./media/characters/sapphire-svell/toering.svg"
  30334. }
  30335. },
  30336. },
  30337. [
  30338. {
  30339. name: "Normal",
  30340. height: math.unit(300, "feet"),
  30341. default: true
  30342. },
  30343. {
  30344. name: "Augmented",
  30345. height: math.unit(1250, "feet")
  30346. },
  30347. {
  30348. name: "Unleashed",
  30349. height: math.unit(3000, "feet")
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30355. {
  30356. side: {
  30357. height: math.unit(2 + 3 / 12, "feet"),
  30358. weight: math.unit(110, "lb"),
  30359. name: "Side",
  30360. image: {
  30361. source: "./media/characters/glitch-flux/side.svg",
  30362. extra: 997 / 805,
  30363. bottom: 20 / 1017
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(2 + 3 / 12, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(4, "meters"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/mid/front.svg",
  30383. extra: 507 / 476,
  30384. bottom: 17 / 524
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(4, "meters"),
  30389. name: "Back",
  30390. image: {
  30391. source: "./media/characters/mid/back.svg",
  30392. extra: 519 / 487,
  30393. bottom: 7 / 526
  30394. }
  30395. },
  30396. stuck: {
  30397. height: math.unit(2.2, "meters"),
  30398. name: "Stuck",
  30399. image: {
  30400. source: "./media/characters/mid/stuck.svg",
  30401. extra: 1951 / 1869,
  30402. bottom: 88 / 2039
  30403. }
  30404. }
  30405. },
  30406. [
  30407. {
  30408. name: "Normal",
  30409. height: math.unit(4, "meters"),
  30410. default: true
  30411. },
  30412. {
  30413. name: "Big",
  30414. height: math.unit(10, "meters")
  30415. },
  30416. {
  30417. name: "Macro",
  30418. height: math.unit(800, "meters")
  30419. },
  30420. {
  30421. name: "Megamacro",
  30422. height: math.unit(100, "km")
  30423. },
  30424. {
  30425. name: "Overgrown",
  30426. height: math.unit(1, "parsec")
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(2.5, "meters"),
  30435. weight: math.unit(225, "kg"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/iris/front.svg",
  30439. extra: 3348 / 3251,
  30440. bottom: 205 / 3553
  30441. }
  30442. },
  30443. maw: {
  30444. height: math.unit(0.56, "meter"),
  30445. name: "Maw",
  30446. image: {
  30447. source: "./media/characters/iris/maw.svg"
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Mewter cat",
  30454. height: math.unit(1.2, "meters")
  30455. },
  30456. {
  30457. name: "Minimacro",
  30458. height: math.unit(2.5, "meters"),
  30459. default: true
  30460. },
  30461. {
  30462. name: "Macro",
  30463. height: math.unit(180, "meters")
  30464. },
  30465. {
  30466. name: "Megamacro",
  30467. height: math.unit(2746, "meters")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(135, "lb"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/axel/front.svg",
  30480. extra: 908 / 908,
  30481. bottom: 58 / 966
  30482. }
  30483. },
  30484. side: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(135, "lb"),
  30487. name: "Side",
  30488. image: {
  30489. source: "./media/characters/axel/side.svg",
  30490. extra: 958 / 958,
  30491. bottom: 11 / 969
  30492. }
  30493. },
  30494. back: {
  30495. height: math.unit(6, "feet"),
  30496. weight: math.unit(135, "lb"),
  30497. name: "Back",
  30498. image: {
  30499. source: "./media/characters/axel/back.svg",
  30500. extra: 887 / 887,
  30501. bottom: 34 / 921
  30502. }
  30503. },
  30504. head: {
  30505. height: math.unit(1.07, "feet"),
  30506. name: "Head",
  30507. image: {
  30508. source: "./media/characters/axel/head.svg"
  30509. }
  30510. },
  30511. beak: {
  30512. height: math.unit(1.4, "feet"),
  30513. name: "Beak",
  30514. image: {
  30515. source: "./media/characters/axel/beak.svg"
  30516. }
  30517. },
  30518. beakSide: {
  30519. height: math.unit(1.4, "feet"),
  30520. name: "Beak Side",
  30521. image: {
  30522. source: "./media/characters/axel/beak-side.svg"
  30523. }
  30524. },
  30525. sheath: {
  30526. height: math.unit(0.5, "feet"),
  30527. name: "Sheath",
  30528. image: {
  30529. source: "./media/characters/axel/sheath.svg"
  30530. }
  30531. },
  30532. dick: {
  30533. height: math.unit(0.98, "feet"),
  30534. name: "Dick",
  30535. image: {
  30536. source: "./media/characters/axel/dick.svg"
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Macro",
  30543. height: math.unit(68, "meters"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(3.5, "meters"),
  30553. weight: math.unit(1200, "kg"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/joanna/front.svg",
  30557. extra: 1596 / 1488,
  30558. bottom: 29 / 1625
  30559. }
  30560. },
  30561. back: {
  30562. height: math.unit(3.5, "meters"),
  30563. weight: math.unit(1200, "kg"),
  30564. name: "Back",
  30565. image: {
  30566. source: "./media/characters/joanna/back.svg",
  30567. extra: 1594 / 1495,
  30568. bottom: 26 / 1620
  30569. }
  30570. },
  30571. frontShorts: {
  30572. height: math.unit(3.5, "meters"),
  30573. weight: math.unit(1200, "kg"),
  30574. name: "Front (Shorts)",
  30575. image: {
  30576. source: "./media/characters/joanna/front-shorts.svg",
  30577. extra: 1596 / 1488,
  30578. bottom: 29 / 1625
  30579. }
  30580. },
  30581. frontBiker: {
  30582. height: math.unit(3.5, "meters"),
  30583. weight: math.unit(1200, "kg"),
  30584. name: "Front (Biker)",
  30585. image: {
  30586. source: "./media/characters/joanna/front-biker.svg",
  30587. extra: 1596 / 1488,
  30588. bottom: 29 / 1625
  30589. }
  30590. },
  30591. backBiker: {
  30592. height: math.unit(3.5, "meters"),
  30593. weight: math.unit(1200, "kg"),
  30594. name: "Back (Biker)",
  30595. image: {
  30596. source: "./media/characters/joanna/back-biker.svg",
  30597. extra: 1594 / 1495,
  30598. bottom: 88 / 1682
  30599. }
  30600. },
  30601. bikeLeft: {
  30602. height: math.unit(2.4, "meters"),
  30603. weight: math.unit(1600, "kg"),
  30604. name: "Bike (Left)",
  30605. image: {
  30606. source: "./media/characters/joanna/bike-left.svg",
  30607. extra: 720 / 720,
  30608. bottom: 8 / 728
  30609. }
  30610. },
  30611. bikeRight: {
  30612. height: math.unit(2.4, "meters"),
  30613. weight: math.unit(1600, "kg"),
  30614. name: "Bike (Right)",
  30615. image: {
  30616. source: "./media/characters/joanna/bike-right.svg",
  30617. extra: 720 / 720,
  30618. bottom: 8 / 728
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Incognito",
  30625. height: math.unit(3.5, "meters")
  30626. },
  30627. {
  30628. name: "Casual Big",
  30629. height: math.unit(200, "meters")
  30630. },
  30631. {
  30632. name: "Macro",
  30633. height: math.unit(600, "meters")
  30634. },
  30635. {
  30636. name: "Original",
  30637. height: math.unit(20, "km"),
  30638. default: true
  30639. },
  30640. {
  30641. name: "Giga",
  30642. height: math.unit(400, "km")
  30643. },
  30644. {
  30645. name: "Lounging",
  30646. height: math.unit(1500, "km")
  30647. },
  30648. {
  30649. name: "Planetary",
  30650. height: math.unit(200000, "km")
  30651. },
  30652. ]
  30653. ))
  30654. characterMakers.push(() => makeCharacter(
  30655. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30656. {
  30657. front: {
  30658. height: math.unit(6, "feet"),
  30659. weight: math.unit(150, "lb"),
  30660. name: "Front",
  30661. image: {
  30662. source: "./media/characters/hugo-sigil/front.svg",
  30663. extra: 522 / 500,
  30664. bottom: 2 / 524
  30665. }
  30666. },
  30667. back: {
  30668. height: math.unit(6, "feet"),
  30669. weight: math.unit(150, "lb"),
  30670. name: "Back",
  30671. image: {
  30672. source: "./media/characters/hugo-sigil/back.svg",
  30673. extra: 519 / 495,
  30674. bottom: 5 / 524
  30675. }
  30676. },
  30677. maw: {
  30678. height: math.unit(1.4, "feet"),
  30679. weight: math.unit(150, "lb"),
  30680. name: "Maw",
  30681. image: {
  30682. source: "./media/characters/hugo-sigil/maw.svg"
  30683. }
  30684. },
  30685. feet: {
  30686. height: math.unit(1.56, "feet"),
  30687. weight: math.unit(150, "lb"),
  30688. name: "Feet",
  30689. image: {
  30690. source: "./media/characters/hugo-sigil/feet.svg",
  30691. extra: 177 / 177,
  30692. bottom: 12 / 189
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(6, "feet")
  30700. },
  30701. {
  30702. name: "Macro",
  30703. height: math.unit(200, "feet"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30710. {
  30711. front: {
  30712. height: math.unit(6, "feet"),
  30713. weight: math.unit(150, "lb"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/peri/front.svg",
  30717. extra: 2354 / 2233,
  30718. bottom: 49 / 2403
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Really Small",
  30725. height: math.unit(1, "nm")
  30726. },
  30727. {
  30728. name: "Micro",
  30729. height: math.unit(4, "inches")
  30730. },
  30731. {
  30732. name: "Normal",
  30733. height: math.unit(7, "inches"),
  30734. default: true
  30735. },
  30736. {
  30737. name: "Macro",
  30738. height: math.unit(400, "feet")
  30739. },
  30740. {
  30741. name: "Megamacro",
  30742. height: math.unit(100, "miles")
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30748. {
  30749. frontSlim: {
  30750. height: math.unit(7, "feet"),
  30751. name: "Front (Slim)",
  30752. image: {
  30753. source: "./media/characters/issilora/front-slim.svg",
  30754. extra: 529 / 449,
  30755. bottom: 53 / 582
  30756. }
  30757. },
  30758. sideSlim: {
  30759. height: math.unit(7, "feet"),
  30760. name: "Side (Slim)",
  30761. image: {
  30762. source: "./media/characters/issilora/side-slim.svg",
  30763. extra: 570 / 480,
  30764. bottom: 30 / 600
  30765. }
  30766. },
  30767. backSlim: {
  30768. height: math.unit(7, "feet"),
  30769. name: "Back (Slim)",
  30770. image: {
  30771. source: "./media/characters/issilora/back-slim.svg",
  30772. extra: 537 / 455,
  30773. bottom: 46 / 583
  30774. }
  30775. },
  30776. frontBuff: {
  30777. height: math.unit(7, "feet"),
  30778. name: "Front (Buff)",
  30779. image: {
  30780. source: "./media/characters/issilora/front-buff.svg",
  30781. extra: 2310 / 2035,
  30782. bottom: 335 / 2645
  30783. }
  30784. },
  30785. head: {
  30786. height: math.unit(1.94, "feet"),
  30787. name: "Head",
  30788. image: {
  30789. source: "./media/characters/issilora/head.svg"
  30790. }
  30791. },
  30792. },
  30793. [
  30794. {
  30795. name: "Minimum",
  30796. height: math.unit(7, "feet")
  30797. },
  30798. {
  30799. name: "Comfortable",
  30800. height: math.unit(17, "feet")
  30801. },
  30802. {
  30803. name: "Fun Size",
  30804. height: math.unit(47, "feet")
  30805. },
  30806. {
  30807. name: "Natural Macro",
  30808. height: math.unit(137, "feet"),
  30809. default: true
  30810. },
  30811. {
  30812. name: "Maximum Kaiju",
  30813. height: math.unit(397, "feet")
  30814. },
  30815. ]
  30816. ))
  30817. characterMakers.push(() => makeCharacter(
  30818. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30819. {
  30820. front: {
  30821. height: math.unit(50 + 9/12, "feet"),
  30822. weight: math.unit(32.8, "tons"),
  30823. name: "Front",
  30824. image: {
  30825. source: "./media/characters/irb'iiritaahn/front.svg",
  30826. extra: 1878/1826,
  30827. bottom: 326/2204
  30828. }
  30829. },
  30830. back: {
  30831. height: math.unit(50 + 9/12, "feet"),
  30832. weight: math.unit(32.8, "tons"),
  30833. name: "Back",
  30834. image: {
  30835. source: "./media/characters/irb'iiritaahn/back.svg",
  30836. extra: 2052/2018,
  30837. bottom: 152/2204
  30838. }
  30839. },
  30840. head: {
  30841. height: math.unit(12.86, "feet"),
  30842. name: "Head",
  30843. image: {
  30844. source: "./media/characters/irb'iiritaahn/head.svg"
  30845. }
  30846. },
  30847. maw: {
  30848. height: math.unit(9.66, "feet"),
  30849. name: "Maw",
  30850. image: {
  30851. source: "./media/characters/irb'iiritaahn/maw.svg"
  30852. }
  30853. },
  30854. frontDick: {
  30855. height: math.unit(8.78461, "feet"),
  30856. name: "Front Dick",
  30857. image: {
  30858. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30859. }
  30860. },
  30861. rearDick: {
  30862. height: math.unit(8.78461, "feet"),
  30863. name: "Rear Dick",
  30864. image: {
  30865. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30866. }
  30867. },
  30868. rearDickUnfolded: {
  30869. height: math.unit(8.78, "feet"),
  30870. name: "Rear Dick (Unfolded)",
  30871. image: {
  30872. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30873. }
  30874. },
  30875. wings: {
  30876. height: math.unit(43, "feet"),
  30877. name: "Wings",
  30878. image: {
  30879. source: "./media/characters/irb'iiritaahn/wings.svg"
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Macro",
  30886. height: math.unit(50 + 9/12, "feet"),
  30887. default: true
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30893. {
  30894. front: {
  30895. height: math.unit(205, "cm"),
  30896. weight: math.unit(102, "kg"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/irbisgreif/front.svg",
  30900. extra: 785/706,
  30901. bottom: 13/798
  30902. }
  30903. },
  30904. back: {
  30905. height: math.unit(205, "cm"),
  30906. weight: math.unit(102, "kg"),
  30907. name: "Back",
  30908. image: {
  30909. source: "./media/characters/irbisgreif/back.svg",
  30910. extra: 713/701,
  30911. bottom: 26/739
  30912. }
  30913. },
  30914. frontDressed: {
  30915. height: math.unit(216, "cm"),
  30916. weight: math.unit(102, "kg"),
  30917. name: "Front-dressed",
  30918. image: {
  30919. source: "./media/characters/irbisgreif/front-dressed.svg",
  30920. extra: 902/776,
  30921. bottom: 14/916
  30922. }
  30923. },
  30924. sideDressed: {
  30925. height: math.unit(195, "cm"),
  30926. weight: math.unit(102, "kg"),
  30927. name: "Side-dressed",
  30928. image: {
  30929. source: "./media/characters/irbisgreif/side-dressed.svg",
  30930. extra: 788/688,
  30931. bottom: 21/809
  30932. }
  30933. },
  30934. backDressed: {
  30935. height: math.unit(216, "cm"),
  30936. weight: math.unit(102, "kg"),
  30937. name: "Back-dressed",
  30938. image: {
  30939. source: "./media/characters/irbisgreif/back-dressed.svg",
  30940. extra: 901/783,
  30941. bottom: 10/911
  30942. }
  30943. },
  30944. dick: {
  30945. height: math.unit(0.49, "feet"),
  30946. name: "Dick",
  30947. image: {
  30948. source: "./media/characters/irbisgreif/dick.svg"
  30949. }
  30950. },
  30951. wingTop: {
  30952. height: math.unit(1.93 , "feet"),
  30953. name: "Wing-top",
  30954. image: {
  30955. source: "./media/characters/irbisgreif/wing-top.svg"
  30956. }
  30957. },
  30958. wingBottom: {
  30959. height: math.unit(1.93 , "feet"),
  30960. name: "Wing-bottom",
  30961. image: {
  30962. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(216, "cm"),
  30970. default: true
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30976. {
  30977. front: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/pride/front.svg",
  30983. extra: 1299/1230,
  30984. bottom: 18/1317
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(7, "feet")
  30992. },
  30993. {
  30994. name: "Mini-macro",
  30995. height: math.unit(11, "feet")
  30996. },
  30997. {
  30998. name: "Macro",
  30999. height: math.unit(15, "meters"),
  31000. default: true
  31001. },
  31002. {
  31003. name: "Macro+",
  31004. height: math.unit(40, "meters")
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31010. {
  31011. front: {
  31012. height: math.unit(4 + 2 / 12, "feet"),
  31013. weight: math.unit(95, "lb"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/vaelophis-nyx/front.svg",
  31017. extra: 2532/2330,
  31018. bottom: 0/2532
  31019. }
  31020. },
  31021. back: {
  31022. height: math.unit(4 + 2 / 12, "feet"),
  31023. weight: math.unit(95, "lb"),
  31024. name: "Back",
  31025. image: {
  31026. source: "./media/characters/vaelophis-nyx/back.svg",
  31027. extra: 2484/2361,
  31028. bottom: 0/2484
  31029. }
  31030. },
  31031. feralSide: {
  31032. height: math.unit(2 + 1/12, "feet"),
  31033. weight: math.unit(20, "lb"),
  31034. name: "Feral (Side)",
  31035. image: {
  31036. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31037. extra: 1721/1581,
  31038. bottom: 70/1791
  31039. }
  31040. },
  31041. feralLazing: {
  31042. height: math.unit(1.08, "feet"),
  31043. weight: math.unit(20, "lb"),
  31044. name: "Feral (Lazing)",
  31045. image: {
  31046. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31047. extra: 822/822,
  31048. bottom: 248/1070
  31049. }
  31050. },
  31051. ear: {
  31052. height: math.unit(0.416, "feet"),
  31053. name: "Ear",
  31054. image: {
  31055. source: "./media/characters/vaelophis-nyx/ear.svg"
  31056. }
  31057. },
  31058. eye: {
  31059. height: math.unit(0.0748, "feet"),
  31060. name: "Eye",
  31061. image: {
  31062. source: "./media/characters/vaelophis-nyx/eye.svg"
  31063. }
  31064. },
  31065. mouth: {
  31066. height: math.unit(0.378, "feet"),
  31067. name: "Mouth",
  31068. image: {
  31069. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31070. }
  31071. },
  31072. spade: {
  31073. height: math.unit(0.55, "feet"),
  31074. name: "Spade",
  31075. image: {
  31076. source: "./media/characters/vaelophis-nyx/spade.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Normal",
  31083. height: math.unit(4 + 2/12, "feet"),
  31084. default: true
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31090. {
  31091. front: {
  31092. height: math.unit(7, "feet"),
  31093. weight: math.unit(231, "lb"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/flux/front.svg",
  31097. extra: 919/871,
  31098. bottom: 0/919
  31099. }
  31100. },
  31101. back: {
  31102. height: math.unit(7, "feet"),
  31103. weight: math.unit(231, "lb"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/flux/back.svg",
  31107. extra: 1040/992,
  31108. bottom: 0/1040
  31109. }
  31110. },
  31111. frontDressed: {
  31112. height: math.unit(7, "feet"),
  31113. weight: math.unit(231, "lb"),
  31114. name: "Front (Dressed)",
  31115. image: {
  31116. source: "./media/characters/flux/front-dressed.svg",
  31117. extra: 919/871,
  31118. bottom: 0/919
  31119. }
  31120. },
  31121. feralSide: {
  31122. height: math.unit(5, "feet"),
  31123. weight: math.unit(150, "lb"),
  31124. name: "Feral (Side)",
  31125. image: {
  31126. source: "./media/characters/flux/feral-side.svg",
  31127. extra: 598/528,
  31128. bottom: 28/626
  31129. }
  31130. },
  31131. head: {
  31132. height: math.unit(1.585, "feet"),
  31133. name: "Head",
  31134. image: {
  31135. source: "./media/characters/flux/head.svg"
  31136. }
  31137. },
  31138. headSide: {
  31139. height: math.unit(1.74, "feet"),
  31140. name: "Head (Side)",
  31141. image: {
  31142. source: "./media/characters/flux/head-side.svg"
  31143. }
  31144. },
  31145. headSideFire: {
  31146. height: math.unit(1.76, "feet"),
  31147. name: "Head (Side, Fire)",
  31148. image: {
  31149. source: "./media/characters/flux/head-side-fire.svg"
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Normal",
  31156. height: math.unit(7, "feet"),
  31157. default: true
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(9, "feet"),
  31166. weight: math.unit(1012, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/ulfra-lupae/front.svg",
  31170. extra: 1083/1011,
  31171. bottom: 67/1150
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Micro",
  31178. height: math.unit(6, "inches")
  31179. },
  31180. {
  31181. name: "Socializing",
  31182. height: math.unit(6 + 5/12, "feet")
  31183. },
  31184. {
  31185. name: "Normal",
  31186. height: math.unit(9, "feet"),
  31187. default: true
  31188. },
  31189. {
  31190. name: "Macro",
  31191. height: math.unit(150, "feet")
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(5 + 2/12, "feet"),
  31200. weight: math.unit(120, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/timber/front.svg",
  31204. extra: 2814/2705,
  31205. bottom: 181/2995
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(5 + 2/12, "feet"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(5 + 7/12, "feet"),
  31222. weight: math.unit(220, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/nicki/front.svg",
  31226. extra: 453/419,
  31227. bottom: 7/460
  31228. }
  31229. },
  31230. frontAlt: {
  31231. height: math.unit(5 + 7/12, "feet"),
  31232. weight: math.unit(220, "lb"),
  31233. name: "Front-alt",
  31234. image: {
  31235. source: "./media/characters/nicki/front-alt.svg",
  31236. extra: 435/411,
  31237. bottom: 12/447
  31238. }
  31239. },
  31240. back: {
  31241. height: math.unit(5 + 7/12, "feet"),
  31242. weight: math.unit(220, "lb"),
  31243. name: "Back",
  31244. image: {
  31245. source: "./media/characters/nicki/back.svg",
  31246. extra: 440/413,
  31247. bottom: 19/459
  31248. }
  31249. },
  31250. taur: {
  31251. height: math.unit(7 + 6/12, "feet"),
  31252. weight: math.unit(700, "lb"),
  31253. name: "Taur",
  31254. image: {
  31255. source: "./media/characters/nicki/taur.svg",
  31256. extra: 975/773,
  31257. bottom: 0/975
  31258. }
  31259. },
  31260. frontNsfw: {
  31261. height: math.unit(5 + 7/12, "feet"),
  31262. weight: math.unit(220, "lb"),
  31263. name: "Front (NSFW)",
  31264. image: {
  31265. source: "./media/characters/nicki/front-nsfw.svg",
  31266. extra: 453/419,
  31267. bottom: 7/460
  31268. }
  31269. },
  31270. frontNsfwAlt: {
  31271. height: math.unit(5 + 7/12, "feet"),
  31272. weight: math.unit(220, "lb"),
  31273. name: "Front (Alt, NSFW)",
  31274. image: {
  31275. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31276. extra: 435/411,
  31277. bottom: 12/447
  31278. }
  31279. },
  31280. backNsfw: {
  31281. height: math.unit(5 + 7/12, "feet"),
  31282. weight: math.unit(220, "lb"),
  31283. name: "Back (NSFW)",
  31284. image: {
  31285. source: "./media/characters/nicki/back-nsfw.svg",
  31286. extra: 440/413,
  31287. bottom: 19/459
  31288. }
  31289. },
  31290. head: {
  31291. height: math.unit(2.1, "feet"),
  31292. name: "Head",
  31293. image: {
  31294. source: "./media/characters/nicki/head.svg"
  31295. }
  31296. },
  31297. paw: {
  31298. height: math.unit(1.88, "feet"),
  31299. name: "Paw",
  31300. image: {
  31301. source: "./media/characters/nicki/paw.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(5 + 7/12, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(7 + 10/12, "feet"),
  31318. weight: math.unit(3.5, "tons"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/lee/front.svg",
  31322. extra: 1773/1615,
  31323. bottom: 86/1859
  31324. }
  31325. },
  31326. hand: {
  31327. height: math.unit(1.78, "feet"),
  31328. name: "Hand",
  31329. image: {
  31330. source: "./media/characters/lee/hand.svg"
  31331. }
  31332. },
  31333. maw: {
  31334. height: math.unit(1.18, "feet"),
  31335. name: "Maw",
  31336. image: {
  31337. source: "./media/characters/lee/maw.svg"
  31338. }
  31339. },
  31340. },
  31341. [
  31342. {
  31343. name: "Normal",
  31344. height: math.unit(7 + 10/12, "feet"),
  31345. default: true
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31351. {
  31352. front: {
  31353. height: math.unit(9, "feet"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/guti/front.svg",
  31357. extra: 4551/4355,
  31358. bottom: 123/4674
  31359. }
  31360. },
  31361. tongue: {
  31362. height: math.unit(1, "feet"),
  31363. name: "Tongue",
  31364. image: {
  31365. source: "./media/characters/guti/tongue.svg"
  31366. }
  31367. },
  31368. paw: {
  31369. height: math.unit(1.18, "feet"),
  31370. name: "Paw",
  31371. image: {
  31372. source: "./media/characters/guti/paw.svg"
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(9, "feet"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31386. {
  31387. side: {
  31388. height: math.unit(5, "meters"),
  31389. name: "Side",
  31390. image: {
  31391. source: "./media/characters/vesper/side.svg",
  31392. extra: 1605/1518,
  31393. bottom: 0/1605
  31394. }
  31395. },
  31396. },
  31397. [
  31398. {
  31399. name: "Small",
  31400. height: math.unit(5, "meters")
  31401. },
  31402. {
  31403. name: "Sage",
  31404. height: math.unit(100, "meters"),
  31405. default: true
  31406. },
  31407. {
  31408. name: "Fun Size",
  31409. height: math.unit(600, "meters")
  31410. },
  31411. {
  31412. name: "Goddess",
  31413. height: math.unit(20000, "km")
  31414. },
  31415. {
  31416. name: "Maximum",
  31417. height: math.unit(5, "galaxies")
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(6 + 3/12, "feet"),
  31426. weight: math.unit(190, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/gawain/front.svg",
  31430. extra: 2222/2139,
  31431. bottom: 90/2312
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(6 + 3/12, "feet"),
  31436. weight: math.unit(190, "lb"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/gawain/back.svg",
  31440. extra: 2199/2111,
  31441. bottom: 73/2272
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(6 + 3/12, "feet"),
  31449. default: true
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31455. {
  31456. side: {
  31457. height: math.unit(3.5, "meters"),
  31458. weight: math.unit(16000, "lb"),
  31459. name: "Side",
  31460. image: {
  31461. source: "./media/characters/dascalti/side.svg",
  31462. extra: 392/273,
  31463. bottom: 47/439
  31464. }
  31465. },
  31466. breath: {
  31467. height: math.unit(7.4, "feet"),
  31468. name: "Breath",
  31469. image: {
  31470. source: "./media/characters/dascalti/breath.svg"
  31471. }
  31472. },
  31473. fed: {
  31474. height: math.unit(3.6, "meters"),
  31475. weight: math.unit(16000, "lb"),
  31476. name: "Fed",
  31477. image: {
  31478. source: "./media/characters/dascalti/fed.svg",
  31479. extra: 1419/820,
  31480. bottom: 95/1514
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(3.5, "meters"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(3 + 5/12, "feet"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/mauve/front.svg",
  31500. extra: 1126/1033,
  31501. bottom: 65/1191
  31502. }
  31503. },
  31504. side: {
  31505. height: math.unit(3 + 5/12, "feet"),
  31506. name: "Side",
  31507. image: {
  31508. source: "./media/characters/mauve/side.svg",
  31509. extra: 1089/1001,
  31510. bottom: 29/1118
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(3 + 5/12, "feet"),
  31515. name: "Back",
  31516. image: {
  31517. source: "./media/characters/mauve/back.svg",
  31518. extra: 1173/1053,
  31519. bottom: 109/1282
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(3 + 5/12, "feet"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(6 + 3/12, "feet"),
  31536. weight: math.unit(430, "lb"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/carlos/front.svg",
  31540. extra: 1964/1913,
  31541. bottom: 70/2034
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Normal",
  31548. height: math.unit(6 + 3/12, "feet"),
  31549. default: true
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31555. {
  31556. back: {
  31557. height: math.unit(5 + 10/12, "feet"),
  31558. weight: math.unit(200, "lb"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/jax/back.svg",
  31562. extra: 764/739,
  31563. bottom: 25/789
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(5 + 10/12, "feet"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(8, "feet"),
  31580. weight: math.unit(250, "lb"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/eikthynir/front.svg",
  31584. extra: 1332/1166,
  31585. bottom: 82/1414
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(8, "feet"),
  31590. weight: math.unit(250, "lb"),
  31591. name: "Back",
  31592. image: {
  31593. source: "./media/characters/eikthynir/back.svg",
  31594. extra: 1342/1190,
  31595. bottom: 19/1361
  31596. }
  31597. },
  31598. dick: {
  31599. height: math.unit(2.35, "feet"),
  31600. name: "Dick",
  31601. image: {
  31602. source: "./media/characters/eikthynir/dick.svg"
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(8, "feet"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(99, "meters"),
  31619. weight: math.unit(13000, "tons"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/zlmos/front.svg",
  31623. extra: 2202/1992,
  31624. bottom: 315/2517
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Macro",
  31631. height: math.unit(99, "meters"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(6 + 5/12, "feet"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/purri/front.svg",
  31644. extra: 1698/1610,
  31645. bottom: 32/1730
  31646. }
  31647. },
  31648. frontAlt: {
  31649. height: math.unit(6 + 5/12, "feet"),
  31650. name: "Front (Alt)",
  31651. image: {
  31652. source: "./media/characters/purri/front-alt.svg",
  31653. extra: 450/420,
  31654. bottom: 26/476
  31655. }
  31656. },
  31657. boots: {
  31658. height: math.unit(5.5, "feet"),
  31659. name: "Boots",
  31660. image: {
  31661. source: "./media/characters/purri/boots.svg",
  31662. extra: 905/853,
  31663. bottom: 18/923
  31664. }
  31665. },
  31666. lying: {
  31667. height: math.unit(2, "feet"),
  31668. name: "Lying",
  31669. image: {
  31670. source: "./media/characters/purri/lying.svg",
  31671. extra: 940/843,
  31672. bottom: 146/1086
  31673. }
  31674. },
  31675. devious: {
  31676. height: math.unit(1.77, "feet"),
  31677. name: "Devious",
  31678. image: {
  31679. source: "./media/characters/purri/devious.svg",
  31680. extra: 1440/1155,
  31681. bottom: 147/1587
  31682. }
  31683. },
  31684. bean: {
  31685. height: math.unit(1.94, "feet"),
  31686. name: "Bean",
  31687. image: {
  31688. source: "./media/characters/purri/bean.svg"
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Micro",
  31695. height: math.unit(1, "mm")
  31696. },
  31697. {
  31698. name: "Normal",
  31699. height: math.unit(6 + 5/12, "feet"),
  31700. default: true
  31701. },
  31702. {
  31703. name: "Macro :3c",
  31704. height: math.unit(2, "miles")
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31710. {
  31711. front: {
  31712. height: math.unit(6 + 2/12, "feet"),
  31713. weight: math.unit(250, "lb"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/moonlight/front.svg",
  31717. extra: 1044/908,
  31718. bottom: 56/1100
  31719. }
  31720. },
  31721. feral: {
  31722. height: math.unit(3 + 1/12, "feet"),
  31723. weight: math.unit(50, "kg"),
  31724. name: "Feral",
  31725. image: {
  31726. source: "./media/characters/moonlight/feral.svg",
  31727. extra: 3705/2791,
  31728. bottom: 145/3850
  31729. }
  31730. },
  31731. paw: {
  31732. height: math.unit(1, "feet"),
  31733. name: "Paw",
  31734. image: {
  31735. source: "./media/characters/moonlight/paw.svg"
  31736. }
  31737. },
  31738. paws: {
  31739. height: math.unit(0.98, "feet"),
  31740. name: "Paws",
  31741. image: {
  31742. source: "./media/characters/moonlight/paws.svg",
  31743. extra: 939/939,
  31744. bottom: 50/989
  31745. }
  31746. },
  31747. mouth: {
  31748. height: math.unit(0.48, "feet"),
  31749. name: "Mouth",
  31750. image: {
  31751. source: "./media/characters/moonlight/mouth.svg"
  31752. }
  31753. },
  31754. dick: {
  31755. height: math.unit(1.46, "feet"),
  31756. name: "Dick",
  31757. image: {
  31758. source: "./media/characters/moonlight/dick.svg"
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(6 + 2/12, "feet"),
  31766. default: true
  31767. },
  31768. {
  31769. name: "Macro",
  31770. height: math.unit(300, "feet")
  31771. },
  31772. {
  31773. name: "Macro+",
  31774. height: math.unit(1, "mile")
  31775. },
  31776. {
  31777. name: "Mt. Moon",
  31778. height: math.unit(5, "miles")
  31779. },
  31780. {
  31781. name: "Megamacro",
  31782. height: math.unit(15, "miles")
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31788. {
  31789. back: {
  31790. height: math.unit(6, "feet"),
  31791. weight: math.unit(150, "lb"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/sylen/back.svg",
  31795. extra: 1335/1273,
  31796. bottom: 107/1442
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(5 + 5/12, "feet")
  31804. },
  31805. {
  31806. name: "Megamacro",
  31807. height: math.unit(3, "miles"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(6, "feet"),
  31817. weight: math.unit(190, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/huttser/front.svg",
  31821. extra: 1152/1058,
  31822. bottom: 23/1175
  31823. }
  31824. },
  31825. side: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(190, "lb"),
  31828. name: "Side",
  31829. image: {
  31830. source: "./media/characters/huttser/side.svg",
  31831. extra: 1174/1065,
  31832. bottom: 18/1192
  31833. }
  31834. },
  31835. back: {
  31836. height: math.unit(6, "feet"),
  31837. weight: math.unit(190, "lb"),
  31838. name: "Back",
  31839. image: {
  31840. source: "./media/characters/huttser/back.svg",
  31841. extra: 1158/1056,
  31842. bottom: 12/1170
  31843. }
  31844. },
  31845. },
  31846. [
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31851. {
  31852. side: {
  31853. height: math.unit(12 + 9/12, "feet"),
  31854. weight: math.unit(15000, "lb"),
  31855. name: "Side",
  31856. image: {
  31857. source: "./media/characters/faan/side.svg",
  31858. extra: 2747/2697,
  31859. bottom: 0/2747
  31860. }
  31861. },
  31862. front: {
  31863. height: math.unit(12 + 9/12, "feet"),
  31864. weight: math.unit(15000, "lb"),
  31865. name: "Front",
  31866. image: {
  31867. source: "./media/characters/faan/front.svg",
  31868. extra: 607/571,
  31869. bottom: 24/631
  31870. }
  31871. },
  31872. head: {
  31873. height: math.unit(2.85, "feet"),
  31874. name: "Head",
  31875. image: {
  31876. source: "./media/characters/faan/head.svg"
  31877. }
  31878. },
  31879. headAlt: {
  31880. height: math.unit(3.13, "feet"),
  31881. name: "Head-alt",
  31882. image: {
  31883. source: "./media/characters/faan/head-alt.svg"
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(12 + 9/12, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(6, "feet"),
  31900. weight: math.unit(300, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/tanio/front.svg",
  31904. extra: 711/673,
  31905. bottom: 25/736
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(6, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(3, "inches"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/noboru/front.svg",
  31925. extra: 1039/932,
  31926. bottom: 18/1057
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Micro",
  31933. height: math.unit(3, "inches"),
  31934. default: true
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31940. {
  31941. front: {
  31942. height: math.unit(1.85, "meters"),
  31943. weight: math.unit(80, "kg"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/daniel-barrett/front.svg",
  31947. extra: 355/337,
  31948. bottom: 9/364
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Pico",
  31955. height: math.unit(0.0433, "mm")
  31956. },
  31957. {
  31958. name: "Nano",
  31959. height: math.unit(1.5, "mm")
  31960. },
  31961. {
  31962. name: "Micro",
  31963. height: math.unit(5.3, "cm"),
  31964. default: true
  31965. },
  31966. {
  31967. name: "Normal",
  31968. height: math.unit(1.85, "meters")
  31969. },
  31970. {
  31971. name: "Macro",
  31972. height: math.unit(64.7, "meters")
  31973. },
  31974. {
  31975. name: "Megamacro",
  31976. height: math.unit(2.26, "km")
  31977. },
  31978. {
  31979. name: "Gigamacro",
  31980. height: math.unit(79, "km")
  31981. },
  31982. {
  31983. name: "Teramacro",
  31984. height: math.unit(2765, "km")
  31985. },
  31986. {
  31987. name: "Petamacro",
  31988. height: math.unit(96678, "km")
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31994. {
  31995. front: {
  31996. height: math.unit(30, "meters"),
  31997. weight: math.unit(400, "tons"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/zeel/front.svg",
  32001. extra: 2599/2599,
  32002. bottom: 226/2825
  32003. }
  32004. },
  32005. },
  32006. [
  32007. {
  32008. name: "Macro",
  32009. height: math.unit(30, "meters"),
  32010. default: true
  32011. },
  32012. ]
  32013. ))
  32014. characterMakers.push(() => makeCharacter(
  32015. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32016. {
  32017. front: {
  32018. height: math.unit(6 + 7/12, "feet"),
  32019. weight: math.unit(210, "lb"),
  32020. name: "Front",
  32021. image: {
  32022. source: "./media/characters/tarn/front.svg",
  32023. extra: 3517/3220,
  32024. bottom: 91/3608
  32025. }
  32026. },
  32027. back: {
  32028. height: math.unit(6 + 7/12, "feet"),
  32029. weight: math.unit(210, "lb"),
  32030. name: "Back",
  32031. image: {
  32032. source: "./media/characters/tarn/back.svg",
  32033. extra: 3566/3241,
  32034. bottom: 34/3600
  32035. }
  32036. },
  32037. dick: {
  32038. height: math.unit(1.65, "feet"),
  32039. name: "Dick",
  32040. image: {
  32041. source: "./media/characters/tarn/dick.svg"
  32042. }
  32043. },
  32044. paw: {
  32045. height: math.unit(1.80, "feet"),
  32046. name: "Paw",
  32047. image: {
  32048. source: "./media/characters/tarn/paw.svg"
  32049. }
  32050. },
  32051. tongue: {
  32052. height: math.unit(0.97, "feet"),
  32053. name: "Tongue",
  32054. image: {
  32055. source: "./media/characters/tarn/tongue.svg"
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Micro",
  32062. height: math.unit(4, "inches")
  32063. },
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(6 + 7/12, "feet"),
  32067. default: true
  32068. },
  32069. {
  32070. name: "Macro",
  32071. height: math.unit(300, "feet")
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(5 + 7/12, "feet"),
  32080. weight: math.unit(80, "kg"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32084. extra: 3023/2865,
  32085. bottom: 33/3056
  32086. }
  32087. },
  32088. back: {
  32089. height: math.unit(5 + 7/12, "feet"),
  32090. weight: math.unit(80, "kg"),
  32091. name: "Back",
  32092. image: {
  32093. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32094. extra: 3020/2886,
  32095. bottom: 30/3050
  32096. }
  32097. },
  32098. dick: {
  32099. height: math.unit(0.98, "feet"),
  32100. name: "Dick",
  32101. image: {
  32102. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32103. }
  32104. },
  32105. anatomy: {
  32106. height: math.unit(2.86, "feet"),
  32107. name: "Anatomy",
  32108. image: {
  32109. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "Really Small",
  32116. height: math.unit(2, "inches")
  32117. },
  32118. {
  32119. name: "Micro",
  32120. height: math.unit(5.583, "inches")
  32121. },
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(5 + 7/12, "feet"),
  32125. default: true
  32126. },
  32127. {
  32128. name: "Macro",
  32129. height: math.unit(67, "feet")
  32130. },
  32131. {
  32132. name: "Megamacro",
  32133. height: math.unit(134, "feet")
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32139. {
  32140. front: {
  32141. height: math.unit(9, "feet"),
  32142. weight: math.unit(120, "lb"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/sally/front.svg",
  32146. extra: 1506/1349,
  32147. bottom: 66/1572
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(9, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32161. {
  32162. front: {
  32163. height: math.unit(8, "feet"),
  32164. weight: math.unit(900, "lb"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/owen/front.svg",
  32168. extra: 1761/1657,
  32169. bottom: 74/1835
  32170. }
  32171. },
  32172. side: {
  32173. height: math.unit(8, "feet"),
  32174. weight: math.unit(900, "lb"),
  32175. name: "Side",
  32176. image: {
  32177. source: "./media/characters/owen/side.svg",
  32178. extra: 1797/1734,
  32179. bottom: 30/1827
  32180. }
  32181. },
  32182. back: {
  32183. height: math.unit(8, "feet"),
  32184. weight: math.unit(900, "lb"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/owen/back.svg",
  32188. extra: 1796/1706,
  32189. bottom: 59/1855
  32190. }
  32191. },
  32192. maw: {
  32193. height: math.unit(1.76, "feet"),
  32194. name: "Maw",
  32195. image: {
  32196. source: "./media/characters/owen/maw.svg"
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(8, "feet"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32210. {
  32211. front: {
  32212. height: math.unit(4, "feet"),
  32213. weight: math.unit(400, "lb"),
  32214. name: "Front",
  32215. image: {
  32216. source: "./media/characters/ryth/front.svg",
  32217. extra: 1920/1748,
  32218. bottom: 42/1962
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(4, "feet"),
  32223. weight: math.unit(400, "lb"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/ryth/back.svg",
  32227. extra: 1897/1690,
  32228. bottom: 89/1986
  32229. }
  32230. },
  32231. mouth: {
  32232. height: math.unit(1.39, "feet"),
  32233. name: "Mouth",
  32234. image: {
  32235. source: "./media/characters/ryth/mouth.svg"
  32236. }
  32237. },
  32238. tailmaw: {
  32239. height: math.unit(1.23, "feet"),
  32240. name: "Tailmaw",
  32241. image: {
  32242. source: "./media/characters/ryth/tailmaw.svg"
  32243. }
  32244. },
  32245. goia: {
  32246. height: math.unit(4, "meters"),
  32247. weight: math.unit(10800, "lb"),
  32248. name: "Goia",
  32249. image: {
  32250. source: "./media/characters/ryth/goia.svg",
  32251. extra: 745/640,
  32252. bottom: 107/852
  32253. }
  32254. },
  32255. goiaFront: {
  32256. height: math.unit(4, "meters"),
  32257. weight: math.unit(10800, "lb"),
  32258. name: "Goia (Front)",
  32259. image: {
  32260. source: "./media/characters/ryth/goia-front.svg",
  32261. extra: 750/586,
  32262. bottom: 114/864
  32263. }
  32264. },
  32265. goiaMaw: {
  32266. height: math.unit(5.55, "feet"),
  32267. name: "Goia Maw",
  32268. image: {
  32269. source: "./media/characters/ryth/goia-maw.svg"
  32270. }
  32271. },
  32272. goiaForepaw: {
  32273. height: math.unit(3.5, "feet"),
  32274. name: "Goia Forepaw",
  32275. image: {
  32276. source: "./media/characters/ryth/goia-forepaw.svg"
  32277. }
  32278. },
  32279. goiaHindpaw: {
  32280. height: math.unit(5.55, "feet"),
  32281. name: "Goia Hindpaw",
  32282. image: {
  32283. source: "./media/characters/ryth/goia-hindpaw.svg"
  32284. }
  32285. },
  32286. },
  32287. [
  32288. {
  32289. name: "Normal",
  32290. height: math.unit(4, "feet"),
  32291. default: true
  32292. },
  32293. ]
  32294. ))
  32295. characterMakers.push(() => makeCharacter(
  32296. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32297. {
  32298. front: {
  32299. height: math.unit(7, "feet"),
  32300. weight: math.unit(180, "lb"),
  32301. name: "Front",
  32302. image: {
  32303. source: "./media/characters/necrolance/front.svg",
  32304. extra: 1062/947,
  32305. bottom: 41/1103
  32306. }
  32307. },
  32308. back: {
  32309. height: math.unit(7, "feet"),
  32310. weight: math.unit(180, "lb"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/necrolance/back.svg",
  32314. extra: 1045/984,
  32315. bottom: 14/1059
  32316. }
  32317. },
  32318. wing: {
  32319. height: math.unit(2.67, "feet"),
  32320. name: "Wing",
  32321. image: {
  32322. source: "./media/characters/necrolance/wing.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(7, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32336. {
  32337. front: {
  32338. height: math.unit(76, "meters"),
  32339. weight: math.unit(30000, "tons"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/tyler/front.svg",
  32343. extra: 1640/1640,
  32344. bottom: 114/1754
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Macro",
  32351. height: math.unit(76, "meters"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32358. {
  32359. front: {
  32360. height: math.unit(4 + 11/12, "feet"),
  32361. weight: math.unit(132, "lb"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/icey/front.svg",
  32365. extra: 2750/2550,
  32366. bottom: 33/2783
  32367. }
  32368. },
  32369. back: {
  32370. height: math.unit(4 + 11/12, "feet"),
  32371. weight: math.unit(132, "lb"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/icey/back.svg",
  32375. extra: 2624/2481,
  32376. bottom: 35/2659
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(4 + 11/12, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(100, "feet"),
  32393. weight: math.unit(0, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/smile/front.svg",
  32397. extra: 2983/2912,
  32398. bottom: 162/3145
  32399. }
  32400. },
  32401. back: {
  32402. height: math.unit(100, "feet"),
  32403. weight: math.unit(0, "lb"),
  32404. name: "Back",
  32405. image: {
  32406. source: "./media/characters/smile/back.svg",
  32407. extra: 3143/3031,
  32408. bottom: 91/3234
  32409. }
  32410. },
  32411. head: {
  32412. height: math.unit(26.3, "feet"),
  32413. weight: math.unit(0, "lb"),
  32414. name: "Head",
  32415. image: {
  32416. source: "./media/characters/smile/head.svg"
  32417. }
  32418. },
  32419. collar: {
  32420. height: math.unit(5.3, "feet"),
  32421. weight: math.unit(0, "lb"),
  32422. name: "Collar",
  32423. image: {
  32424. source: "./media/characters/smile/collar.svg"
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(100, "feet"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32438. {
  32439. dragon: {
  32440. height: math.unit(26, "feet"),
  32441. weight: math.unit(36, "tons"),
  32442. name: "Dragon",
  32443. image: {
  32444. source: "./media/characters/arimphae/dragon.svg",
  32445. extra: 1574/983,
  32446. bottom: 357/1931
  32447. }
  32448. },
  32449. drake: {
  32450. height: math.unit(9, "feet"),
  32451. weight: math.unit(1.5, "tons"),
  32452. name: "Drake",
  32453. image: {
  32454. source: "./media/characters/arimphae/drake.svg",
  32455. extra: 1120/925,
  32456. bottom: 435/1555
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Small",
  32463. height: math.unit(26*5/9, "feet")
  32464. },
  32465. {
  32466. name: "Normal",
  32467. height: math.unit(26, "feet"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(8 + 9/12, "feet"),
  32477. name: "Front",
  32478. image: {
  32479. source: "./media/characters/xander/front.svg",
  32480. extra: 1237/974,
  32481. bottom: 94/1331
  32482. }
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(8 + 9/12, "feet"),
  32489. default: true
  32490. },
  32491. {
  32492. name: "Gaze Grabber",
  32493. height: math.unit(13 + 8/12, "feet")
  32494. },
  32495. {
  32496. name: "Jaw Dropper",
  32497. height: math.unit(27, "feet")
  32498. },
  32499. {
  32500. name: "Show Stopper",
  32501. height: math.unit(136, "feet")
  32502. },
  32503. {
  32504. name: "Superstar",
  32505. height: math.unit(1.9e6, "miles")
  32506. },
  32507. ]
  32508. ))
  32509. characterMakers.push(() => makeCharacter(
  32510. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32511. {
  32512. side: {
  32513. height: math.unit(2100, "feet"),
  32514. name: "Side",
  32515. image: {
  32516. source: "./media/characters/osiris/side.svg",
  32517. extra: 1105/939,
  32518. bottom: 167/1272
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(2100, "feet"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6 + 8/12, "feet"),
  32535. weight: math.unit(225, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/rhys-londe/front.svg",
  32539. extra: 2258/2141,
  32540. bottom: 188/2446
  32541. }
  32542. },
  32543. back: {
  32544. height: math.unit(6 + 8/12, "feet"),
  32545. weight: math.unit(225, "lb"),
  32546. name: "Back",
  32547. image: {
  32548. source: "./media/characters/rhys-londe/back.svg",
  32549. extra: 2237/2137,
  32550. bottom: 63/2300
  32551. }
  32552. },
  32553. frontNsfw: {
  32554. height: math.unit(6 + 8/12, "feet"),
  32555. weight: math.unit(225, "lb"),
  32556. name: "Front (NSFW)",
  32557. image: {
  32558. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32559. extra: 2258/2141,
  32560. bottom: 188/2446
  32561. }
  32562. },
  32563. backNsfw: {
  32564. height: math.unit(6 + 8/12, "feet"),
  32565. weight: math.unit(225, "lb"),
  32566. name: "Back (NSFW)",
  32567. image: {
  32568. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32569. extra: 2237/2137,
  32570. bottom: 63/2300
  32571. }
  32572. },
  32573. dick: {
  32574. height: math.unit(30, "inches"),
  32575. name: "Dick",
  32576. image: {
  32577. source: "./media/characters/rhys-londe/dick.svg"
  32578. }
  32579. },
  32580. maw: {
  32581. height: math.unit(1.6, "feet"),
  32582. name: "Maw",
  32583. image: {
  32584. source: "./media/characters/rhys-londe/maw.svg"
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(6 + 8/12, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32598. {
  32599. front: {
  32600. height: math.unit(3 + 10/12, "feet"),
  32601. weight: math.unit(90, "lb"),
  32602. name: "Front",
  32603. image: {
  32604. source: "./media/characters/taivas-ensim/front.svg",
  32605. extra: 1327/1216,
  32606. bottom: 96/1423
  32607. }
  32608. },
  32609. back: {
  32610. height: math.unit(3 + 10/12, "feet"),
  32611. weight: math.unit(90, "lb"),
  32612. name: "Back",
  32613. image: {
  32614. source: "./media/characters/taivas-ensim/back.svg",
  32615. extra: 1355/1247,
  32616. bottom: 11/1366
  32617. }
  32618. },
  32619. frontNsfw: {
  32620. height: math.unit(3 + 10/12, "feet"),
  32621. weight: math.unit(90, "lb"),
  32622. name: "Front (NSFW)",
  32623. image: {
  32624. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32625. extra: 1327/1216,
  32626. bottom: 96/1423
  32627. }
  32628. },
  32629. backNsfw: {
  32630. height: math.unit(3 + 10/12, "feet"),
  32631. weight: math.unit(90, "lb"),
  32632. name: "Back (NSFW)",
  32633. image: {
  32634. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32635. extra: 1355/1247,
  32636. bottom: 11/1366
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(3 + 10/12, "feet"),
  32644. default: true
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32650. {
  32651. front: {
  32652. height: math.unit(9 + 6/12, "feet"),
  32653. weight: math.unit(940, "lb"),
  32654. name: "Front",
  32655. image: {
  32656. source: "./media/characters/byliss/front.svg",
  32657. extra: 1327/1290,
  32658. bottom: 82/1409
  32659. }
  32660. },
  32661. back: {
  32662. height: math.unit(9 + 6/12, "feet"),
  32663. weight: math.unit(940, "lb"),
  32664. name: "Back",
  32665. image: {
  32666. source: "./media/characters/byliss/back.svg",
  32667. extra: 1376/1349,
  32668. bottom: 9/1385
  32669. }
  32670. },
  32671. frontNsfw: {
  32672. height: math.unit(9 + 6/12, "feet"),
  32673. weight: math.unit(940, "lb"),
  32674. name: "Front (NSFW)",
  32675. image: {
  32676. source: "./media/characters/byliss/front-nsfw.svg",
  32677. extra: 1327/1290,
  32678. bottom: 82/1409
  32679. }
  32680. },
  32681. backNsfw: {
  32682. height: math.unit(9 + 6/12, "feet"),
  32683. weight: math.unit(940, "lb"),
  32684. name: "Back (NSFW)",
  32685. image: {
  32686. source: "./media/characters/byliss/back-nsfw.svg",
  32687. extra: 1376/1349,
  32688. bottom: 9/1385
  32689. }
  32690. },
  32691. },
  32692. [
  32693. {
  32694. name: "Normal",
  32695. height: math.unit(9 + 6/12, "feet"),
  32696. default: true
  32697. },
  32698. ]
  32699. ))
  32700. characterMakers.push(() => makeCharacter(
  32701. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32702. {
  32703. front: {
  32704. height: math.unit(5 + 2/12, "feet"),
  32705. weight: math.unit(200, "lb"),
  32706. name: "Front",
  32707. image: {
  32708. source: "./media/characters/noraly/front.svg",
  32709. extra: 4985/4773,
  32710. bottom: 150/5135
  32711. }
  32712. },
  32713. full: {
  32714. height: math.unit(5 + 2/12, "feet"),
  32715. weight: math.unit(164, "lb"),
  32716. name: "Full",
  32717. image: {
  32718. source: "./media/characters/noraly/full.svg",
  32719. extra: 1114/1059,
  32720. bottom: 35/1149
  32721. }
  32722. },
  32723. fuller: {
  32724. height: math.unit(5 + 2/12, "feet"),
  32725. weight: math.unit(230, "lb"),
  32726. name: "Fuller",
  32727. image: {
  32728. source: "./media/characters/noraly/fuller.svg",
  32729. extra: 1114/1059,
  32730. bottom: 35/1149
  32731. }
  32732. },
  32733. fullest: {
  32734. height: math.unit(5 + 2/12, "feet"),
  32735. weight: math.unit(300, "lb"),
  32736. name: "Fullest",
  32737. image: {
  32738. source: "./media/characters/noraly/fullest.svg",
  32739. extra: 1114/1059,
  32740. bottom: 35/1149
  32741. }
  32742. },
  32743. },
  32744. [
  32745. {
  32746. name: "Normal",
  32747. height: math.unit(5 + 2/12, "feet"),
  32748. default: true
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32754. {
  32755. front: {
  32756. height: math.unit(5 + 2/12, "feet"),
  32757. weight: math.unit(210, "lb"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/pera/front.svg",
  32761. extra: 1560/1531,
  32762. bottom: 165/1725
  32763. }
  32764. },
  32765. back: {
  32766. height: math.unit(5 + 2/12, "feet"),
  32767. weight: math.unit(210, "lb"),
  32768. name: "Back",
  32769. image: {
  32770. source: "./media/characters/pera/back.svg",
  32771. extra: 1523/1493,
  32772. bottom: 152/1675
  32773. }
  32774. },
  32775. dick: {
  32776. height: math.unit(2.4, "feet"),
  32777. name: "Dick",
  32778. image: {
  32779. source: "./media/characters/pera/dick.svg"
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(5 + 2/12, "feet"),
  32787. default: true
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32793. {
  32794. front: {
  32795. height: math.unit(12, "feet"),
  32796. weight: math.unit(3200, "lb"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/julian/front.svg",
  32800. extra: 2962/2701,
  32801. bottom: 184/3146
  32802. }
  32803. },
  32804. maw: {
  32805. height: math.unit(5.35, "feet"),
  32806. name: "Maw",
  32807. image: {
  32808. source: "./media/characters/julian/maw.svg"
  32809. }
  32810. },
  32811. paw: {
  32812. height: math.unit(3.07, "feet"),
  32813. name: "Paw",
  32814. image: {
  32815. source: "./media/characters/julian/paw.svg"
  32816. }
  32817. },
  32818. },
  32819. [
  32820. {
  32821. name: "Default",
  32822. height: math.unit(12, "feet"),
  32823. default: true
  32824. },
  32825. {
  32826. name: "Big",
  32827. height: math.unit(50, "feet")
  32828. },
  32829. {
  32830. name: "Really Big",
  32831. height: math.unit(1, "mile")
  32832. },
  32833. {
  32834. name: "Extremely Big",
  32835. height: math.unit(100, "miles")
  32836. },
  32837. {
  32838. name: "Planet Hugger",
  32839. height: math.unit(200, "megameters")
  32840. },
  32841. {
  32842. name: "Unreasonably Big",
  32843. height: math.unit(1e300, "meters")
  32844. },
  32845. ]
  32846. ))
  32847. characterMakers.push(() => makeCharacter(
  32848. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32849. {
  32850. solgooleo: {
  32851. height: math.unit(4, "meters"),
  32852. weight: math.unit(6000*1.5, "kg"),
  32853. volume: math.unit(6000, "liters"),
  32854. name: "Solgooleo",
  32855. image: {
  32856. source: "./media/characters/pi/solgooleo.svg",
  32857. extra: 388/331,
  32858. bottom: 29/417
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(4, "meters"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(8, "feet"),
  32875. weight: math.unit(4, "tons"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/shaun/front.svg",
  32879. extra: 503/495,
  32880. bottom: 20/523
  32881. }
  32882. },
  32883. back: {
  32884. height: math.unit(8, "feet"),
  32885. weight: math.unit(4, "tons"),
  32886. name: "Back",
  32887. image: {
  32888. source: "./media/characters/shaun/back.svg",
  32889. extra: 487/480,
  32890. bottom: 20/507
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Lorg",
  32897. height: math.unit(8, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32904. {
  32905. front: {
  32906. height: math.unit(7, "feet"),
  32907. name: "Front",
  32908. image: {
  32909. source: "./media/characters/sini/front.svg",
  32910. extra: 726/678,
  32911. bottom: 35/761
  32912. }
  32913. },
  32914. back: {
  32915. height: math.unit(7, "feet"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/sini/back.svg",
  32919. extra: 743/701,
  32920. bottom: 12/755
  32921. }
  32922. },
  32923. mawAnthro: {
  32924. height: math.unit(2.14, "feet"),
  32925. name: "Maw (Anthro)",
  32926. image: {
  32927. source: "./media/characters/sini/maw-anthro.svg"
  32928. }
  32929. },
  32930. dick: {
  32931. height: math.unit(1.45, "feet"),
  32932. name: "Dick (Anthro)",
  32933. image: {
  32934. source: "./media/characters/sini/dick-anthro.svg"
  32935. }
  32936. },
  32937. feral: {
  32938. height: math.unit(16, "feet"),
  32939. name: "Feral",
  32940. image: {
  32941. source: "./media/characters/sini/feral.svg",
  32942. extra: 814/605,
  32943. bottom: 11/825
  32944. }
  32945. },
  32946. mawFeral: {
  32947. height: math.unit(5.66, "feet"),
  32948. name: "Maw-feral",
  32949. image: {
  32950. source: "./media/characters/sini/maw-feral.svg"
  32951. }
  32952. },
  32953. footFeral: {
  32954. height: math.unit(5.17, "feet"),
  32955. name: "Foot-feral",
  32956. image: {
  32957. source: "./media/characters/sini/foot-feral.svg"
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(7, "feet"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32971. {
  32972. side: {
  32973. height: math.unit(13, "meters"),
  32974. weight: math.unit(9072, "kg"),
  32975. name: "Side",
  32976. image: {
  32977. source: "./media/characters/raylldo/side.svg",
  32978. extra: 403/344,
  32979. bottom: 42/445
  32980. }
  32981. },
  32982. leaping: {
  32983. height: math.unit(12.3, "meters"),
  32984. weight: math.unit(9072, "kg"),
  32985. name: "Leaping",
  32986. image: {
  32987. source: "./media/characters/raylldo/leaping.svg",
  32988. extra: 470/249,
  32989. bottom: 13/483
  32990. }
  32991. },
  32992. flying: {
  32993. height: math.unit(18, "meters"),
  32994. weight: math.unit(9072, "kg"),
  32995. name: "Flying",
  32996. image: {
  32997. source: "./media/characters/raylldo/flying.svg"
  32998. }
  32999. },
  33000. head: {
  33001. height: math.unit(5.85, "meters"),
  33002. name: "Head",
  33003. image: {
  33004. source: "./media/characters/raylldo/head.svg"
  33005. }
  33006. },
  33007. maw: {
  33008. height: math.unit(5.32, "meters"),
  33009. name: "Maw",
  33010. image: {
  33011. source: "./media/characters/raylldo/maw.svg"
  33012. }
  33013. },
  33014. eye: {
  33015. height: math.unit(0.54, "meters"),
  33016. name: "Eye",
  33017. image: {
  33018. source: "./media/characters/raylldo/eye.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(13, "meters"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33032. {
  33033. anthroFront: {
  33034. height: math.unit(9, "feet"),
  33035. weight: math.unit(600, "lb"),
  33036. name: "Anthro (Front)",
  33037. image: {
  33038. source: "./media/characters/glint/anthro-front.svg",
  33039. extra: 1097/1018,
  33040. bottom: 28/1125
  33041. }
  33042. },
  33043. anthroBack: {
  33044. height: math.unit(9, "feet"),
  33045. weight: math.unit(600, "lb"),
  33046. name: "Anthro (Back)",
  33047. image: {
  33048. source: "./media/characters/glint/anthro-back.svg",
  33049. extra: 1154/997,
  33050. bottom: 36/1190
  33051. }
  33052. },
  33053. feral: {
  33054. height: math.unit(11, "feet"),
  33055. weight: math.unit(50000, "lb"),
  33056. name: "Feral",
  33057. image: {
  33058. source: "./media/characters/glint/feral.svg",
  33059. extra: 3035/1585,
  33060. bottom: 1169/4204
  33061. }
  33062. },
  33063. dickAnthro: {
  33064. height: math.unit(0.7, "meters"),
  33065. name: "Dick (Anthro)",
  33066. image: {
  33067. source: "./media/characters/glint/dick-anthro.svg"
  33068. }
  33069. },
  33070. dickFeral: {
  33071. height: math.unit(2.65, "meters"),
  33072. name: "Dick (Feral)",
  33073. image: {
  33074. source: "./media/characters/glint/dick-feral.svg"
  33075. }
  33076. },
  33077. slitHidden: {
  33078. height: math.unit(5.85, "meters"),
  33079. name: "Slit (Hidden)",
  33080. image: {
  33081. source: "./media/characters/glint/slit-hidden.svg"
  33082. }
  33083. },
  33084. slitErect: {
  33085. height: math.unit(5.85, "meters"),
  33086. name: "Slit (Erect)",
  33087. image: {
  33088. source: "./media/characters/glint/slit-erect.svg"
  33089. }
  33090. },
  33091. mawAnthro: {
  33092. height: math.unit(0.63, "meters"),
  33093. name: "Maw (Anthro)",
  33094. image: {
  33095. source: "./media/characters/glint/maw.svg"
  33096. }
  33097. },
  33098. mawFeral: {
  33099. height: math.unit(2.89, "meters"),
  33100. name: "Maw (Feral)",
  33101. image: {
  33102. source: "./media/characters/glint/maw.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(9, "feet"),
  33110. default: true
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33116. {
  33117. side: {
  33118. height: math.unit(15, "feet"),
  33119. weight: math.unit(5000, "kg"),
  33120. name: "Side",
  33121. image: {
  33122. source: "./media/characters/kairne/side.svg",
  33123. extra: 979/811,
  33124. bottom: 13/992
  33125. }
  33126. },
  33127. front: {
  33128. height: math.unit(15, "feet"),
  33129. weight: math.unit(5000, "kg"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/kairne/front.svg",
  33133. extra: 908/814,
  33134. bottom: 26/934
  33135. }
  33136. },
  33137. sideNsfw: {
  33138. height: math.unit(15, "feet"),
  33139. weight: math.unit(5000, "kg"),
  33140. name: "Side (NSFW)",
  33141. image: {
  33142. source: "./media/characters/kairne/side-nsfw.svg",
  33143. extra: 979/811,
  33144. bottom: 13/992
  33145. }
  33146. },
  33147. frontNsfw: {
  33148. height: math.unit(15, "feet"),
  33149. weight: math.unit(5000, "kg"),
  33150. name: "Front (NSFW)",
  33151. image: {
  33152. source: "./media/characters/kairne/front-nsfw.svg",
  33153. extra: 908/814,
  33154. bottom: 26/934
  33155. }
  33156. },
  33157. dickCaged: {
  33158. height: math.unit(0.65, "meters"),
  33159. name: "Dick-caged",
  33160. image: {
  33161. source: "./media/characters/kairne/dick-caged.svg"
  33162. }
  33163. },
  33164. dick: {
  33165. height: math.unit(0.79, "meters"),
  33166. name: "Dick",
  33167. image: {
  33168. source: "./media/characters/kairne/dick.svg"
  33169. }
  33170. },
  33171. genitals: {
  33172. height: math.unit(1.29, "meters"),
  33173. name: "Genitals",
  33174. image: {
  33175. source: "./media/characters/kairne/genitals.svg"
  33176. }
  33177. },
  33178. maw: {
  33179. height: math.unit(1.73, "meters"),
  33180. name: "Maw",
  33181. image: {
  33182. source: "./media/characters/kairne/maw.svg"
  33183. }
  33184. },
  33185. },
  33186. [
  33187. {
  33188. name: "Normal",
  33189. height: math.unit(15, "feet"),
  33190. default: true
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(5 + 8/12, "feet"),
  33199. weight: math.unit(139, "lb"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/biscuit-jackal/front.svg",
  33203. extra: 2106/1961,
  33204. bottom: 58/2164
  33205. }
  33206. },
  33207. back: {
  33208. height: math.unit(5 + 8/12, "feet"),
  33209. weight: math.unit(139, "lb"),
  33210. name: "Back",
  33211. image: {
  33212. source: "./media/characters/biscuit-jackal/back.svg",
  33213. extra: 2132/1976,
  33214. bottom: 57/2189
  33215. }
  33216. },
  33217. werejackal: {
  33218. height: math.unit(6 + 3/12, "feet"),
  33219. weight: math.unit(188, "lb"),
  33220. name: "Werejackal",
  33221. image: {
  33222. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33223. extra: 2373/2178,
  33224. bottom: 53/2426
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(5 + 8/12, "feet"),
  33232. default: true
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(140, "cm"),
  33241. weight: math.unit(45, "kg"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/tayra-white/front.svg",
  33245. extra: 2229/2192,
  33246. bottom: 75/2304
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(140, "cm"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(4 + 5/12, "feet"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/scoop/front.svg",
  33266. extra: 1257/1136,
  33267. bottom: 69/1326
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(4 + 5/12, "feet"),
  33272. name: "Back",
  33273. image: {
  33274. source: "./media/characters/scoop/back.svg",
  33275. extra: 1321/1152,
  33276. bottom: 32/1353
  33277. }
  33278. },
  33279. maw: {
  33280. height: math.unit(0.68, "feet"),
  33281. name: "Maw",
  33282. image: {
  33283. source: "./media/characters/scoop/maw.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Really Small",
  33290. height: math.unit(1, "mm")
  33291. },
  33292. {
  33293. name: "Micro",
  33294. height: math.unit(1, "inch")
  33295. },
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(4 + 5/12, "feet"),
  33299. default: true
  33300. },
  33301. {
  33302. name: "Macro",
  33303. height: math.unit(200, "feet")
  33304. },
  33305. {
  33306. name: "Megamacro",
  33307. height: math.unit(3240, "feet")
  33308. },
  33309. {
  33310. name: "Teramacro",
  33311. height: math.unit(2500, "miles")
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(15 + 7/12, "feet"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/saphinara/front.svg",
  33323. extra: 604/546,
  33324. bottom: 19/623
  33325. }
  33326. },
  33327. side: {
  33328. height: math.unit(15 + 7/12, "feet"),
  33329. name: "Side",
  33330. image: {
  33331. source: "./media/characters/saphinara/side.svg",
  33332. extra: 605/547,
  33333. bottom: 6/611
  33334. }
  33335. },
  33336. back: {
  33337. height: math.unit(15 + 7/12, "feet"),
  33338. name: "Back",
  33339. image: {
  33340. source: "./media/characters/saphinara/back.svg",
  33341. extra: 591/531,
  33342. bottom: 13/604
  33343. }
  33344. },
  33345. frontTail: {
  33346. height: math.unit(15 + 7/12, "feet"),
  33347. name: "Front (Full Tail)",
  33348. image: {
  33349. source: "./media/characters/saphinara/front-tail.svg",
  33350. extra: 748/547,
  33351. bottom: 66/814
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(15 + 7/12, "feet"),
  33359. default: true
  33360. },
  33361. {
  33362. name: "Angry",
  33363. height: math.unit(30 + 6/12, "feet")
  33364. },
  33365. {
  33366. name: "Enraged",
  33367. height: math.unit(102 + 1/12, "feet")
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(6 + 8/12, "feet"),
  33376. weight: math.unit(300, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/jrain/front.svg",
  33380. extra: 3039/2865,
  33381. bottom: 399/3438
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(6 + 8/12, "feet"),
  33386. weight: math.unit(300, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/jrain/back.svg",
  33390. extra: 3089/2938,
  33391. bottom: 172/3261
  33392. }
  33393. },
  33394. head: {
  33395. height: math.unit(2.14, "feet"),
  33396. name: "Head",
  33397. image: {
  33398. source: "./media/characters/jrain/head.svg"
  33399. }
  33400. },
  33401. maw: {
  33402. height: math.unit(1.77, "feet"),
  33403. name: "Maw",
  33404. image: {
  33405. source: "./media/characters/jrain/maw.svg"
  33406. }
  33407. },
  33408. leftHand: {
  33409. height: math.unit(1.1, "feet"),
  33410. name: "Left Hand",
  33411. image: {
  33412. source: "./media/characters/jrain/left-hand.svg"
  33413. }
  33414. },
  33415. rightHand: {
  33416. height: math.unit(1.1, "feet"),
  33417. name: "Right Hand",
  33418. image: {
  33419. source: "./media/characters/jrain/right-hand.svg"
  33420. }
  33421. },
  33422. eye: {
  33423. height: math.unit(0.35, "feet"),
  33424. name: "Eye",
  33425. image: {
  33426. source: "./media/characters/jrain/eye.svg"
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(6 + 8/12, "feet"),
  33434. default: true
  33435. },
  33436. {
  33437. name: "Casually Large",
  33438. height: math.unit(25, "feet")
  33439. },
  33440. {
  33441. name: "Giant",
  33442. height: math.unit(100, "feet")
  33443. },
  33444. {
  33445. name: "Kaiju",
  33446. height: math.unit(300, "feet")
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33452. {
  33453. dragon: {
  33454. height: math.unit(5, "meters"),
  33455. name: "Dragon",
  33456. image: {
  33457. source: "./media/characters/sabrina/dragon.svg",
  33458. extra: 3670 / 2365,
  33459. bottom: 333 / 4003
  33460. }
  33461. },
  33462. gryphon: {
  33463. height: math.unit(3, "meters"),
  33464. name: "Gryphon",
  33465. image: {
  33466. source: "./media/characters/sabrina/gryphon.svg",
  33467. extra: 1576 / 945,
  33468. bottom: 71 / 1647
  33469. }
  33470. },
  33471. snake: {
  33472. height: math.unit(12, "meters"),
  33473. name: "Snake",
  33474. image: {
  33475. source: "./media/characters/sabrina/snake.svg",
  33476. extra: 1758 / 1320,
  33477. bottom: 186 / 1944
  33478. }
  33479. },
  33480. collar: {
  33481. height: math.unit(1.86, "meters"),
  33482. name: "Collar",
  33483. image: {
  33484. source: "./media/characters/sabrina/collar.svg"
  33485. }
  33486. },
  33487. eye: {
  33488. height: math.unit(0.53, "meters"),
  33489. name: "Eye",
  33490. image: {
  33491. source: "./media/characters/sabrina/eye.svg"
  33492. }
  33493. },
  33494. foot: {
  33495. height: math.unit(1.86, "meters"),
  33496. name: "Foot",
  33497. image: {
  33498. source: "./media/characters/sabrina/foot.svg"
  33499. }
  33500. },
  33501. hand: {
  33502. height: math.unit(1.32, "meters"),
  33503. name: "Hand",
  33504. image: {
  33505. source: "./media/characters/sabrina/hand.svg"
  33506. }
  33507. },
  33508. head: {
  33509. height: math.unit(2.44, "meters"),
  33510. name: "Head",
  33511. image: {
  33512. source: "./media/characters/sabrina/head.svg"
  33513. }
  33514. },
  33515. headAngry: {
  33516. height: math.unit(2.44, "meters"),
  33517. name: "Head (Angry))",
  33518. image: {
  33519. source: "./media/characters/sabrina/head-angry.svg"
  33520. }
  33521. },
  33522. maw: {
  33523. height: math.unit(1.65, "meters"),
  33524. name: "Maw",
  33525. image: {
  33526. source: "./media/characters/sabrina/maw.svg"
  33527. }
  33528. },
  33529. spikes: {
  33530. height: math.unit(1.69, "meters"),
  33531. name: "Spikes",
  33532. image: {
  33533. source: "./media/characters/sabrina/spikes.svg"
  33534. }
  33535. },
  33536. stomach: {
  33537. height: math.unit(1.15, "meters"),
  33538. name: "Stomach",
  33539. image: {
  33540. source: "./media/characters/sabrina/stomach.svg"
  33541. }
  33542. },
  33543. tongue: {
  33544. height: math.unit(1.27, "meters"),
  33545. name: "Tongue",
  33546. image: {
  33547. source: "./media/characters/sabrina/tongue.svg"
  33548. }
  33549. },
  33550. wingDorsal: {
  33551. height: math.unit(4.85, "meters"),
  33552. name: "Wing (Dorsal)",
  33553. image: {
  33554. source: "./media/characters/sabrina/wing-dorsal.svg"
  33555. }
  33556. },
  33557. wingVentral: {
  33558. height: math.unit(4.85, "meters"),
  33559. name: "Wing (Ventral)",
  33560. image: {
  33561. source: "./media/characters/sabrina/wing-ventral.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(5, "meters"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33575. {
  33576. frontMaid: {
  33577. height: math.unit(5 + 5/12, "feet"),
  33578. weight: math.unit(130, "lb"),
  33579. name: "Front (Maid)",
  33580. image: {
  33581. source: "./media/characters/midnight-tales/front-maid.svg",
  33582. extra: 489/454,
  33583. bottom: 61/550
  33584. }
  33585. },
  33586. frontFormal: {
  33587. height: math.unit(5 + 5/12, "feet"),
  33588. weight: math.unit(130, "lb"),
  33589. name: "Front (Formal)",
  33590. image: {
  33591. source: "./media/characters/midnight-tales/front-formal.svg",
  33592. extra: 489/454,
  33593. bottom: 61/550
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(5 + 5/12, "feet"),
  33598. weight: math.unit(130, "lb"),
  33599. name: "Back",
  33600. image: {
  33601. source: "./media/characters/midnight-tales/back.svg",
  33602. extra: 498/456,
  33603. bottom: 33/531
  33604. }
  33605. },
  33606. frontBeast: {
  33607. height: math.unit(40, "feet"),
  33608. weight: math.unit(64000, "lb"),
  33609. name: "Front (Beast)",
  33610. image: {
  33611. source: "./media/characters/midnight-tales/front-beast.svg",
  33612. extra: 927/860,
  33613. bottom: 53/980
  33614. }
  33615. },
  33616. backBeast: {
  33617. height: math.unit(40, "feet"),
  33618. weight: math.unit(64000, "lb"),
  33619. name: "Back (Beast)",
  33620. image: {
  33621. source: "./media/characters/midnight-tales/back-beast.svg",
  33622. extra: 929/855,
  33623. bottom: 16/945
  33624. }
  33625. },
  33626. footBeast: {
  33627. height: math.unit(6.7, "feet"),
  33628. name: "Foot (Beast)",
  33629. image: {
  33630. source: "./media/characters/midnight-tales/foot-beast.svg"
  33631. }
  33632. },
  33633. headBeast: {
  33634. height: math.unit(8, "feet"),
  33635. name: "Head (Beast)",
  33636. image: {
  33637. source: "./media/characters/midnight-tales/head-beast.svg"
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Normal",
  33644. height: math.unit(5 + 5 / 12, "feet"),
  33645. default: true
  33646. },
  33647. {
  33648. name: "Macro",
  33649. height: math.unit(25, "feet")
  33650. },
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33655. {
  33656. front: {
  33657. height: math.unit(5 + 10/12, "feet"),
  33658. name: "Front",
  33659. image: {
  33660. source: "./media/characters/argon/front.svg",
  33661. extra: 2009/1935,
  33662. bottom: 118/2127
  33663. }
  33664. },
  33665. back: {
  33666. height: math.unit(5 + 10/12, "feet"),
  33667. name: "Back",
  33668. image: {
  33669. source: "./media/characters/argon/back.svg",
  33670. extra: 2047/1992,
  33671. bottom: 20/2067
  33672. }
  33673. },
  33674. frontDressed: {
  33675. height: math.unit(5 + 10/12, "feet"),
  33676. name: "Front (Dressed)",
  33677. image: {
  33678. source: "./media/characters/argon/front-dressed.svg",
  33679. extra: 2009/1935,
  33680. bottom: 118/2127
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Normal",
  33687. height: math.unit(5 + 10/12, "feet"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33694. {
  33695. front: {
  33696. height: math.unit(8 + 6/12, "feet"),
  33697. weight: math.unit(1150, "lb"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/kichi/front.svg",
  33701. extra: 1267/1164,
  33702. bottom: 61/1328
  33703. }
  33704. },
  33705. back: {
  33706. height: math.unit(8 + 6/12, "feet"),
  33707. weight: math.unit(1150, "lb"),
  33708. name: "Back",
  33709. image: {
  33710. source: "./media/characters/kichi/back.svg",
  33711. extra: 1273/1166,
  33712. bottom: 33/1306
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(8 + 6/12, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(6, "feet"),
  33729. weight: math.unit(210, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/manetel-greyscale/front.svg",
  33733. extra: 350/312,
  33734. bottom: 8/358
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Micro",
  33741. height: math.unit(2, "inches")
  33742. },
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(6, "feet"),
  33746. default: true
  33747. },
  33748. {
  33749. name: "Minimacro",
  33750. height: math.unit(17, "feet")
  33751. },
  33752. {
  33753. name: "Macro",
  33754. height: math.unit(117, "feet")
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33760. {
  33761. side: {
  33762. height: math.unit(5 + 1/12, "feet"),
  33763. weight: math.unit(418, "lb"),
  33764. name: "Side",
  33765. image: {
  33766. source: "./media/characters/softpurr/side.svg",
  33767. extra: 1993/1945,
  33768. bottom: 134/2127
  33769. }
  33770. },
  33771. front: {
  33772. height: math.unit(5 + 1/12, "feet"),
  33773. weight: math.unit(418, "lb"),
  33774. name: "Front",
  33775. image: {
  33776. source: "./media/characters/softpurr/front.svg",
  33777. extra: 1950/1856,
  33778. bottom: 174/2124
  33779. }
  33780. },
  33781. paw: {
  33782. height: math.unit(1, "feet"),
  33783. name: "Paw",
  33784. image: {
  33785. source: "./media/characters/softpurr/paw.svg"
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Normal",
  33792. height: math.unit(5 + 1/12, "feet"),
  33793. default: true
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(260, "meters"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/anahita/front.svg",
  33805. extra: 665/635,
  33806. bottom: 89/754
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Macro",
  33813. height: math.unit(260, "meters"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(4 + 10/12, "feet"),
  33823. weight: math.unit(160, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/chip-mouse/front.svg",
  33827. extra: 3528/3408,
  33828. bottom: 0/3528
  33829. }
  33830. },
  33831. frontNsfw: {
  33832. height: math.unit(4 + 10/12, "feet"),
  33833. weight: math.unit(160, "lb"),
  33834. name: "Front (NSFW)",
  33835. image: {
  33836. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33837. extra: 3528/3408,
  33838. bottom: 0/3528
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(4 + 10/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33852. {
  33853. side: {
  33854. height: math.unit(10, "feet"),
  33855. weight: math.unit(14000, "lb"),
  33856. name: "Side",
  33857. image: {
  33858. source: "./media/characters/kremm/side.svg",
  33859. extra: 1390/1053,
  33860. bottom: 90/1480
  33861. }
  33862. },
  33863. gut: {
  33864. height: math.unit(5.8, "feet"),
  33865. name: "Gut",
  33866. image: {
  33867. source: "./media/characters/kremm/gut.svg"
  33868. }
  33869. },
  33870. ass: {
  33871. height: math.unit(6.1, "feet"),
  33872. name: "Ass",
  33873. image: {
  33874. source: "./media/characters/kremm/ass.svg"
  33875. }
  33876. },
  33877. jaws: {
  33878. height: math.unit(2.2, "feet"),
  33879. name: "Jaws",
  33880. image: {
  33881. source: "./media/characters/kremm/jaws.svg"
  33882. }
  33883. },
  33884. dick: {
  33885. height: math.unit(4.26, "feet"),
  33886. name: "Dick",
  33887. image: {
  33888. source: "./media/characters/kremm/dick.svg"
  33889. }
  33890. },
  33891. },
  33892. [
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(10, "feet"),
  33896. default: true
  33897. },
  33898. ]
  33899. ))
  33900. characterMakers.push(() => makeCharacter(
  33901. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33902. {
  33903. front: {
  33904. height: math.unit(30, "stories"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/kai/front.svg",
  33908. extra: 1892/1718,
  33909. bottom: 162/2054
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Macro",
  33916. height: math.unit(30, "stories"),
  33917. default: true
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(6 + 4/12, "feet"),
  33926. weight: math.unit(145, "lb"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/sykes/front.svg",
  33930. extra: 1321 / 1187,
  33931. bottom: 66 / 1387
  33932. }
  33933. },
  33934. back: {
  33935. height: math.unit(6 + 4/12, "feet"),
  33936. weight: math.unit(145, "lb"),
  33937. name: "Back",
  33938. image: {
  33939. source: "./media/characters/sykes/back.svg",
  33940. extra: 1326/1181,
  33941. bottom: 31/1357
  33942. }
  33943. },
  33944. handBack: {
  33945. height: math.unit(0.9, "feet"),
  33946. name: "Hand (Back)",
  33947. image: {
  33948. source: "./media/characters/sykes/hand-back.svg"
  33949. }
  33950. },
  33951. handFront: {
  33952. height: math.unit(0.839, "feet"),
  33953. name: "Hand (Front)",
  33954. image: {
  33955. source: "./media/characters/sykes/hand-front.svg"
  33956. }
  33957. },
  33958. leftFoot: {
  33959. height: math.unit(1.2, "feet"),
  33960. name: "Foot (Left)",
  33961. image: {
  33962. source: "./media/characters/sykes/foot-left.svg"
  33963. }
  33964. },
  33965. rightFoot: {
  33966. height: math.unit(1.2, "feet"),
  33967. name: "Foot (Right)",
  33968. image: {
  33969. source: "./media/characters/sykes/foot-right.svg"
  33970. }
  33971. },
  33972. maw: {
  33973. height: math.unit(1.93, "feet"),
  33974. name: "Maw",
  33975. image: {
  33976. source: "./media/characters/sykes/maw.svg"
  33977. }
  33978. },
  33979. teeth: {
  33980. height: math.unit(0.51, "feet"),
  33981. name: "Teeth",
  33982. image: {
  33983. source: "./media/characters/sykes/teeth.svg"
  33984. }
  33985. },
  33986. tongue: {
  33987. height: math.unit(2.13, "feet"),
  33988. name: "Tongue",
  33989. image: {
  33990. source: "./media/characters/sykes/tongue.svg"
  33991. }
  33992. },
  33993. uvula: {
  33994. height: math.unit(0.16, "feet"),
  33995. name: "Uvula",
  33996. image: {
  33997. source: "./media/characters/sykes/uvula.svg"
  33998. }
  33999. },
  34000. collar: {
  34001. height: math.unit(0.287, "feet"),
  34002. name: "Collar",
  34003. image: {
  34004. source: "./media/characters/sykes/collar.svg"
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Shrunken",
  34011. height: math.unit(5, "inches")
  34012. },
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(6 + 4 / 12, "feet"),
  34016. default: true
  34017. },
  34018. {
  34019. name: "Big",
  34020. height: math.unit(15, "feet")
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34026. {
  34027. front: {
  34028. height: math.unit(5 + 8/12, "feet"),
  34029. weight: math.unit(190, "lb"),
  34030. name: "Front",
  34031. image: {
  34032. source: "./media/characters/oven-otter/front.svg",
  34033. extra: 1809/1740,
  34034. bottom: 181/1990
  34035. }
  34036. },
  34037. back: {
  34038. height: math.unit(5 + 8/12, "feet"),
  34039. weight: math.unit(190, "lb"),
  34040. name: "Back",
  34041. image: {
  34042. source: "./media/characters/oven-otter/back.svg",
  34043. extra: 1709/1635,
  34044. bottom: 118/1827
  34045. }
  34046. },
  34047. hand: {
  34048. height: math.unit(1.07, "feet"),
  34049. name: "Hand",
  34050. image: {
  34051. source: "./media/characters/oven-otter/hand.svg"
  34052. }
  34053. },
  34054. beans: {
  34055. height: math.unit(1.74, "feet"),
  34056. name: "Beans",
  34057. image: {
  34058. source: "./media/characters/oven-otter/beans.svg"
  34059. }
  34060. },
  34061. },
  34062. [
  34063. {
  34064. name: "Micro",
  34065. height: math.unit(0.5, "inches")
  34066. },
  34067. {
  34068. name: "Normal",
  34069. height: math.unit(5 + 8/12, "feet"),
  34070. default: true
  34071. },
  34072. {
  34073. name: "Macro",
  34074. height: math.unit(250, "feet")
  34075. },
  34076. {
  34077. name: "Really High",
  34078. height: math.unit(420, "feet")
  34079. },
  34080. ]
  34081. ))
  34082. characterMakers.push(() => makeCharacter(
  34083. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34084. {
  34085. front: {
  34086. height: math.unit(5, "meters"),
  34087. weight: math.unit(292000000000000, "kg"),
  34088. name: "Front",
  34089. image: {
  34090. source: "./media/characters/devourer/front.svg",
  34091. extra: 1800/1733,
  34092. bottom: 211/2011
  34093. }
  34094. },
  34095. maw: {
  34096. height: math.unit(1.1, "meter"),
  34097. name: "Maw",
  34098. image: {
  34099. source: "./media/characters/devourer/maw.svg"
  34100. }
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Small",
  34106. height: math.unit(3, "meters")
  34107. },
  34108. {
  34109. name: "Large",
  34110. height: math.unit(5, "meters"),
  34111. default: true
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34117. {
  34118. front: {
  34119. height: math.unit(6, "feet"),
  34120. weight: math.unit(400, "lb"),
  34121. name: "Front",
  34122. image: {
  34123. source: "./media/characters/ellarby/front.svg",
  34124. extra: 1909/1763,
  34125. bottom: 80/1989
  34126. }
  34127. },
  34128. back: {
  34129. height: math.unit(6, "feet"),
  34130. weight: math.unit(400, "lb"),
  34131. name: "Back",
  34132. image: {
  34133. source: "./media/characters/ellarby/back.svg",
  34134. extra: 1914/1784,
  34135. bottom: 172/2086
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Mischief",
  34142. height: math.unit(18, "inches")
  34143. },
  34144. {
  34145. name: "Trouble",
  34146. height: math.unit(12, "feet")
  34147. },
  34148. {
  34149. name: "Havoc",
  34150. height: math.unit(200, "feet"),
  34151. default: true
  34152. },
  34153. {
  34154. name: "Pandemonium",
  34155. height: math.unit(1, "mile")
  34156. },
  34157. {
  34158. name: "Catastrophe",
  34159. height: math.unit(100, "miles")
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34165. {
  34166. front: {
  34167. height: math.unit(4.7, "meters"),
  34168. weight: math.unit(6500, "kg"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/vex/front.svg",
  34172. extra: 1288/1140,
  34173. bottom: 100/1388
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Normal",
  34180. height: math.unit(4.7, "meters"),
  34181. default: true
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34187. {
  34188. normal: {
  34189. height: math.unit(6, "feet"),
  34190. weight: math.unit(350, "lb"),
  34191. name: "Normal",
  34192. image: {
  34193. source: "./media/characters/teshy/normal.svg",
  34194. extra: 1795/1735,
  34195. bottom: 16/1811
  34196. }
  34197. },
  34198. monsterFront: {
  34199. height: math.unit(12, "feet"),
  34200. weight: math.unit(4700, "lb"),
  34201. name: "Monster (Front)",
  34202. image: {
  34203. source: "./media/characters/teshy/monster-front.svg",
  34204. extra: 2042/2034,
  34205. bottom: 128/2170
  34206. }
  34207. },
  34208. monsterSide: {
  34209. height: math.unit(12, "feet"),
  34210. weight: math.unit(4700, "lb"),
  34211. name: "Monster (Side)",
  34212. image: {
  34213. source: "./media/characters/teshy/monster-side.svg",
  34214. extra: 2067/2056,
  34215. bottom: 70/2137
  34216. }
  34217. },
  34218. monsterBack: {
  34219. height: math.unit(12, "feet"),
  34220. weight: math.unit(4700, "lb"),
  34221. name: "Monster (Back)",
  34222. image: {
  34223. source: "./media/characters/teshy/monster-back.svg",
  34224. extra: 1921/1914,
  34225. bottom: 171/2092
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(6, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(6, "feet"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/ramey/front.svg",
  34245. extra: 790/787,
  34246. bottom: 27/817
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(6, "feet"),
  34254. default: true
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34260. {
  34261. front: {
  34262. height: math.unit(5 + 5/12, "feet"),
  34263. weight: math.unit(120, "lb"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/phirae/front.svg",
  34267. extra: 2491/2436,
  34268. bottom: 38/2529
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(5 + 5/12, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34282. {
  34283. front: {
  34284. height: math.unit(5 + 3/12, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/stagglas/front.svg",
  34288. extra: 962/882,
  34289. bottom: 53/1015
  34290. }
  34291. },
  34292. feral: {
  34293. height: math.unit(335, "cm"),
  34294. name: "Feral",
  34295. image: {
  34296. source: "./media/characters/stagglas/feral.svg",
  34297. extra: 1732/1090,
  34298. bottom: 48/1780
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(5 + 3/12, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(5 + 4/12, "feet"),
  34315. weight: math.unit(145, "lb"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/starra/front.svg",
  34319. extra: 1790/1691,
  34320. bottom: 91/1881
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(5 + 4/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(2.2, "meters"),
  34337. name: "Front",
  34338. image: {
  34339. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34340. extra: 1194/1005,
  34341. bottom: 25/1219
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(2.2, "meters"),
  34349. default: true
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34355. {
  34356. side: {
  34357. height: math.unit(8 + 2/12, "feet"),
  34358. weight: math.unit(1240, "lb"),
  34359. name: "Side",
  34360. image: {
  34361. source: "./media/characters/mika-valentine/side.svg",
  34362. extra: 2670/2501,
  34363. bottom: 250/2920
  34364. }
  34365. },
  34366. },
  34367. [
  34368. {
  34369. name: "Normal",
  34370. height: math.unit(8 + 2/12, "feet"),
  34371. default: true
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34377. {
  34378. front: {
  34379. height: math.unit(7 + 2/12, "feet"),
  34380. name: "Front",
  34381. image: {
  34382. source: "./media/characters/xoltol/front.svg",
  34383. extra: 2212/2124,
  34384. bottom: 84/2296
  34385. }
  34386. },
  34387. side: {
  34388. height: math.unit(7 + 2/12, "feet"),
  34389. name: "Side",
  34390. image: {
  34391. source: "./media/characters/xoltol/side.svg",
  34392. extra: 2273/2197,
  34393. bottom: 26/2299
  34394. }
  34395. },
  34396. hand: {
  34397. height: math.unit(2.5, "feet"),
  34398. name: "Hand",
  34399. image: {
  34400. source: "./media/characters/xoltol/hand.svg"
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Small-ish",
  34407. height: math.unit(5 + 11/12, "feet")
  34408. },
  34409. {
  34410. name: "Normal",
  34411. height: math.unit(7 + 2/12, "feet")
  34412. },
  34413. {
  34414. name: "\"Macro\"",
  34415. height: math.unit(14 + 9/12, "feet"),
  34416. default: true
  34417. },
  34418. {
  34419. name: "Alternate Height",
  34420. height: math.unit(20, "feet")
  34421. },
  34422. {
  34423. name: "Actually Macro",
  34424. height: math.unit(100, "feet")
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(5 + 2/12, "feet"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/kotetsu-redwood/front.svg",
  34436. extra: 1053/942,
  34437. bottom: 60/1113
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Normal",
  34444. height: math.unit(5 + 2/12, "feet"),
  34445. default: true
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34451. {
  34452. front: {
  34453. height: math.unit(2.4, "meters"),
  34454. weight: math.unit(125, "kg"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/lilith/front.svg",
  34458. extra: 1590/1513,
  34459. bottom: 203/1793
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Humanoid",
  34466. height: math.unit(2.4, "meters")
  34467. },
  34468. {
  34469. name: "Normal",
  34470. height: math.unit(6, "meters"),
  34471. default: true
  34472. },
  34473. {
  34474. name: "Largest",
  34475. height: math.unit(55, "meters")
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(8 + 4/12, "feet"),
  34484. weight: math.unit(535, "lb"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/beh'kah-bolger/front.svg",
  34488. extra: 1660/1603,
  34489. bottom: 37/1697
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(8 + 4/12, "feet"),
  34497. default: true
  34498. },
  34499. {
  34500. name: "Kaiju",
  34501. height: math.unit(250, "feet")
  34502. },
  34503. {
  34504. name: "Still Growing",
  34505. height: math.unit(10, "miles")
  34506. },
  34507. {
  34508. name: "Continental",
  34509. height: math.unit(5000, "miles")
  34510. },
  34511. {
  34512. name: "Final Form",
  34513. height: math.unit(2500000, "miles")
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(7 + 2/12, "feet"),
  34522. weight: math.unit(230, "kg"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/tatyana-milewska/front.svg",
  34526. extra: 1199/1150,
  34527. bottom: 86/1285
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(7 + 2/12, "feet"),
  34535. default: true
  34536. },
  34537. {
  34538. name: "Big",
  34539. height: math.unit(12, "feet")
  34540. },
  34541. {
  34542. name: "Minimacro",
  34543. height: math.unit(20, "feet")
  34544. },
  34545. {
  34546. name: "Macro",
  34547. height: math.unit(120, "feet")
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34553. {
  34554. front: {
  34555. height: math.unit(7 + 8/12, "feet"),
  34556. weight: math.unit(152, "kg"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/helen-arri/front.svg",
  34560. extra: 440/423,
  34561. bottom: 14/454
  34562. }
  34563. },
  34564. back: {
  34565. height: math.unit(7 + 8/12, "feet"),
  34566. weight: math.unit(152, "kg"),
  34567. name: "Back",
  34568. image: {
  34569. source: "./media/characters/helen-arri/back.svg",
  34570. extra: 443/426,
  34571. bottom: 8/451
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(7 + 8/12, "feet"),
  34579. default: true
  34580. },
  34581. {
  34582. name: "Big",
  34583. height: math.unit(14, "feet")
  34584. },
  34585. {
  34586. name: "Minimacro",
  34587. height: math.unit(24, "feet")
  34588. },
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(140, "feet")
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34597. {
  34598. front: {
  34599. height: math.unit(6, "meters"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/ehanu-rehu/front.svg",
  34603. extra: 1800/1800,
  34604. bottom: 59/1859
  34605. }
  34606. },
  34607. },
  34608. [
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(6, "meters"),
  34612. default: true
  34613. },
  34614. ]
  34615. ))
  34616. characterMakers.push(() => makeCharacter(
  34617. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34618. {
  34619. front: {
  34620. height: math.unit(7 + 3/12, "feet"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/renholder/front.svg",
  34624. extra: 3096/2960,
  34625. bottom: 250/3346
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal Bat",
  34632. height: math.unit(7 + 3/12, "feet"),
  34633. default: true
  34634. },
  34635. {
  34636. name: "Slightly Tall Bat",
  34637. height: math.unit(100, "feet")
  34638. },
  34639. {
  34640. name: "Big Bat",
  34641. height: math.unit(1000, "feet")
  34642. },
  34643. {
  34644. name: "City-Sized Bat",
  34645. height: math.unit(200000, "feet")
  34646. },
  34647. {
  34648. name: "Bigger Bat",
  34649. height: math.unit(10000, "miles")
  34650. },
  34651. {
  34652. name: "Solar Sized Bat",
  34653. height: math.unit(100, "AU")
  34654. },
  34655. {
  34656. name: "Galactic Bat",
  34657. height: math.unit(200000, "lightyears")
  34658. },
  34659. {
  34660. name: "Universally Known Bat",
  34661. height: math.unit(1, "universe")
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(6 + 11/12, "feet"),
  34670. weight: math.unit(250, "lb"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/cookiecat/front.svg",
  34674. extra: 893/827,
  34675. bottom: 14/907
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Micro",
  34682. height: math.unit(3, "inches")
  34683. },
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(6 + 11/12, "feet"),
  34687. default: true
  34688. },
  34689. {
  34690. name: "Macro",
  34691. height: math.unit(100, "feet")
  34692. },
  34693. {
  34694. name: "Macro+",
  34695. height: math.unit(404, "feet")
  34696. },
  34697. {
  34698. name: "Megamacro",
  34699. height: math.unit(165, "miles")
  34700. },
  34701. {
  34702. name: "Planetary",
  34703. height: math.unit(4600, "miles")
  34704. },
  34705. ]
  34706. ))
  34707. characterMakers.push(() => makeCharacter(
  34708. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34709. {
  34710. front: {
  34711. height: math.unit(10 + 3/12, "feet"),
  34712. weight: math.unit(1500, "lb"),
  34713. name: "Front",
  34714. image: {
  34715. source: "./media/characters/tux-kusanagi/front.svg",
  34716. extra: 944/840,
  34717. bottom: 39/983
  34718. }
  34719. },
  34720. back: {
  34721. height: math.unit(10 + 3/12, "feet"),
  34722. weight: math.unit(1500, "lb"),
  34723. name: "Back",
  34724. image: {
  34725. source: "./media/characters/tux-kusanagi/back.svg",
  34726. extra: 941/842,
  34727. bottom: 28/969
  34728. }
  34729. },
  34730. rump: {
  34731. height: math.unit(5.25, "feet"),
  34732. name: "Rump",
  34733. image: {
  34734. source: "./media/characters/tux-kusanagi/rump.svg"
  34735. }
  34736. },
  34737. beak: {
  34738. height: math.unit(1.54, "feet"),
  34739. name: "Beak",
  34740. image: {
  34741. source: "./media/characters/tux-kusanagi/beak.svg"
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(10 + 3/12, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(58, "feet"),
  34758. weight: math.unit(200, "tons"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/uzarmazari/front.svg",
  34762. extra: 1575/1455,
  34763. bottom: 152/1727
  34764. }
  34765. },
  34766. back: {
  34767. height: math.unit(58, "feet"),
  34768. weight: math.unit(200, "tons"),
  34769. name: "Back",
  34770. image: {
  34771. source: "./media/characters/uzarmazari/back.svg",
  34772. extra: 1585/1510,
  34773. bottom: 157/1742
  34774. }
  34775. },
  34776. head: {
  34777. height: math.unit(26, "feet"),
  34778. name: "Head",
  34779. image: {
  34780. source: "./media/characters/uzarmazari/head.svg"
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(58, "feet"),
  34788. default: true
  34789. },
  34790. ]
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34794. {
  34795. side: {
  34796. height: math.unit(15, "feet"),
  34797. name: "Side",
  34798. image: {
  34799. source: "./media/characters/akitu/side.svg",
  34800. extra: 1421/1321,
  34801. bottom: 157/1578
  34802. }
  34803. },
  34804. front: {
  34805. height: math.unit(15, "feet"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/akitu/front.svg",
  34809. extra: 1435/1326,
  34810. bottom: 232/1667
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(15, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(10 + 8/12, "feet"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/azalie-croixland/front.svg",
  34830. extra: 1972/1856,
  34831. bottom: 31/2003
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Original Height",
  34838. height: math.unit(5 + 4/12, "feet")
  34839. },
  34840. {
  34841. name: "Normal Height",
  34842. height: math.unit(10 + 8/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34849. {
  34850. side: {
  34851. height: math.unit(7 + 1/12, "feet"),
  34852. weight: math.unit(245, "lb"),
  34853. name: "Side",
  34854. image: {
  34855. source: "./media/characters/kavus-kazian/side.svg",
  34856. extra: 349/342,
  34857. bottom: 15/364
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(7 + 1/12, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34871. {
  34872. normal: {
  34873. height: math.unit(5 + 11/12, "feet"),
  34874. name: "Normal",
  34875. image: {
  34876. source: "./media/characters/moonlight-rose/normal.svg",
  34877. extra: 1979/1835,
  34878. bottom: 14/1993
  34879. }
  34880. },
  34881. demon: {
  34882. height: math.unit(5, "km"),
  34883. name: "Demon",
  34884. image: {
  34885. source: "./media/characters/moonlight-rose/demon.svg",
  34886. extra: 986/916,
  34887. bottom: 28/1014
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "\"Natural\" height",
  34894. height: math.unit(5 + 11/12, "feet")
  34895. },
  34896. {
  34897. name: "Comfortable Size",
  34898. height: math.unit(40, "meters")
  34899. },
  34900. {
  34901. name: "Common Size",
  34902. height: math.unit(50, "km"),
  34903. default: true
  34904. },
  34905. {
  34906. name: "Demonic",
  34907. height: math.unit(1.24415e+21, "meters")
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34913. {
  34914. front: {
  34915. height: math.unit(16, "feet"),
  34916. weight: math.unit(610, "kg"),
  34917. name: "Front",
  34918. image: {
  34919. source: "./media/characters/huckle/front.svg",
  34920. extra: 1731/1625,
  34921. bottom: 33/1764
  34922. }
  34923. },
  34924. back: {
  34925. height: math.unit(16, "feet"),
  34926. weight: math.unit(610, "kg"),
  34927. name: "Back",
  34928. image: {
  34929. source: "./media/characters/huckle/back.svg",
  34930. extra: 1738/1651,
  34931. bottom: 37/1775
  34932. }
  34933. },
  34934. laughing: {
  34935. height: math.unit(3.75, "feet"),
  34936. name: "Laughing",
  34937. image: {
  34938. source: "./media/characters/huckle/laughing.svg"
  34939. }
  34940. },
  34941. angry: {
  34942. height: math.unit(4.15, "feet"),
  34943. name: "Angry",
  34944. image: {
  34945. source: "./media/characters/huckle/angry.svg"
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(16, "feet"),
  34953. default: true
  34954. },
  34955. {
  34956. name: "Mini Macro",
  34957. height: math.unit(463, "feet")
  34958. },
  34959. {
  34960. name: "Macro",
  34961. height: math.unit(1680, "meters")
  34962. },
  34963. {
  34964. name: "Mega Macro",
  34965. height: math.unit(175, "km")
  34966. },
  34967. {
  34968. name: "Terra Macro",
  34969. height: math.unit(32, "gigameters")
  34970. },
  34971. {
  34972. name: "Multiverse+",
  34973. height: math.unit(2.56e23, "yottameters")
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(6 + 9/12, "feet"),
  34982. weight: math.unit(280, "lb"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/candy/front.svg",
  34986. extra: 234/217,
  34987. bottom: 11/245
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Really Small",
  34994. height: math.unit(0.1, "nm")
  34995. },
  34996. {
  34997. name: "Micro",
  34998. height: math.unit(2, "inches")
  34999. },
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(6 + 9/12, "feet"),
  35003. default: true
  35004. },
  35005. {
  35006. name: "Small Macro",
  35007. height: math.unit(69, "feet")
  35008. },
  35009. {
  35010. name: "Macro",
  35011. height: math.unit(160, "feet")
  35012. },
  35013. {
  35014. name: "Megamacro",
  35015. height: math.unit(22000, "miles")
  35016. },
  35017. {
  35018. name: "Gigamacro",
  35019. height: math.unit(50000, "miles")
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(4, "feet"),
  35028. weight: math.unit(90, "lb"),
  35029. name: "Front",
  35030. image: {
  35031. source: "./media/characters/joey-mcdonald/front.svg",
  35032. extra: 1059/852,
  35033. bottom: 33/1092
  35034. }
  35035. },
  35036. back: {
  35037. height: math.unit(4, "feet"),
  35038. weight: math.unit(90, "lb"),
  35039. name: "Back",
  35040. image: {
  35041. source: "./media/characters/joey-mcdonald/back.svg",
  35042. extra: 1077/879,
  35043. bottom: 5/1082
  35044. }
  35045. },
  35046. frontKobold: {
  35047. height: math.unit(4, "feet"),
  35048. weight: math.unit(100, "lb"),
  35049. name: "Front-kobold",
  35050. image: {
  35051. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35052. extra: 1480/1367,
  35053. bottom: 0/1480
  35054. }
  35055. },
  35056. backKobold: {
  35057. height: math.unit(4, "feet"),
  35058. weight: math.unit(100, "lb"),
  35059. name: "Back-kobold",
  35060. image: {
  35061. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35062. extra: 1449/1361,
  35063. bottom: 0/1449
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Normal",
  35070. height: math.unit(4, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35077. {
  35078. front: {
  35079. height: math.unit(12 + 6/12, "feet"),
  35080. name: "Front",
  35081. image: {
  35082. source: "./media/characters/kass-lockheed/front.svg",
  35083. extra: 354/343,
  35084. bottom: 9/363
  35085. }
  35086. },
  35087. back: {
  35088. height: math.unit(12 + 6/12, "feet"),
  35089. name: "Back",
  35090. image: {
  35091. source: "./media/characters/kass-lockheed/back.svg",
  35092. extra: 364/352,
  35093. bottom: 3/367
  35094. }
  35095. },
  35096. dick: {
  35097. height: math.unit(3.12, "feet"),
  35098. name: "Dick",
  35099. image: {
  35100. source: "./media/characters/kass-lockheed/dick.svg"
  35101. }
  35102. },
  35103. head: {
  35104. height: math.unit(2.6, "feet"),
  35105. name: "Head",
  35106. image: {
  35107. source: "./media/characters/kass-lockheed/head.svg"
  35108. }
  35109. },
  35110. bleh: {
  35111. height: math.unit(2.85, "feet"),
  35112. name: "Bleh",
  35113. image: {
  35114. source: "./media/characters/kass-lockheed/bleh.svg"
  35115. }
  35116. },
  35117. smug: {
  35118. height: math.unit(2.85, "feet"),
  35119. name: "Smug",
  35120. image: {
  35121. source: "./media/characters/kass-lockheed/smug.svg"
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(12 + 6/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(6 + 2/12, "feet"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/taylor/front.svg",
  35141. extra: 639/495,
  35142. bottom: 12/651
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(6 + 2/12, "feet"),
  35150. default: true
  35151. },
  35152. {
  35153. name: "Big",
  35154. height: math.unit(15, "feet")
  35155. },
  35156. {
  35157. name: "Lorg",
  35158. height: math.unit(80, "feet")
  35159. },
  35160. {
  35161. name: "Too Lorg",
  35162. height: math.unit(120, "feet")
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(15, "feet"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/kaizer/front.svg",
  35174. extra: 1612/1436,
  35175. bottom: 43/1655
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(15, "feet"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(2, "feet"),
  35192. weight: math.unit(30, "lb"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/sandy/front.svg",
  35196. extra: 1439/1307,
  35197. bottom: 194/1633
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(2, "feet"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(3, "feet"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/mellvi/front.svg",
  35217. extra: 1831/1630,
  35218. bottom: 58/1889
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(3, "feet"),
  35226. default: true
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(5 + 11/12, "feet"),
  35235. weight: math.unit(200, "lb"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/shirou/front.svg",
  35239. extra: 2491/2383,
  35240. bottom: 189/2680
  35241. }
  35242. },
  35243. back: {
  35244. height: math.unit(5 + 11/12, "feet"),
  35245. weight: math.unit(200, "lb"),
  35246. name: "Back",
  35247. image: {
  35248. source: "./media/characters/shirou/back.svg",
  35249. extra: 2554/2450,
  35250. bottom: 76/2630
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(5 + 11/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(6 + 3/12, "feet"),
  35267. weight: math.unit(177, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/noryu/front.svg",
  35271. extra: 973/885,
  35272. bottom: 10/983
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(6 + 3/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(5 + 6/12, "feet"),
  35289. weight: math.unit(170, "lb"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/mevolas-rubenido/front.svg",
  35293. extra: 2109/1901,
  35294. bottom: 96/2205
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(5 + 6/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(100, "feet"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/dee/front.svg",
  35314. extra: 2153/2036,
  35315. bottom: 59/2212
  35316. }
  35317. },
  35318. back: {
  35319. height: math.unit(100, "feet"),
  35320. name: "Back",
  35321. image: {
  35322. source: "./media/characters/dee/back.svg",
  35323. extra: 2183/2058,
  35324. bottom: 75/2258
  35325. }
  35326. },
  35327. foot: {
  35328. height: math.unit(19.43, "feet"),
  35329. name: "Foot",
  35330. image: {
  35331. source: "./media/characters/dee/foot.svg"
  35332. }
  35333. },
  35334. hoof: {
  35335. height: math.unit(20.6, "feet"),
  35336. name: "Hoof",
  35337. image: {
  35338. source: "./media/characters/dee/hoof.svg"
  35339. }
  35340. },
  35341. },
  35342. [
  35343. {
  35344. name: "Macro",
  35345. height: math.unit(100, "feet"),
  35346. default: true
  35347. },
  35348. ]
  35349. ))
  35350. characterMakers.push(() => makeCharacter(
  35351. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35352. {
  35353. front: {
  35354. height: math.unit(5 + 6/12, "feet"),
  35355. name: "Front",
  35356. image: {
  35357. source: "./media/characters/teh/front.svg",
  35358. extra: 1002/847,
  35359. bottom: 62/1064
  35360. }
  35361. },
  35362. },
  35363. [
  35364. {
  35365. name: "Normal",
  35366. height: math.unit(5 + 6/12, "feet"),
  35367. default: true
  35368. },
  35369. ]
  35370. ))
  35371. characterMakers.push(() => makeCharacter(
  35372. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35373. {
  35374. side: {
  35375. height: math.unit(6 + 1/12, "feet"),
  35376. weight: math.unit(204, "lb"),
  35377. name: "Side",
  35378. image: {
  35379. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35380. extra: 974/775,
  35381. bottom: 169/1143
  35382. }
  35383. },
  35384. sitting: {
  35385. height: math.unit(6 + 2/12, "feet"),
  35386. weight: math.unit(204, "lb"),
  35387. name: "Sitting",
  35388. image: {
  35389. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35390. extra: 1175/964,
  35391. bottom: 378/1553
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(6 + 1/12, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(6, "inches"),
  35408. name: "Front",
  35409. image: {
  35410. source: "./media/characters/tululi/front.svg",
  35411. extra: 1997/1876,
  35412. bottom: 20/2017
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(6, "inches"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(4 + 1/12, "feet"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/star/front.svg",
  35432. extra: 1493/1189,
  35433. bottom: 48/1541
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(4 + 1/12, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(6 + 3/12, "feet"),
  35450. name: "Front",
  35451. image: {
  35452. source: "./media/characters/comet/front.svg",
  35453. extra: 1681/1462,
  35454. bottom: 26/1707
  35455. }
  35456. },
  35457. },
  35458. [
  35459. {
  35460. name: "Normal",
  35461. height: math.unit(6 + 3/12, "feet"),
  35462. default: true
  35463. },
  35464. ]
  35465. ))
  35466. characterMakers.push(() => makeCharacter(
  35467. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35468. {
  35469. front: {
  35470. height: math.unit(950, "feet"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/vortex/front.svg",
  35474. extra: 1497/1434,
  35475. bottom: 56/1553
  35476. }
  35477. },
  35478. maw: {
  35479. height: math.unit(285, "feet"),
  35480. name: "Maw",
  35481. image: {
  35482. source: "./media/characters/vortex/maw.svg"
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Macro",
  35489. height: math.unit(950, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. characterMakers.push(() => makeCharacter(
  35495. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35496. {
  35497. front: {
  35498. height: math.unit(600, "feet"),
  35499. weight: math.unit(0.02, "grams"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/doodle/front.svg",
  35503. extra: 1578/1413,
  35504. bottom: 37/1615
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Macro",
  35511. height: math.unit(600, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(6 + 6/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/jai/front.svg",
  35524. extra: 1645/1534,
  35525. bottom: 115/1760
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(6 + 6/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(6 + 8/12, "feet"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/pixel/front.svg",
  35545. extra: 1900/1735,
  35546. bottom: 63/1963
  35547. }
  35548. },
  35549. },
  35550. [
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(6 + 8/12, "feet"),
  35554. default: true
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35560. {
  35561. back: {
  35562. height: math.unit(4 + 1/12, "feet"),
  35563. weight: math.unit(75, "lb"),
  35564. name: "Back",
  35565. image: {
  35566. source: "./media/characters/rhett/back.svg",
  35567. extra: 930/878,
  35568. bottom: 25/955
  35569. }
  35570. },
  35571. front: {
  35572. height: math.unit(4 + 1/12, "feet"),
  35573. weight: math.unit(75, "lb"),
  35574. name: "Front",
  35575. image: {
  35576. source: "./media/characters/rhett/front.svg",
  35577. extra: 1682/1586,
  35578. bottom: 92/1774
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Micro",
  35585. height: math.unit(8, "inches")
  35586. },
  35587. {
  35588. name: "Tiny",
  35589. height: math.unit(2, "feet")
  35590. },
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(4 + 1/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(3 + 3/12, "feet"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/penny/front.svg",
  35606. extra: 1406/1311,
  35607. bottom: 26/1432
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(3 + 3/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(4 + 11/12, "feet"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/monty/front.svg",
  35627. extra: 1479/1209,
  35628. bottom: 0/1479
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(4 + 11/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(8 + 4/12, "feet"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/sterling/front.svg",
  35648. extra: 1420/1236,
  35649. bottom: 27/1447
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal",
  35656. height: math.unit(8 + 4/12, "feet"),
  35657. default: true
  35658. },
  35659. ]
  35660. ))
  35661. characterMakers.push(() => makeCharacter(
  35662. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35663. {
  35664. front: {
  35665. height: math.unit(15, "feet"),
  35666. name: "Front",
  35667. image: {
  35668. source: "./media/characters/marble/front.svg",
  35669. extra: 973/937,
  35670. bottom: 32/1005
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(15, "feet"),
  35678. default: true
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35684. {
  35685. front: {
  35686. height: math.unit(3, "inches"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/powder/front.svg",
  35690. extra: 1504/1334,
  35691. bottom: 518/2022
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(3, "inches"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(4 + 5/12, "feet"),
  35708. name: "Front",
  35709. image: {
  35710. source: "./media/characters/joey-raccoon/front.svg",
  35711. extra: 1273/1197,
  35712. bottom: 0/1273
  35713. }
  35714. },
  35715. },
  35716. [
  35717. {
  35718. name: "Normal",
  35719. height: math.unit(4 + 5/12, "feet"),
  35720. default: true
  35721. },
  35722. ]
  35723. ))
  35724. characterMakers.push(() => makeCharacter(
  35725. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35726. {
  35727. front: {
  35728. height: math.unit(8 + 4/12, "feet"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/vick/front.svg",
  35732. extra: 2187/2118,
  35733. bottom: 47/2234
  35734. }
  35735. },
  35736. },
  35737. [
  35738. {
  35739. name: "Normal",
  35740. height: math.unit(8 + 4/12, "feet"),
  35741. default: true
  35742. },
  35743. ]
  35744. ))
  35745. characterMakers.push(() => makeCharacter(
  35746. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35747. {
  35748. front: {
  35749. height: math.unit(5 + 5/12, "feet"),
  35750. name: "Front",
  35751. image: {
  35752. source: "./media/characters/mitsy/front.svg",
  35753. extra: 1842/1695,
  35754. bottom: 0/1842
  35755. }
  35756. },
  35757. },
  35758. [
  35759. {
  35760. name: "Normal",
  35761. height: math.unit(5 + 5/12, "feet"),
  35762. default: true
  35763. },
  35764. ]
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(6 + 3/12, "feet"),
  35771. name: "Front",
  35772. image: {
  35773. source: "./media/characters/silvy/front.svg",
  35774. extra: 1995/1836,
  35775. bottom: 225/2220
  35776. }
  35777. },
  35778. },
  35779. [
  35780. {
  35781. name: "Normal",
  35782. height: math.unit(6 + 3/12, "feet"),
  35783. default: true
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(3 + 8/12, "feet"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/rodney/front.svg",
  35795. extra: 1956/1747,
  35796. bottom: 31/1987
  35797. }
  35798. },
  35799. frontDressed: {
  35800. height: math.unit(2.9, "feet"),
  35801. name: "Front (Dressed)",
  35802. image: {
  35803. source: "./media/characters/rodney/front-dressed.svg",
  35804. extra: 1382/1241,
  35805. bottom: 385/1767
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(3 + 8/12, "feet"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35819. {
  35820. front: {
  35821. height: math.unit(5 + 9/12, "feet"),
  35822. weight: math.unit(194, "lbs"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/zakail-sudekai/front.svg",
  35826. extra: 2696/2533,
  35827. bottom: 248/2944
  35828. }
  35829. },
  35830. maw: {
  35831. height: math.unit(1.35, "feet"),
  35832. name: "Maw",
  35833. image: {
  35834. source: "./media/characters/zakail-sudekai/maw.svg"
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(5 + 9/12, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(8 + 4/12, "feet"),
  35851. weight: math.unit(1200, "lb"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/eleanor/front.svg",
  35855. extra: 1226/1192,
  35856. bottom: 52/1278
  35857. }
  35858. },
  35859. back: {
  35860. height: math.unit(8 + 4/12, "feet"),
  35861. weight: math.unit(1200, "lb"),
  35862. name: "Back",
  35863. image: {
  35864. source: "./media/characters/eleanor/back.svg",
  35865. extra: 1242/1184,
  35866. bottom: 60/1302
  35867. }
  35868. },
  35869. head: {
  35870. height: math.unit(2.62, "feet"),
  35871. name: "Head",
  35872. image: {
  35873. source: "./media/characters/eleanor/head.svg"
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(8 + 4/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(8 + 4/12, "feet"),
  35890. weight: math.unit(750, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/tanya/front.svg",
  35894. extra: 1749/1615,
  35895. bottom: 33/1782
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(8 + 4/12, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(5, "feet"),
  35912. weight: math.unit(225, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/cindy/front.svg",
  35916. extra: 1320/1250,
  35917. bottom: 42/1362
  35918. }
  35919. },
  35920. frontDressed: {
  35921. height: math.unit(5, "feet"),
  35922. weight: math.unit(225, "lb"),
  35923. name: "Front (Dressed)",
  35924. image: {
  35925. source: "./media/characters/cindy/front-dressed.svg",
  35926. extra: 1320/1250,
  35927. bottom: 42/1362
  35928. }
  35929. },
  35930. back: {
  35931. height: math.unit(5, "feet"),
  35932. weight: math.unit(225, "lb"),
  35933. name: "Back",
  35934. image: {
  35935. source: "./media/characters/cindy/back.svg",
  35936. extra: 1384/1346,
  35937. bottom: 14/1398
  35938. }
  35939. },
  35940. },
  35941. [
  35942. {
  35943. name: "Normal",
  35944. height: math.unit(5, "feet"),
  35945. default: true
  35946. },
  35947. ]
  35948. ))
  35949. characterMakers.push(() => makeCharacter(
  35950. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35951. {
  35952. front: {
  35953. height: math.unit(6 + 9/12, "feet"),
  35954. weight: math.unit(440, "lb"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/wilbur-owen/front.svg",
  35958. extra: 1575/1448,
  35959. bottom: 72/1647
  35960. }
  35961. },
  35962. back: {
  35963. height: math.unit(6 + 9/12, "feet"),
  35964. weight: math.unit(440, "lb"),
  35965. name: "Back",
  35966. image: {
  35967. source: "./media/characters/wilbur-owen/back.svg",
  35968. extra: 1578/1445,
  35969. bottom: 36/1614
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Normal",
  35976. height: math.unit(6 + 9/12, "feet"),
  35977. default: true
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(6 + 5/12, "feet"),
  35986. weight: math.unit(650, "lb"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/keegan/front.svg",
  35990. extra: 2387/2198,
  35991. bottom: 33/2420
  35992. }
  35993. },
  35994. side: {
  35995. height: math.unit(6 + 5/12, "feet"),
  35996. weight: math.unit(650, "lb"),
  35997. name: "Side",
  35998. image: {
  35999. source: "./media/characters/keegan/side.svg",
  36000. extra: 2390/2202,
  36001. bottom: 47/2437
  36002. }
  36003. },
  36004. back: {
  36005. height: math.unit(6 + 5/12, "feet"),
  36006. weight: math.unit(650, "lb"),
  36007. name: "Back",
  36008. image: {
  36009. source: "./media/characters/keegan/back.svg",
  36010. extra: 2418/2268,
  36011. bottom: 15/2433
  36012. }
  36013. },
  36014. frontSfw: {
  36015. height: math.unit(6 + 5/12, "feet"),
  36016. weight: math.unit(650, "lb"),
  36017. name: "Front (SFW)",
  36018. image: {
  36019. source: "./media/characters/keegan/front-sfw.svg",
  36020. extra: 2387/2198,
  36021. bottom: 33/2420
  36022. }
  36023. },
  36024. beans: {
  36025. height: math.unit(1.85, "feet"),
  36026. name: "Beans",
  36027. image: {
  36028. source: "./media/characters/keegan/beans.svg"
  36029. }
  36030. },
  36031. },
  36032. [
  36033. {
  36034. name: "Normal",
  36035. height: math.unit(6 + 5/12, "feet"),
  36036. default: true
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36042. {
  36043. front: {
  36044. height: math.unit(9, "feet"),
  36045. name: "Front",
  36046. image: {
  36047. source: "./media/characters/colton/front.svg",
  36048. extra: 1589/1326,
  36049. bottom: 139/1728
  36050. }
  36051. },
  36052. },
  36053. [
  36054. {
  36055. name: "Normal",
  36056. height: math.unit(9, "feet"),
  36057. default: true
  36058. },
  36059. ]
  36060. ))
  36061. characterMakers.push(() => makeCharacter(
  36062. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36063. {
  36064. front: {
  36065. height: math.unit(2 + 9/12, "feet"),
  36066. name: "Front",
  36067. image: {
  36068. source: "./media/characters/bora/front.svg",
  36069. extra: 1265/1250,
  36070. bottom: 24/1289
  36071. }
  36072. },
  36073. },
  36074. [
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(2 + 9/12, "feet"),
  36078. default: true
  36079. },
  36080. ]
  36081. ))
  36082. characterMakers.push(() => makeCharacter(
  36083. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36084. {
  36085. front: {
  36086. height: math.unit(8, "feet"),
  36087. name: "Front",
  36088. image: {
  36089. source: "./media/characters/myu-myu/front.svg",
  36090. extra: 1949/1857,
  36091. bottom: 90/2039
  36092. }
  36093. },
  36094. },
  36095. [
  36096. {
  36097. name: "Normal",
  36098. height: math.unit(8, "feet"),
  36099. default: true
  36100. },
  36101. {
  36102. name: "Big",
  36103. height: math.unit(15, "feet")
  36104. },
  36105. {
  36106. name: "BIG",
  36107. height: math.unit(25, "feet")
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36113. {
  36114. side: {
  36115. height: math.unit(7 + 5/12, "feet"),
  36116. weight: math.unit(2800, "lb"),
  36117. name: "Side",
  36118. image: {
  36119. source: "./media/characters/haloren/side.svg",
  36120. extra: 1793/409,
  36121. bottom: 59/1852
  36122. }
  36123. },
  36124. frontPaw: {
  36125. height: math.unit(2.36, "feet"),
  36126. name: "Front paw",
  36127. image: {
  36128. source: "./media/characters/haloren/front-paw.svg"
  36129. }
  36130. },
  36131. hindPaw: {
  36132. height: math.unit(3.18, "feet"),
  36133. name: "Hind paw",
  36134. image: {
  36135. source: "./media/characters/haloren/hind-paw.svg"
  36136. }
  36137. },
  36138. maw: {
  36139. height: math.unit(5.05, "feet"),
  36140. name: "Maw",
  36141. image: {
  36142. source: "./media/characters/haloren/maw.svg"
  36143. }
  36144. },
  36145. dick: {
  36146. height: math.unit(2.90, "feet"),
  36147. name: "Dick",
  36148. image: {
  36149. source: "./media/characters/haloren/dick.svg"
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(7 + 5/12, "feet"),
  36157. default: true
  36158. },
  36159. {
  36160. name: "Enhanced",
  36161. height: math.unit(14 + 3/12, "feet")
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(171, "cm"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/kimmy/front.svg",
  36173. extra: 1491/1435,
  36174. bottom: 53/1544
  36175. }
  36176. },
  36177. },
  36178. [
  36179. {
  36180. name: "Small",
  36181. height: math.unit(9, "cm")
  36182. },
  36183. {
  36184. name: "Normal",
  36185. height: math.unit(171, "cm"),
  36186. default: true
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36192. {
  36193. front: {
  36194. height: math.unit(8, "feet"),
  36195. weight: math.unit(300, "lb"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/galeboomer/front.svg",
  36199. extra: 4651/4415,
  36200. bottom: 162/4813
  36201. }
  36202. },
  36203. back: {
  36204. height: math.unit(8, "feet"),
  36205. weight: math.unit(300, "lb"),
  36206. name: "Back",
  36207. image: {
  36208. source: "./media/characters/galeboomer/back.svg",
  36209. extra: 4544/4314,
  36210. bottom: 16/4560
  36211. }
  36212. },
  36213. frontAlt: {
  36214. height: math.unit(8, "feet"),
  36215. weight: math.unit(300, "lb"),
  36216. name: "Front (Alt)",
  36217. image: {
  36218. source: "./media/characters/galeboomer/front-alt.svg",
  36219. extra: 4458/4228,
  36220. bottom: 68/4526
  36221. }
  36222. },
  36223. maw: {
  36224. height: math.unit(1.2, "feet"),
  36225. name: "Maw",
  36226. image: {
  36227. source: "./media/characters/galeboomer/maw.svg"
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(8, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36241. {
  36242. front: {
  36243. height: math.unit(5 + 9/12, "feet"),
  36244. weight: math.unit(120, "lb"),
  36245. name: "Front",
  36246. image: {
  36247. source: "./media/characters/chyr/front.svg",
  36248. extra: 1323/1254,
  36249. bottom: 63/1386
  36250. }
  36251. },
  36252. back: {
  36253. height: math.unit(5 + 9/12, "feet"),
  36254. weight: math.unit(120, "lb"),
  36255. name: "Back",
  36256. image: {
  36257. source: "./media/characters/chyr/back.svg",
  36258. extra: 1323/1252,
  36259. bottom: 48/1371
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(5 + 9/12, "feet"),
  36267. default: true
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(7, "feet"),
  36276. weight: math.unit(310, "lb"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/solarus/front.svg",
  36280. extra: 2415/2021,
  36281. bottom: 103/2518
  36282. }
  36283. },
  36284. back: {
  36285. height: math.unit(7, "feet"),
  36286. weight: math.unit(310, "lb"),
  36287. name: "Back",
  36288. image: {
  36289. source: "./media/characters/solarus/back.svg",
  36290. extra: 2463/2089,
  36291. bottom: 79/2542
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(7, "feet"),
  36299. default: true
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36305. {
  36306. front: {
  36307. height: math.unit(16, "feet"),
  36308. name: "Front",
  36309. image: {
  36310. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36311. extra: 1844/1780,
  36312. bottom: 58/1902
  36313. }
  36314. },
  36315. winterCoat: {
  36316. height: math.unit(16, "feet"),
  36317. name: "Winter Coat",
  36318. image: {
  36319. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36320. extra: 1807/1775,
  36321. bottom: 69/1876
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(16, "feet"),
  36329. default: true
  36330. },
  36331. {
  36332. name: "Chicago Size",
  36333. height: math.unit(560, "feet")
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(11 + 6/12, "feet"),
  36342. weight: math.unit(1366, "lb"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/lexor/front.svg",
  36346. extra: 1560/1481,
  36347. bottom: 211/1771
  36348. }
  36349. },
  36350. back: {
  36351. height: math.unit(11 + 6/12, "feet"),
  36352. weight: math.unit(1366, "lb"),
  36353. name: "Back",
  36354. image: {
  36355. source: "./media/characters/lexor/back.svg",
  36356. extra: 1614/1533,
  36357. bottom: 76/1690
  36358. }
  36359. },
  36360. maw: {
  36361. height: math.unit(3, "feet"),
  36362. name: "Maw",
  36363. image: {
  36364. source: "./media/characters/lexor/maw.svg"
  36365. }
  36366. },
  36367. dick: {
  36368. height: math.unit(2.59, "feet"),
  36369. name: "Dick",
  36370. image: {
  36371. source: "./media/characters/lexor/dick.svg"
  36372. }
  36373. },
  36374. },
  36375. [
  36376. {
  36377. name: "Normal",
  36378. height: math.unit(11 + 6/12, "feet"),
  36379. default: true
  36380. },
  36381. ]
  36382. ))
  36383. characterMakers.push(() => makeCharacter(
  36384. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36385. {
  36386. front: {
  36387. height: math.unit(5 + 8/12, "feet"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/magnum/front.svg",
  36391. extra: 942/855,
  36392. bottom: 26/968
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(5 + 8/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(18 + 4/12, "feet"),
  36409. weight: math.unit(1500, "kg"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/solas-sharpsman/front.svg",
  36413. extra: 1698/1589,
  36414. bottom: 0/1698
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(18 + 4/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(5 + 5/12, "feet"),
  36431. weight: math.unit(180, "lb"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/october/front.svg",
  36435. extra: 1800/1650,
  36436. bottom: 0/1800
  36437. }
  36438. },
  36439. frontNsfw: {
  36440. height: math.unit(5 + 5/12, "feet"),
  36441. weight: math.unit(180, "lb"),
  36442. name: "Front (NSFW)",
  36443. image: {
  36444. source: "./media/characters/october/front-nsfw.svg",
  36445. extra: 1392/1307,
  36446. bottom: 42/1434
  36447. }
  36448. },
  36449. },
  36450. [
  36451. {
  36452. name: "Normal",
  36453. height: math.unit(5 + 5/12, "feet"),
  36454. default: true
  36455. },
  36456. ]
  36457. ))
  36458. characterMakers.push(() => makeCharacter(
  36459. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36460. {
  36461. front: {
  36462. height: math.unit(8 + 6/12, "feet"),
  36463. name: "Front",
  36464. image: {
  36465. source: "./media/characters/essynkardi/front.svg",
  36466. extra: 1914/1846,
  36467. bottom: 22/1936
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(8 + 6/12, "feet"),
  36475. default: true
  36476. },
  36477. ]
  36478. ))
  36479. characterMakers.push(() => makeCharacter(
  36480. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36481. {
  36482. front: {
  36483. height: math.unit(6 + 6/12, "feet"),
  36484. weight: math.unit(7, "lb"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/icky/front.svg",
  36488. extra: 813/782,
  36489. bottom: 66/879
  36490. }
  36491. },
  36492. back: {
  36493. height: math.unit(6 + 6/12, "feet"),
  36494. weight: math.unit(7, "lb"),
  36495. name: "Back",
  36496. image: {
  36497. source: "./media/characters/icky/back.svg",
  36498. extra: 754/735,
  36499. bottom: 56/810
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(6 + 6/12, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(15, "feet"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/rojas/front.svg",
  36519. extra: 1462/1408,
  36520. bottom: 95/1557
  36521. }
  36522. },
  36523. back: {
  36524. height: math.unit(15, "feet"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/rojas/back.svg",
  36528. extra: 1023/954,
  36529. bottom: 28/1051
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(15, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36543. {
  36544. frontHuman: {
  36545. height: math.unit(5 + 7/12, "feet"),
  36546. name: "Front (Human)",
  36547. image: {
  36548. source: "./media/characters/alek-dryagan/front-human.svg",
  36549. extra: 1687/1667,
  36550. bottom: 69/1756
  36551. }
  36552. },
  36553. backHuman: {
  36554. height: math.unit(5 + 7/12, "feet"),
  36555. name: "Back (Human)",
  36556. image: {
  36557. source: "./media/characters/alek-dryagan/back-human.svg",
  36558. extra: 1670/1649,
  36559. bottom: 65/1735
  36560. }
  36561. },
  36562. frontDemi: {
  36563. height: math.unit(65, "feet"),
  36564. name: "Front (Demi)",
  36565. image: {
  36566. source: "./media/characters/alek-dryagan/front-demi.svg",
  36567. extra: 1669/1642,
  36568. bottom: 49/1718
  36569. }
  36570. },
  36571. backDemi: {
  36572. height: math.unit(65, "feet"),
  36573. name: "Back (Demi)",
  36574. image: {
  36575. source: "./media/characters/alek-dryagan/back-demi.svg",
  36576. extra: 1658/1637,
  36577. bottom: 40/1698
  36578. }
  36579. },
  36580. mawHuman: {
  36581. height: math.unit(0.3, "feet"),
  36582. name: "Maw (Human)",
  36583. image: {
  36584. source: "./media/characters/alek-dryagan/maw-human.svg"
  36585. }
  36586. },
  36587. mawDemi: {
  36588. height: math.unit(3.8, "feet"),
  36589. name: "Maw (Demi)",
  36590. image: {
  36591. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(5 + 7/12, "feet"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36605. {
  36606. frontHuman: {
  36607. height: math.unit(5 + 2/12, "feet"),
  36608. name: "Front (Human)",
  36609. image: {
  36610. source: "./media/characters/gen/front-human.svg",
  36611. extra: 1627/1538,
  36612. bottom: 71/1698
  36613. }
  36614. },
  36615. backHuman: {
  36616. height: math.unit(5 + 2/12, "feet"),
  36617. name: "Back (Human)",
  36618. image: {
  36619. source: "./media/characters/gen/back-human.svg",
  36620. extra: 1638/1548,
  36621. bottom: 69/1707
  36622. }
  36623. },
  36624. frontDemi: {
  36625. height: math.unit(5 + 2/12, "feet"),
  36626. name: "Front (Demi)",
  36627. image: {
  36628. source: "./media/characters/gen/front-demi.svg",
  36629. extra: 1627/1538,
  36630. bottom: 71/1698
  36631. }
  36632. },
  36633. backDemi: {
  36634. height: math.unit(5 + 2/12, "feet"),
  36635. name: "Back (Demi)",
  36636. image: {
  36637. source: "./media/characters/gen/back-demi.svg",
  36638. extra: 1638/1548,
  36639. bottom: 69/1707
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(5 + 2/12, "feet"),
  36647. default: true
  36648. },
  36649. ]
  36650. ))
  36651. characterMakers.push(() => makeCharacter(
  36652. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36653. {
  36654. frontImp: {
  36655. height: math.unit(1 + 11/12, "feet"),
  36656. name: "Front (Imp)",
  36657. image: {
  36658. source: "./media/characters/max-kobold/front-imp.svg",
  36659. extra: 1238/1134,
  36660. bottom: 81/1319
  36661. }
  36662. },
  36663. backImp: {
  36664. height: math.unit(1 + 11/12, "feet"),
  36665. name: "Back (Imp)",
  36666. image: {
  36667. source: "./media/characters/max-kobold/back-imp.svg",
  36668. extra: 1334/1175,
  36669. bottom: 34/1368
  36670. }
  36671. },
  36672. frontDemi: {
  36673. height: math.unit(5 + 9/12, "feet"),
  36674. name: "Front (Demi)",
  36675. image: {
  36676. source: "./media/characters/max-kobold/front-demi.svg",
  36677. extra: 1715/1685,
  36678. bottom: 54/1769
  36679. }
  36680. },
  36681. backDemi: {
  36682. height: math.unit(5 + 9/12, "feet"),
  36683. name: "Back (Demi)",
  36684. image: {
  36685. source: "./media/characters/max-kobold/back-demi.svg",
  36686. extra: 1752/1729,
  36687. bottom: 41/1793
  36688. }
  36689. },
  36690. handImp: {
  36691. height: math.unit(0.45, "feet"),
  36692. name: "Hand (Imp)",
  36693. image: {
  36694. source: "./media/characters/max-kobold/hand.svg"
  36695. }
  36696. },
  36697. pawImp: {
  36698. height: math.unit(0.46, "feet"),
  36699. name: "Paw (Imp)",
  36700. image: {
  36701. source: "./media/characters/max-kobold/paw.svg"
  36702. }
  36703. },
  36704. handDemi: {
  36705. height: math.unit(0.80, "feet"),
  36706. name: "Hand (Demi)",
  36707. image: {
  36708. source: "./media/characters/max-kobold/hand.svg"
  36709. }
  36710. },
  36711. pawDemi: {
  36712. height: math.unit(1.1, "feet"),
  36713. name: "Paw (Demi)",
  36714. image: {
  36715. source: "./media/characters/max-kobold/paw.svg"
  36716. }
  36717. },
  36718. headImp: {
  36719. height: math.unit(1.33, "feet"),
  36720. name: "Head (Imp)",
  36721. image: {
  36722. source: "./media/characters/max-kobold/head-imp.svg"
  36723. }
  36724. },
  36725. mawImp: {
  36726. height: math.unit(0.75, "feet"),
  36727. name: "Maw (Imp)",
  36728. image: {
  36729. source: "./media/characters/max-kobold/maw-imp.svg"
  36730. }
  36731. },
  36732. mawDemi: {
  36733. height: math.unit(0.42, "feet"),
  36734. name: "Maw (Demi)",
  36735. image: {
  36736. source: "./media/characters/max-kobold/maw-demi.svg"
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(1 + 11/12, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(7 + 5/12, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/carbon/front.svg",
  36756. extra: 1754/1689,
  36757. bottom: 65/1819
  36758. }
  36759. },
  36760. back: {
  36761. height: math.unit(7 + 5/12, "feet"),
  36762. name: "Back",
  36763. image: {
  36764. source: "./media/characters/carbon/back.svg",
  36765. extra: 1762/1695,
  36766. bottom: 24/1786
  36767. }
  36768. },
  36769. frontGigantamax: {
  36770. height: math.unit(150, "feet"),
  36771. name: "Front (Gigantamax)",
  36772. image: {
  36773. source: "./media/characters/carbon/front-gigantamax.svg",
  36774. extra: 1826/1669,
  36775. bottom: 59/1885
  36776. }
  36777. },
  36778. backGigantamax: {
  36779. height: math.unit(150, "feet"),
  36780. name: "Back (Gigantamax)",
  36781. image: {
  36782. source: "./media/characters/carbon/back-gigantamax.svg",
  36783. extra: 1796/1653,
  36784. bottom: 53/1849
  36785. }
  36786. },
  36787. maw: {
  36788. height: math.unit(0.48, "feet"),
  36789. name: "Maw",
  36790. image: {
  36791. source: "./media/characters/carbon/maw.svg"
  36792. }
  36793. },
  36794. mawGigantamax: {
  36795. height: math.unit(7.5, "feet"),
  36796. name: "Maw (Gigantamax)",
  36797. image: {
  36798. source: "./media/characters/carbon/maw-gigantamax.svg"
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(7 + 5/12, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(6, "feet"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/maverick/front.svg",
  36818. extra: 1672/1661,
  36819. bottom: 85/1757
  36820. }
  36821. },
  36822. back: {
  36823. height: math.unit(6, "feet"),
  36824. name: "Back",
  36825. image: {
  36826. source: "./media/characters/maverick/back.svg",
  36827. extra: 1642/1631,
  36828. bottom: 38/1680
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(6, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(15, "feet"),
  36845. weight: math.unit(615, "lb"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/grockle/front.svg",
  36849. extra: 1535/1427,
  36850. bottom: 56/1591
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(15, "feet"),
  36858. default: true
  36859. },
  36860. {
  36861. name: "Large",
  36862. height: math.unit(150, "feet")
  36863. },
  36864. {
  36865. name: "Macro",
  36866. height: math.unit(1876, "feet")
  36867. },
  36868. {
  36869. name: "Mega Macro",
  36870. height: math.unit(121940, "feet")
  36871. },
  36872. {
  36873. name: "Giga Macro",
  36874. height: math.unit(750, "km")
  36875. },
  36876. {
  36877. name: "Tera Macro",
  36878. height: math.unit(750000, "km")
  36879. },
  36880. {
  36881. name: "Galactic",
  36882. height: math.unit(1.4e5, "km")
  36883. },
  36884. {
  36885. name: "Godlike",
  36886. height: math.unit(9.8e280, "galaxies")
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(11, "meters"),
  36895. weight: math.unit(20, "tonnes"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/alistair/front.svg",
  36899. extra: 1265/1009,
  36900. bottom: 93/1358
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(11, "meters"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(5 + 8/12, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/haruka/front.svg",
  36920. extra: 2012/1952,
  36921. bottom: 0/2012
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(5 + 8/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36935. {
  36936. back: {
  36937. height: math.unit(9, "feet"),
  36938. name: "Back",
  36939. image: {
  36940. source: "./media/characters/vivian-sylveon/back.svg",
  36941. extra: 1853/1714,
  36942. bottom: 0/1853
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(9, "feet"),
  36950. default: true
  36951. },
  36952. {
  36953. name: "Macro",
  36954. height: math.unit(500, "feet")
  36955. },
  36956. {
  36957. name: "Megamacro",
  36958. height: math.unit(600, "miles")
  36959. },
  36960. {
  36961. name: "Gigamacro",
  36962. height: math.unit(30000, "miles")
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36968. {
  36969. anthro: {
  36970. height: math.unit(5 + 10/12, "feet"),
  36971. weight: math.unit(100, "lb"),
  36972. name: "Anthro",
  36973. image: {
  36974. source: "./media/characters/daiki/anthro.svg",
  36975. extra: 1115/1027,
  36976. bottom: 69/1184
  36977. }
  36978. },
  36979. feral: {
  36980. height: math.unit(200, "feet"),
  36981. name: "Feral",
  36982. image: {
  36983. source: "./media/characters/daiki/feral.svg",
  36984. extra: 1256/313,
  36985. bottom: 39/1295
  36986. }
  36987. },
  36988. feralHead: {
  36989. height: math.unit(171, "feet"),
  36990. name: "Feral Head",
  36991. image: {
  36992. source: "./media/characters/daiki/feral-head.svg"
  36993. }
  36994. },
  36995. manaDragon: {
  36996. height: math.unit(170, "meters"),
  36997. name: "Mana-dragon",
  36998. image: {
  36999. source: "./media/characters/daiki/mana-dragon.svg",
  37000. extra: 763/420,
  37001. bottom: 97/860
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(5 + 10/12, "feet"),
  37009. default: true
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37015. {
  37016. fullyEquippedFront: {
  37017. height: math.unit(3 + 1/12, "feet"),
  37018. weight: math.unit(24, "lb"),
  37019. name: "Fully Equipped (Front)",
  37020. image: {
  37021. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37022. extra: 687/605,
  37023. bottom: 18/705
  37024. }
  37025. },
  37026. fullyEquippedBack: {
  37027. height: math.unit(3 + 1/12, "feet"),
  37028. weight: math.unit(24, "lb"),
  37029. name: "Fully Equipped (Back)",
  37030. image: {
  37031. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37032. extra: 689/590,
  37033. bottom: 18/707
  37034. }
  37035. },
  37036. dailyWear: {
  37037. height: math.unit(3 + 1/12, "feet"),
  37038. weight: math.unit(24, "lb"),
  37039. name: "Daily Wear",
  37040. image: {
  37041. source: "./media/characters/tea-spot/daily-wear.svg",
  37042. extra: 701/620,
  37043. bottom: 21/722
  37044. }
  37045. },
  37046. maidWork: {
  37047. height: math.unit(3 + 1/12, "feet"),
  37048. weight: math.unit(24, "lb"),
  37049. name: "Maid Work",
  37050. image: {
  37051. source: "./media/characters/tea-spot/maid-work.svg",
  37052. extra: 693/609,
  37053. bottom: 15/708
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(3 + 1/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(175, "cm"),
  37070. weight: math.unit(75, "kg"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/chee/front.svg",
  37074. extra: 1796/1740,
  37075. bottom: 40/1836
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Micro-Micro",
  37082. height: math.unit(1, "nm")
  37083. },
  37084. {
  37085. name: "Micro-erst",
  37086. height: math.unit(1, "micrometer")
  37087. },
  37088. {
  37089. name: "Micro-er",
  37090. height: math.unit(1, "cm")
  37091. },
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(175, "cm"),
  37095. default: true
  37096. },
  37097. {
  37098. name: "Macro",
  37099. height: math.unit(100, "m")
  37100. },
  37101. {
  37102. name: "Macro-er",
  37103. height: math.unit(1, "km")
  37104. },
  37105. {
  37106. name: "Macro-erst",
  37107. height: math.unit(10, "km")
  37108. },
  37109. {
  37110. name: "Macro-Macro",
  37111. height: math.unit(100, "km")
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(11 + 9/12, "feet"),
  37120. weight: math.unit(935, "lb"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/kingsley/front.svg",
  37124. extra: 1803/1674,
  37125. bottom: 127/1930
  37126. }
  37127. },
  37128. frontNude: {
  37129. height: math.unit(11 + 9/12, "feet"),
  37130. weight: math.unit(935, "lb"),
  37131. name: "Front (Nude)",
  37132. image: {
  37133. source: "./media/characters/kingsley/front-nude.svg",
  37134. extra: 1803/1674,
  37135. bottom: 127/1930
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(11 + 9/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37149. {
  37150. side: {
  37151. height: math.unit(9, "feet"),
  37152. name: "Side",
  37153. image: {
  37154. source: "./media/characters/rymel/side.svg",
  37155. extra: 792/469,
  37156. bottom: 121/913
  37157. }
  37158. },
  37159. maw: {
  37160. height: math.unit(2.4, "meters"),
  37161. name: "Maw",
  37162. image: {
  37163. source: "./media/characters/rymel/maw.svg"
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "House Drake",
  37170. height: math.unit(2, "feet")
  37171. },
  37172. {
  37173. name: "Reduced",
  37174. height: math.unit(4.5, "feet")
  37175. },
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(9, "feet"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(1.74, "meters"),
  37188. weight: math.unit(55, "kg"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/rubus/front.svg",
  37192. extra: 1894/1742,
  37193. bottom: 44/1938
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(1.74, "meters"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(5 + 2/12, "feet"),
  37210. weight: math.unit(112, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/cassie-kingston/front.svg",
  37214. extra: 1438/1390,
  37215. bottom: 47/1485
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(5 + 2/12, "feet"),
  37223. default: true
  37224. },
  37225. {
  37226. name: "Macro",
  37227. height: math.unit(128, "feet")
  37228. },
  37229. {
  37230. name: "Megamacro",
  37231. height: math.unit(2.56, "miles")
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(7, "feet"),
  37240. name: "Front",
  37241. image: {
  37242. source: "./media/characters/fox/front.svg",
  37243. extra: 1798/1703,
  37244. bottom: 55/1853
  37245. }
  37246. },
  37247. back: {
  37248. height: math.unit(7, "feet"),
  37249. name: "Back",
  37250. image: {
  37251. source: "./media/characters/fox/back.svg",
  37252. extra: 1748/1649,
  37253. bottom: 32/1780
  37254. }
  37255. },
  37256. head: {
  37257. height: math.unit(1.95, "feet"),
  37258. name: "Head",
  37259. image: {
  37260. source: "./media/characters/fox/head.svg"
  37261. }
  37262. },
  37263. dick: {
  37264. height: math.unit(1.33, "feet"),
  37265. name: "Dick",
  37266. image: {
  37267. source: "./media/characters/fox/dick.svg"
  37268. }
  37269. },
  37270. foot: {
  37271. height: math.unit(1, "feet"),
  37272. name: "Foot",
  37273. image: {
  37274. source: "./media/characters/fox/foot.svg"
  37275. }
  37276. },
  37277. paw: {
  37278. height: math.unit(0.92, "feet"),
  37279. name: "Paw",
  37280. image: {
  37281. source: "./media/characters/fox/paw.svg"
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Small",
  37288. height: math.unit(3, "inches")
  37289. },
  37290. {
  37291. name: "\"Realistic\"",
  37292. height: math.unit(7, "feet")
  37293. },
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(150, "feet"),
  37297. default: true
  37298. },
  37299. {
  37300. name: "BIG",
  37301. height: math.unit(1200, "feet")
  37302. },
  37303. {
  37304. name: "👀",
  37305. height: math.unit(5, "miles")
  37306. },
  37307. {
  37308. name: "👀👀👀",
  37309. height: math.unit(64, "miles")
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(625, "feet"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/asonja-rossa/front.svg",
  37321. extra: 1833/1686,
  37322. bottom: 24/1857
  37323. }
  37324. },
  37325. back: {
  37326. height: math.unit(625, "feet"),
  37327. name: "Back",
  37328. image: {
  37329. source: "./media/characters/asonja-rossa/back.svg",
  37330. extra: 1852/1753,
  37331. bottom: 26/1878
  37332. }
  37333. },
  37334. },
  37335. [
  37336. {
  37337. name: "Macro",
  37338. height: math.unit(625, "feet"),
  37339. default: true
  37340. },
  37341. ]
  37342. ))
  37343. characterMakers.push(() => makeCharacter(
  37344. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37345. {
  37346. side: {
  37347. height: math.unit(8, "feet"),
  37348. name: "Side",
  37349. image: {
  37350. source: "./media/characters/rezukii/side.svg",
  37351. extra: 979/542,
  37352. bottom: 87/1066
  37353. }
  37354. },
  37355. sitting: {
  37356. height: math.unit(14.6, "feet"),
  37357. name: "Sitting",
  37358. image: {
  37359. source: "./media/characters/rezukii/sitting.svg",
  37360. extra: 1023/813,
  37361. bottom: 45/1068
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Tiny",
  37368. height: math.unit(2, "feet")
  37369. },
  37370. {
  37371. name: "Smol",
  37372. height: math.unit(4, "feet")
  37373. },
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(8, "feet"),
  37377. default: true
  37378. },
  37379. {
  37380. name: "Big",
  37381. height: math.unit(12, "feet")
  37382. },
  37383. {
  37384. name: "Macro",
  37385. height: math.unit(30, "feet")
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(14, "feet"),
  37394. weight: math.unit(9.5, "tonnes"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/dawnheart/front.svg",
  37398. extra: 2792/2675,
  37399. bottom: 64/2856
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(14, "feet"),
  37407. default: true
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37413. {
  37414. front: {
  37415. height: math.unit(1.7, "m"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/gladi/front.svg",
  37419. extra: 1460/1362,
  37420. bottom: 19/1479
  37421. }
  37422. },
  37423. back: {
  37424. height: math.unit(1.7, "m"),
  37425. name: "Back",
  37426. image: {
  37427. source: "./media/characters/gladi/back.svg",
  37428. extra: 1459/1357,
  37429. bottom: 12/1471
  37430. }
  37431. },
  37432. feral: {
  37433. height: math.unit(2.05, "m"),
  37434. name: "Feral",
  37435. image: {
  37436. source: "./media/characters/gladi/feral.svg",
  37437. extra: 821/557,
  37438. bottom: 91/912
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Shortest",
  37445. height: math.unit(70, "cm")
  37446. },
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(1.7, "m")
  37450. },
  37451. {
  37452. name: "Macro",
  37453. height: math.unit(10, "m"),
  37454. default: true
  37455. },
  37456. {
  37457. name: "Tallest",
  37458. height: math.unit(200, "m")
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(5 + 7/12, "feet"),
  37467. weight: math.unit(2, "tons"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/erdno/front.svg",
  37471. extra: 1234/1129,
  37472. bottom: 35/1269
  37473. }
  37474. },
  37475. angled: {
  37476. height: math.unit(5 + 7/12, "feet"),
  37477. weight: math.unit(2, "tons"),
  37478. name: "Angled",
  37479. image: {
  37480. source: "./media/characters/erdno/angled.svg",
  37481. extra: 1185/1139,
  37482. bottom: 36/1221
  37483. }
  37484. },
  37485. side: {
  37486. height: math.unit(5 + 7/12, "feet"),
  37487. weight: math.unit(2, "tons"),
  37488. name: "Side",
  37489. image: {
  37490. source: "./media/characters/erdno/side.svg",
  37491. extra: 1191/1144,
  37492. bottom: 40/1231
  37493. }
  37494. },
  37495. back: {
  37496. height: math.unit(5 + 7/12, "feet"),
  37497. weight: math.unit(2, "tons"),
  37498. name: "Back",
  37499. image: {
  37500. source: "./media/characters/erdno/back.svg",
  37501. extra: 1202/1146,
  37502. bottom: 17/1219
  37503. }
  37504. },
  37505. frontNsfw: {
  37506. height: math.unit(5 + 7/12, "feet"),
  37507. weight: math.unit(2, "tons"),
  37508. name: "Front (NSFW)",
  37509. image: {
  37510. source: "./media/characters/erdno/front-nsfw.svg",
  37511. extra: 1234/1129,
  37512. bottom: 35/1269
  37513. }
  37514. },
  37515. angledNsfw: {
  37516. height: math.unit(5 + 7/12, "feet"),
  37517. weight: math.unit(2, "tons"),
  37518. name: "Angled (NSFW)",
  37519. image: {
  37520. source: "./media/characters/erdno/angled-nsfw.svg",
  37521. extra: 1185/1139,
  37522. bottom: 36/1221
  37523. }
  37524. },
  37525. sideNsfw: {
  37526. height: math.unit(5 + 7/12, "feet"),
  37527. weight: math.unit(2, "tons"),
  37528. name: "Side (NSFW)",
  37529. image: {
  37530. source: "./media/characters/erdno/side-nsfw.svg",
  37531. extra: 1191/1144,
  37532. bottom: 40/1231
  37533. }
  37534. },
  37535. backNsfw: {
  37536. height: math.unit(5 + 7/12, "feet"),
  37537. weight: math.unit(2, "tons"),
  37538. name: "Back (NSFW)",
  37539. image: {
  37540. source: "./media/characters/erdno/back-nsfw.svg",
  37541. extra: 1202/1146,
  37542. bottom: 17/1219
  37543. }
  37544. },
  37545. frontHyper: {
  37546. height: math.unit(5 + 7/12, "feet"),
  37547. weight: math.unit(2, "tons"),
  37548. name: "Front (Hyper)",
  37549. image: {
  37550. source: "./media/characters/erdno/front-hyper.svg",
  37551. extra: 1298/1136,
  37552. bottom: 35/1333
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(5 + 7/12, "feet"),
  37560. default: true
  37561. },
  37562. {
  37563. name: "Big",
  37564. height: math.unit(5.7, "meters")
  37565. },
  37566. {
  37567. name: "Macro",
  37568. height: math.unit(5.7, "kilometers")
  37569. },
  37570. {
  37571. name: "Megamacro",
  37572. height: math.unit(5.7, "earths")
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(5 + 10/12, "feet"),
  37581. weight: math.unit(150, "lb"),
  37582. name: "Front",
  37583. image: {
  37584. source: "./media/characters/jamie/front.svg",
  37585. extra: 1908/1768,
  37586. bottom: 19/1927
  37587. }
  37588. },
  37589. },
  37590. [
  37591. {
  37592. name: "Minimum",
  37593. height: math.unit(2, "cm")
  37594. },
  37595. {
  37596. name: "Micro",
  37597. height: math.unit(3, "inches")
  37598. },
  37599. {
  37600. name: "Normal",
  37601. height: math.unit(5 + 10/12, "feet"),
  37602. default: true
  37603. },
  37604. {
  37605. name: "Macro",
  37606. height: math.unit(150, "feet")
  37607. },
  37608. {
  37609. name: "Megamacro",
  37610. height: math.unit(10000, "m")
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37616. {
  37617. front: {
  37618. height: math.unit(2, "meters"),
  37619. weight: math.unit(100, "kg"),
  37620. name: "Front",
  37621. image: {
  37622. source: "./media/characters/shiron/front.svg",
  37623. extra: 2103/1985,
  37624. bottom: 98/2201
  37625. }
  37626. },
  37627. back: {
  37628. height: math.unit(2, "meters"),
  37629. weight: math.unit(100, "kg"),
  37630. name: "Back",
  37631. image: {
  37632. source: "./media/characters/shiron/back.svg",
  37633. extra: 2110/2015,
  37634. bottom: 89/2199
  37635. }
  37636. },
  37637. hand: {
  37638. height: math.unit(0.96, "feet"),
  37639. name: "Hand",
  37640. image: {
  37641. source: "./media/characters/shiron/hand.svg"
  37642. }
  37643. },
  37644. foot: {
  37645. height: math.unit(1.464, "feet"),
  37646. name: "Foot",
  37647. image: {
  37648. source: "./media/characters/shiron/foot.svg"
  37649. }
  37650. },
  37651. },
  37652. [
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(2, "meters")
  37656. },
  37657. {
  37658. name: "Macro",
  37659. height: math.unit(500, "meters"),
  37660. default: true
  37661. },
  37662. {
  37663. name: "Megamacro",
  37664. height: math.unit(20, "km")
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(6, "feet"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/sam/front.svg",
  37676. extra: 849/826,
  37677. bottom: 19/868
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(6, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(8 + 4/12, "feet"),
  37694. weight: math.unit(122, "kg"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/namori-kurogawa/front.svg",
  37698. extra: 1894/1576,
  37699. bottom: 34/1928
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(8 + 4/12, "feet"),
  37707. default: true
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(9, "feet"),
  37716. weight: math.unit(621, "lb"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/unmru/front.svg",
  37720. extra: 1853/1747,
  37721. bottom: 73/1926
  37722. }
  37723. },
  37724. side: {
  37725. height: math.unit(9, "feet"),
  37726. weight: math.unit(621, "lb"),
  37727. name: "Side",
  37728. image: {
  37729. source: "./media/characters/unmru/side.svg",
  37730. extra: 1781/1671,
  37731. bottom: 127/1908
  37732. }
  37733. },
  37734. back: {
  37735. height: math.unit(9, "feet"),
  37736. weight: math.unit(621, "lb"),
  37737. name: "Back",
  37738. image: {
  37739. source: "./media/characters/unmru/back.svg",
  37740. extra: 1894/1765,
  37741. bottom: 75/1969
  37742. }
  37743. },
  37744. dick: {
  37745. height: math.unit(3, "feet"),
  37746. weight: math.unit(35, "lb"),
  37747. name: "Dick",
  37748. image: {
  37749. source: "./media/characters/unmru/dick.svg"
  37750. }
  37751. },
  37752. },
  37753. [
  37754. {
  37755. name: "Normal",
  37756. height: math.unit(9, "feet")
  37757. },
  37758. {
  37759. name: "Natural",
  37760. height: math.unit(27, "feet"),
  37761. default: true
  37762. },
  37763. {
  37764. name: "Giant",
  37765. height: math.unit(90, "feet")
  37766. },
  37767. {
  37768. name: "Kaiju",
  37769. height: math.unit(270, "feet")
  37770. },
  37771. {
  37772. name: "Macro",
  37773. height: math.unit(900, "feet")
  37774. },
  37775. {
  37776. name: "Macro+",
  37777. height: math.unit(2700, "feet")
  37778. },
  37779. {
  37780. name: "Megamacro",
  37781. height: math.unit(9000, "feet")
  37782. },
  37783. {
  37784. name: "City-Crushing",
  37785. height: math.unit(27000, "feet")
  37786. },
  37787. {
  37788. name: "Mountain-Mashing",
  37789. height: math.unit(90000, "feet")
  37790. },
  37791. {
  37792. name: "Earth-Eclipsing",
  37793. height: math.unit(2.7e8, "feet")
  37794. },
  37795. {
  37796. name: "Sol-Swallowing",
  37797. height: math.unit(9e10, "feet")
  37798. },
  37799. {
  37800. name: "Majoris-Munching",
  37801. height: math.unit(2.7e13, "feet")
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37807. {
  37808. front: {
  37809. height: math.unit(1, "inch"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/squeaks-mouse/front.svg",
  37813. extra: 352/308,
  37814. bottom: 25/377
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Micro",
  37821. height: math.unit(1, "inch"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37828. {
  37829. side: {
  37830. height: math.unit(35, "feet"),
  37831. name: "Side",
  37832. image: {
  37833. source: "./media/characters/sayko/side.svg",
  37834. extra: 1697/1021,
  37835. bottom: 82/1779
  37836. }
  37837. },
  37838. head: {
  37839. height: math.unit(16, "feet"),
  37840. name: "Head",
  37841. image: {
  37842. source: "./media/characters/sayko/head.svg"
  37843. }
  37844. },
  37845. forepaw: {
  37846. height: math.unit(7.85, "feet"),
  37847. name: "Forepaw",
  37848. image: {
  37849. source: "./media/characters/sayko/forepaw.svg"
  37850. }
  37851. },
  37852. hindpaw: {
  37853. height: math.unit(8.8, "feet"),
  37854. name: "Hindpaw",
  37855. image: {
  37856. source: "./media/characters/sayko/hindpaw.svg"
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(35, "feet"),
  37864. default: true
  37865. },
  37866. {
  37867. name: "Colossus",
  37868. height: math.unit(100, "meters")
  37869. },
  37870. {
  37871. name: "\"Small\" Deity",
  37872. height: math.unit(1, "km")
  37873. },
  37874. {
  37875. name: "\"Large\" Deity",
  37876. height: math.unit(15, "km")
  37877. },
  37878. ]
  37879. ))
  37880. characterMakers.push(() => makeCharacter(
  37881. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37882. {
  37883. front: {
  37884. height: math.unit(6, "feet"),
  37885. weight: math.unit(250, "lb"),
  37886. name: "Front",
  37887. image: {
  37888. source: "./media/characters/mukiro/front.svg",
  37889. extra: 1368/1310,
  37890. bottom: 34/1402
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(6, "feet"),
  37898. default: true
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37904. {
  37905. front: {
  37906. height: math.unit(12 + 4/12, "feet"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37910. extra: 1346/1311,
  37911. bottom: 65/1411
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Base",
  37918. height: math.unit(12 + 4/12, "feet"),
  37919. default: true
  37920. },
  37921. {
  37922. name: "Macro",
  37923. height: math.unit(150, "feet")
  37924. },
  37925. {
  37926. name: "Mega",
  37927. height: math.unit(2, "miles")
  37928. },
  37929. {
  37930. name: "Demi God",
  37931. height: math.unit(4, "AU")
  37932. },
  37933. {
  37934. name: "God Size",
  37935. height: math.unit(1, "universe")
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(3 + 3/12, "feet"),
  37944. weight: math.unit(88, "lb"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/trey/front.svg",
  37948. extra: 1815/1509,
  37949. bottom: 60/1875
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(3 + 3/12, "feet"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37963. {
  37964. front: {
  37965. height: math.unit(4, "meters"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/adelonda/front.svg",
  37969. extra: 1077/982,
  37970. bottom: 39/1116
  37971. }
  37972. },
  37973. back: {
  37974. height: math.unit(4, "meters"),
  37975. name: "Back",
  37976. image: {
  37977. source: "./media/characters/adelonda/back.svg",
  37978. extra: 1105/1003,
  37979. bottom: 25/1130
  37980. }
  37981. },
  37982. feral: {
  37983. height: math.unit(40/1.5, "meters"),
  37984. name: "Feral",
  37985. image: {
  37986. source: "./media/characters/adelonda/feral.svg",
  37987. extra: 597/271,
  37988. bottom: 387/984
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(4, "meters"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(8 + 4/12, "feet"),
  38005. weight: math.unit(670, "lb"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/acadiel/front.svg",
  38009. extra: 1901/1595,
  38010. bottom: 142/2043
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(8 + 4/12, "feet"),
  38018. default: true
  38019. },
  38020. {
  38021. name: "Macro",
  38022. height: math.unit(200, "feet")
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(6 + 2/12, "feet"),
  38031. weight: math.unit(185, "lb"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/kayne-ein/front.svg",
  38035. extra: 1780/1560,
  38036. bottom: 81/1861
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(6 + 2/12, "feet"),
  38044. default: true
  38045. },
  38046. {
  38047. name: "Transformation Stage",
  38048. height: math.unit(15, "feet")
  38049. },
  38050. {
  38051. name: "Macro",
  38052. height: math.unit(150, "feet")
  38053. },
  38054. {
  38055. name: "Earth's Shadow",
  38056. height: math.unit(6200, "miles")
  38057. },
  38058. {
  38059. name: "Universal Demon",
  38060. height: math.unit(28e9, "parsecs")
  38061. },
  38062. {
  38063. name: "Multiverse God",
  38064. height: math.unit(3, "multiverses")
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38070. {
  38071. front: {
  38072. height: math.unit(5 + 5/12, "feet"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/fawn/front.svg",
  38076. extra: 1873/1731,
  38077. bottom: 95/1968
  38078. }
  38079. },
  38080. back: {
  38081. height: math.unit(5 + 5/12, "feet"),
  38082. name: "Back",
  38083. image: {
  38084. source: "./media/characters/fawn/back.svg",
  38085. extra: 1813/1700,
  38086. bottom: 14/1827
  38087. }
  38088. },
  38089. hoof: {
  38090. height: math.unit(1.45, "feet"),
  38091. name: "Hoof",
  38092. image: {
  38093. source: "./media/characters/fawn/hoof.svg"
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(5 + 5/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(2 + 5/12, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/orion/front.svg",
  38113. extra: 1366/1304,
  38114. bottom: 43/1409
  38115. }
  38116. },
  38117. paw: {
  38118. height: math.unit(0.52, "feet"),
  38119. name: "Paw",
  38120. image: {
  38121. source: "./media/characters/orion/paw.svg"
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(2 + 5/12, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(5 + 10/12, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/vera/front.svg",
  38141. extra: 1680/1575,
  38142. bottom: 49/1729
  38143. }
  38144. },
  38145. back: {
  38146. height: math.unit(5 + 10/12, "feet"),
  38147. name: "Back",
  38148. image: {
  38149. source: "./media/characters/vera/back.svg",
  38150. extra: 1700/1588,
  38151. bottom: 18/1718
  38152. }
  38153. },
  38154. arcanine: {
  38155. height: math.unit(6 + 8/12, "feet"),
  38156. name: "Arcanine",
  38157. image: {
  38158. source: "./media/characters/vera/arcanine.svg",
  38159. extra: 1590/1511,
  38160. bottom: 71/1661
  38161. }
  38162. },
  38163. maw: {
  38164. height: math.unit(0.82, "feet"),
  38165. name: "Maw",
  38166. image: {
  38167. source: "./media/characters/vera/maw.svg"
  38168. }
  38169. },
  38170. mawArcanine: {
  38171. height: math.unit(0.97, "feet"),
  38172. name: "Maw (Arcanine)",
  38173. image: {
  38174. source: "./media/characters/vera/maw-arcanine.svg"
  38175. }
  38176. },
  38177. paw: {
  38178. height: math.unit(0.75, "feet"),
  38179. name: "Paw",
  38180. image: {
  38181. source: "./media/characters/vera/paw.svg"
  38182. }
  38183. },
  38184. pawprint: {
  38185. height: math.unit(0.52, "feet"),
  38186. name: "Pawprint",
  38187. image: {
  38188. source: "./media/characters/vera/pawprint.svg"
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Normal",
  38195. height: math.unit(5 + 10/12, "feet"),
  38196. default: true
  38197. },
  38198. {
  38199. name: "Macro",
  38200. height: math.unit(75, "feet")
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(4, "feet"),
  38209. weight: math.unit(40, "lb"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/orvan-rabbit/front.svg",
  38213. extra: 1896/1642,
  38214. bottom: 29/1925
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(4, "feet"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(6, "feet"),
  38231. weight: math.unit(168, "lb"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/lisa/front.svg",
  38235. extra: 2065/1867,
  38236. bottom: 46/2111
  38237. }
  38238. },
  38239. back: {
  38240. height: math.unit(6, "feet"),
  38241. weight: math.unit(168, "lb"),
  38242. name: "Back",
  38243. image: {
  38244. source: "./media/characters/lisa/back.svg",
  38245. extra: 1982/1838,
  38246. bottom: 29/2011
  38247. }
  38248. },
  38249. maw: {
  38250. height: math.unit(0.81, "feet"),
  38251. name: "Maw",
  38252. image: {
  38253. source: "./media/characters/lisa/maw.svg"
  38254. }
  38255. },
  38256. paw: {
  38257. height: math.unit(0.9, "feet"),
  38258. name: "Paw",
  38259. image: {
  38260. source: "./media/characters/lisa/paw.svg"
  38261. }
  38262. },
  38263. caribousune: {
  38264. height: math.unit(7 + 2/12, "feet"),
  38265. weight: math.unit(268, "lb"),
  38266. name: "Caribousune",
  38267. image: {
  38268. source: "./media/characters/lisa/caribousune.svg",
  38269. extra: 1843/1633,
  38270. bottom: 29/1872
  38271. }
  38272. },
  38273. frontCaribousune: {
  38274. height: math.unit(7 + 2/12, "feet"),
  38275. weight: math.unit(268, "lb"),
  38276. name: "Front (Caribousune)",
  38277. image: {
  38278. source: "./media/characters/lisa/front-caribousune.svg",
  38279. extra: 1818/1638,
  38280. bottom: 52/1870
  38281. }
  38282. },
  38283. sideCaribousune: {
  38284. height: math.unit(7 + 2/12, "feet"),
  38285. weight: math.unit(268, "lb"),
  38286. name: "Side (Caribousune)",
  38287. image: {
  38288. source: "./media/characters/lisa/side-caribousune.svg",
  38289. extra: 1851/1635,
  38290. bottom: 16/1867
  38291. }
  38292. },
  38293. backCaribousune: {
  38294. height: math.unit(7 + 2/12, "feet"),
  38295. weight: math.unit(268, "lb"),
  38296. name: "Back (Caribousune)",
  38297. image: {
  38298. source: "./media/characters/lisa/back-caribousune.svg",
  38299. extra: 1801/1604,
  38300. bottom: 44/1845
  38301. }
  38302. },
  38303. caribou: {
  38304. height: math.unit(7 + 2/12, "feet"),
  38305. weight: math.unit(268, "lb"),
  38306. name: "Caribou",
  38307. image: {
  38308. source: "./media/characters/lisa/caribou.svg",
  38309. extra: 1843/1633,
  38310. bottom: 29/1872
  38311. }
  38312. },
  38313. frontCaribou: {
  38314. height: math.unit(7 + 2/12, "feet"),
  38315. weight: math.unit(268, "lb"),
  38316. name: "Front (Caribou)",
  38317. image: {
  38318. source: "./media/characters/lisa/front-caribou.svg",
  38319. extra: 1818/1638,
  38320. bottom: 52/1870
  38321. }
  38322. },
  38323. sideCaribou: {
  38324. height: math.unit(7 + 2/12, "feet"),
  38325. weight: math.unit(268, "lb"),
  38326. name: "Side (Caribou)",
  38327. image: {
  38328. source: "./media/characters/lisa/side-caribou.svg",
  38329. extra: 1851/1635,
  38330. bottom: 16/1867
  38331. }
  38332. },
  38333. backCaribou: {
  38334. height: math.unit(7 + 2/12, "feet"),
  38335. weight: math.unit(268, "lb"),
  38336. name: "Back (Caribou)",
  38337. image: {
  38338. source: "./media/characters/lisa/back-caribou.svg",
  38339. extra: 1801/1604,
  38340. bottom: 44/1845
  38341. }
  38342. },
  38343. mawCaribou: {
  38344. height: math.unit(1.45, "feet"),
  38345. name: "Maw (Caribou)",
  38346. image: {
  38347. source: "./media/characters/lisa/maw-caribou.svg"
  38348. }
  38349. },
  38350. mawCaribousune: {
  38351. height: math.unit(1.45, "feet"),
  38352. name: "Maw (Caribousune)",
  38353. image: {
  38354. source: "./media/characters/lisa/maw-caribousune.svg"
  38355. }
  38356. },
  38357. pawCaribousune: {
  38358. height: math.unit(1.61, "feet"),
  38359. name: "Paw (Caribou)",
  38360. image: {
  38361. source: "./media/characters/lisa/paw-caribousune.svg"
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(6, "feet")
  38369. },
  38370. {
  38371. name: "God Size",
  38372. height: math.unit(72, "feet"),
  38373. default: true
  38374. },
  38375. {
  38376. name: "Towering",
  38377. height: math.unit(288, "feet")
  38378. },
  38379. {
  38380. name: "City Size",
  38381. height: math.unit(48384, "feet")
  38382. },
  38383. {
  38384. name: "Continental",
  38385. height: math.unit(4200, "miles")
  38386. },
  38387. {
  38388. name: "Planet Eater",
  38389. height: math.unit(42, "earths")
  38390. },
  38391. {
  38392. name: "Star Swallower",
  38393. height: math.unit(42, "solarradii")
  38394. },
  38395. {
  38396. name: "System Swallower",
  38397. height: math.unit(84000, "AU")
  38398. },
  38399. {
  38400. name: "Galaxy Gobbler",
  38401. height: math.unit(42, "galaxies")
  38402. },
  38403. {
  38404. name: "Universe Devourer",
  38405. height: math.unit(42, "universes")
  38406. },
  38407. {
  38408. name: "Multiverse Muncher",
  38409. height: math.unit(42, "multiverses")
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(36, "feet"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/shadow-rat/front.svg",
  38421. extra: 1845/1758,
  38422. bottom: 83/1928
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Macro",
  38429. height: math.unit(36, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38436. {
  38437. side: {
  38438. height: math.unit(8, "feet"),
  38439. weight: math.unit(2630, "lb"),
  38440. name: "Side",
  38441. image: {
  38442. source: "./media/characters/torallia/side.svg",
  38443. extra: 2164/2021,
  38444. bottom: 371/2535
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Mortal Interaction",
  38451. height: math.unit(8, "feet")
  38452. },
  38453. {
  38454. name: "Natural",
  38455. height: math.unit(24, "feet"),
  38456. default: true
  38457. },
  38458. {
  38459. name: "Giant",
  38460. height: math.unit(80, "feet")
  38461. },
  38462. {
  38463. name: "Kaiju",
  38464. height: math.unit(240, "feet")
  38465. },
  38466. {
  38467. name: "Macro",
  38468. height: math.unit(800, "feet")
  38469. },
  38470. {
  38471. name: "Macro+",
  38472. height: math.unit(2400, "feet")
  38473. },
  38474. {
  38475. name: "Macro++",
  38476. height: math.unit(8000, "feet")
  38477. },
  38478. {
  38479. name: "City-Crushing",
  38480. height: math.unit(24000, "feet")
  38481. },
  38482. {
  38483. name: "Mountain-Mashing",
  38484. height: math.unit(80000, "feet")
  38485. },
  38486. {
  38487. name: "District Demolisher",
  38488. height: math.unit(240000, "feet")
  38489. },
  38490. {
  38491. name: "Tri-County Terror",
  38492. height: math.unit(800000, "feet")
  38493. },
  38494. {
  38495. name: "State Smasher",
  38496. height: math.unit(2.4e6, "feet")
  38497. },
  38498. {
  38499. name: "Nation Nemesis",
  38500. height: math.unit(8e6, "feet")
  38501. },
  38502. {
  38503. name: "Continent Cracker",
  38504. height: math.unit(2.4e7, "feet")
  38505. },
  38506. {
  38507. name: "Planet-Pillaging",
  38508. height: math.unit(8e7, "feet")
  38509. },
  38510. {
  38511. name: "Earth-Eclipsing",
  38512. height: math.unit(2.4e8, "feet")
  38513. },
  38514. {
  38515. name: "Jovian-Jostling",
  38516. height: math.unit(8e8, "feet")
  38517. },
  38518. {
  38519. name: "Gas Giant Gulper",
  38520. height: math.unit(2.4e9, "feet")
  38521. },
  38522. {
  38523. name: "Astral Annihilator",
  38524. height: math.unit(8e9, "feet")
  38525. },
  38526. {
  38527. name: "Celestial Conqueror",
  38528. height: math.unit(2.4e10, "feet")
  38529. },
  38530. {
  38531. name: "Sol-Swallowing",
  38532. height: math.unit(8e10, "feet")
  38533. },
  38534. {
  38535. name: "Hunter of the Heavens",
  38536. height: math.unit(2.4e13, "feet")
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(6 + 8/12, "feet"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/rebecca-pawlson/front.svg",
  38548. extra: 1737/1596,
  38549. bottom: 107/1844
  38550. }
  38551. },
  38552. back: {
  38553. height: math.unit(6 + 8/12, "feet"),
  38554. name: "Back",
  38555. image: {
  38556. source: "./media/characters/rebecca-pawlson/back.svg",
  38557. extra: 1702/1523,
  38558. bottom: 86/1788
  38559. }
  38560. },
  38561. },
  38562. [
  38563. {
  38564. name: "Normal",
  38565. height: math.unit(6 + 8/12, "feet")
  38566. },
  38567. {
  38568. name: "Mini Macro",
  38569. height: math.unit(10, "feet"),
  38570. default: true
  38571. },
  38572. {
  38573. name: "Macro",
  38574. height: math.unit(100, "feet")
  38575. },
  38576. {
  38577. name: "Mega Macro",
  38578. height: math.unit(2500, "feet")
  38579. },
  38580. {
  38581. name: "Giga Macro",
  38582. height: math.unit(50, "miles")
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(7 + 6/12, "feet"),
  38591. weight: math.unit(600, "lb"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/moxie-nova/front.svg",
  38595. extra: 1734/1652,
  38596. bottom: 41/1775
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(7 + 6/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38610. {
  38611. goat: {
  38612. height: math.unit(4, "feet"),
  38613. weight: math.unit(180, "lb"),
  38614. name: "Goat",
  38615. image: {
  38616. source: "./media/characters/tiffany/goat.svg",
  38617. extra: 1845/1595,
  38618. bottom: 106/1951
  38619. }
  38620. },
  38621. front: {
  38622. height: math.unit(5, "feet"),
  38623. weight: math.unit(150, "lb"),
  38624. name: "Foxcoon",
  38625. image: {
  38626. source: "./media/characters/tiffany/foxcoon.svg",
  38627. extra: 1941/1845,
  38628. bottom: 58/1999
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(5, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(8, "feet"),
  38645. weight: math.unit(300, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/raxinath/front.svg",
  38649. extra: 1407/1309,
  38650. bottom: 39/1446
  38651. }
  38652. },
  38653. back: {
  38654. height: math.unit(8, "feet"),
  38655. weight: math.unit(300, "lb"),
  38656. name: "Back",
  38657. image: {
  38658. source: "./media/characters/raxinath/back.svg",
  38659. extra: 1405/1315,
  38660. bottom: 9/1414
  38661. }
  38662. },
  38663. },
  38664. [
  38665. {
  38666. name: "Speck",
  38667. height: math.unit(0.5, "nm")
  38668. },
  38669. {
  38670. name: "Micro",
  38671. height: math.unit(3, "inches")
  38672. },
  38673. {
  38674. name: "Kobold",
  38675. height: math.unit(3, "feet")
  38676. },
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(8, "feet"),
  38680. default: true
  38681. },
  38682. {
  38683. name: "Giant",
  38684. height: math.unit(50, "feet")
  38685. },
  38686. {
  38687. name: "Macro",
  38688. height: math.unit(1000, "feet")
  38689. },
  38690. {
  38691. name: "Megamacro",
  38692. height: math.unit(1, "mile")
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(10, "feet"),
  38701. weight: math.unit(1442, "lb"),
  38702. name: "Front",
  38703. image: {
  38704. source: "./media/characters/mal-dragon/front.svg",
  38705. extra: 1515/1444,
  38706. bottom: 113/1628
  38707. }
  38708. },
  38709. back: {
  38710. height: math.unit(10, "feet"),
  38711. weight: math.unit(1442, "lb"),
  38712. name: "Back",
  38713. image: {
  38714. source: "./media/characters/mal-dragon/back.svg",
  38715. extra: 1527/1434,
  38716. bottom: 25/1552
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Mortal Interaction",
  38723. height: math.unit(10, "feet"),
  38724. default: true
  38725. },
  38726. {
  38727. name: "Large",
  38728. height: math.unit(30, "feet")
  38729. },
  38730. {
  38731. name: "Kaiju",
  38732. height: math.unit(300, "feet")
  38733. },
  38734. {
  38735. name: "Megamacro",
  38736. height: math.unit(10000, "feet")
  38737. },
  38738. {
  38739. name: "Continent Cracker",
  38740. height: math.unit(30000000, "feet")
  38741. },
  38742. {
  38743. name: "Sol-Swallowing",
  38744. height: math.unit(1e11, "feet")
  38745. },
  38746. {
  38747. name: "Light Universal",
  38748. height: math.unit(5, "universes")
  38749. },
  38750. {
  38751. name: "Universe Atoms",
  38752. height: math.unit(1.829e9, "universes")
  38753. },
  38754. {
  38755. name: "Light Multiversal",
  38756. height: math.unit(5, "multiverses")
  38757. },
  38758. {
  38759. name: "Multiverse Atoms",
  38760. height: math.unit(1.829e9, "multiverses")
  38761. },
  38762. {
  38763. name: "Fabric of Time",
  38764. height: math.unit(1e262, "multiverses")
  38765. },
  38766. ]
  38767. ))
  38768. characterMakers.push(() => makeCharacter(
  38769. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38770. {
  38771. front: {
  38772. height: math.unit(9, "feet"),
  38773. weight: math.unit(1050, "lb"),
  38774. name: "Front",
  38775. image: {
  38776. source: "./media/characters/tabitha/front.svg",
  38777. extra: 2083/1994,
  38778. bottom: 68/2151
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "Baseline",
  38785. height: math.unit(9, "feet"),
  38786. default: true
  38787. },
  38788. {
  38789. name: "Giant",
  38790. height: math.unit(90, "feet")
  38791. },
  38792. {
  38793. name: "Macro",
  38794. height: math.unit(900, "feet")
  38795. },
  38796. {
  38797. name: "Megamacro",
  38798. height: math.unit(9000, "feet")
  38799. },
  38800. {
  38801. name: "City-Crushing",
  38802. height: math.unit(27000, "feet")
  38803. },
  38804. {
  38805. name: "Mountain-Mashing",
  38806. height: math.unit(90000, "feet")
  38807. },
  38808. {
  38809. name: "Nation Nemesis",
  38810. height: math.unit(9e6, "feet")
  38811. },
  38812. {
  38813. name: "Continent Cracker",
  38814. height: math.unit(27e6, "feet")
  38815. },
  38816. {
  38817. name: "Earth-Eclipsing",
  38818. height: math.unit(2.7e8, "feet")
  38819. },
  38820. {
  38821. name: "Gas Giant Gulper",
  38822. height: math.unit(2.7e9, "feet")
  38823. },
  38824. {
  38825. name: "Sol-Swallowing",
  38826. height: math.unit(9e10, "feet")
  38827. },
  38828. {
  38829. name: "Galaxy Gulper",
  38830. height: math.unit(9, "galaxies")
  38831. },
  38832. {
  38833. name: "Cosmos Churner",
  38834. height: math.unit(9, "universes")
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38840. {
  38841. front: {
  38842. height: math.unit(160, "cm"),
  38843. weight: math.unit(55, "kg"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/tow/front.svg",
  38847. extra: 1751/1722,
  38848. bottom: 74/1825
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Norm",
  38855. height: math.unit(160, "cm")
  38856. },
  38857. {
  38858. name: "Casual",
  38859. height: math.unit(3200, "m"),
  38860. default: true
  38861. },
  38862. {
  38863. name: "Show-Off",
  38864. height: math.unit(160, "km")
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38870. {
  38871. front: {
  38872. height: math.unit(7 + 11/12, "feet"),
  38873. weight: math.unit(342.8, "lb"),
  38874. name: "Front",
  38875. image: {
  38876. source: "./media/characters/vivian-orca-dragon/front.svg",
  38877. extra: 1890/1865,
  38878. bottom: 28/1918
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Micro",
  38885. height: math.unit(5, "inches")
  38886. },
  38887. {
  38888. name: "Normal",
  38889. height: math.unit(7 + 11/12, "feet"),
  38890. default: true
  38891. },
  38892. {
  38893. name: "Macro",
  38894. height: math.unit(395 + 7/12, "feet")
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38900. {
  38901. side: {
  38902. height: math.unit(10, "feet"),
  38903. weight: math.unit(1442, "lb"),
  38904. name: "Side",
  38905. image: {
  38906. source: "./media/characters/lotherakon/side.svg",
  38907. extra: 1604/1497,
  38908. bottom: 89/1693
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Mortal Interaction",
  38915. height: math.unit(10, "feet")
  38916. },
  38917. {
  38918. name: "Large",
  38919. height: math.unit(30, "feet"),
  38920. default: true
  38921. },
  38922. {
  38923. name: "Giant",
  38924. height: math.unit(100, "feet")
  38925. },
  38926. {
  38927. name: "Kaiju",
  38928. height: math.unit(300, "feet")
  38929. },
  38930. {
  38931. name: "Macro",
  38932. height: math.unit(1000, "feet")
  38933. },
  38934. {
  38935. name: "Macro+",
  38936. height: math.unit(3000, "feet")
  38937. },
  38938. {
  38939. name: "Megamacro",
  38940. height: math.unit(10000, "feet")
  38941. },
  38942. {
  38943. name: "City-Crushing",
  38944. height: math.unit(30000, "feet")
  38945. },
  38946. {
  38947. name: "Continent Cracker",
  38948. height: math.unit(30e6, "feet")
  38949. },
  38950. {
  38951. name: "Earth Eclipsing",
  38952. height: math.unit(3e8, "feet")
  38953. },
  38954. {
  38955. name: "Gas Giant Gulper",
  38956. height: math.unit(3e9, "feet")
  38957. },
  38958. {
  38959. name: "Sol-Swallowing",
  38960. height: math.unit(1e11, "feet")
  38961. },
  38962. {
  38963. name: "System Swallower",
  38964. height: math.unit(3e14, "feet")
  38965. },
  38966. {
  38967. name: "Galaxy Gulper",
  38968. height: math.unit(10, "galaxies")
  38969. },
  38970. {
  38971. name: "Light Universal",
  38972. height: math.unit(5, "universes")
  38973. },
  38974. {
  38975. name: "Universe Palm",
  38976. height: math.unit(20, "universes")
  38977. },
  38978. {
  38979. name: "Light Multiversal",
  38980. height: math.unit(5, "multiverses")
  38981. },
  38982. {
  38983. name: "Multiverse Palm",
  38984. height: math.unit(20, "multiverses")
  38985. },
  38986. {
  38987. name: "Inferno Incarnate",
  38988. height: math.unit(1e7, "multiverses")
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(8, "feet"),
  38997. weight: math.unit(1200, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/malithee/front.svg",
  39001. extra: 1675/1640,
  39002. bottom: 162/1837
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Mortal Interaction",
  39009. height: math.unit(8, "feet"),
  39010. default: true
  39011. },
  39012. {
  39013. name: "Large",
  39014. height: math.unit(24, "feet")
  39015. },
  39016. {
  39017. name: "Kaiju",
  39018. height: math.unit(240, "feet")
  39019. },
  39020. {
  39021. name: "Megamacro",
  39022. height: math.unit(8000, "feet")
  39023. },
  39024. {
  39025. name: "Continent Cracker",
  39026. height: math.unit(24e6, "feet")
  39027. },
  39028. {
  39029. name: "Earth-Eclipsing",
  39030. height: math.unit(2.4e8, "feet")
  39031. },
  39032. {
  39033. name: "Sol-Swallowing",
  39034. height: math.unit(8e10, "feet")
  39035. },
  39036. {
  39037. name: "Galaxy Gulper",
  39038. height: math.unit(8, "galaxies")
  39039. },
  39040. {
  39041. name: "Light Universal",
  39042. height: math.unit(4, "universes")
  39043. },
  39044. {
  39045. name: "Universe Atoms",
  39046. height: math.unit(1.829e9, "universes")
  39047. },
  39048. {
  39049. name: "Light Multiversal",
  39050. height: math.unit(4, "multiverses")
  39051. },
  39052. {
  39053. name: "Multiverse Atoms",
  39054. height: math.unit(1.829e9, "multiverses")
  39055. },
  39056. {
  39057. name: "Nigh-Omnipresence",
  39058. height: math.unit(8e261, "multiverses")
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39064. {
  39065. front: {
  39066. height: math.unit(10, "feet"),
  39067. weight: math.unit(1500, "lb"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/miles-thestia/front.svg",
  39071. extra: 1812/1727,
  39072. bottom: 86/1898
  39073. }
  39074. },
  39075. back: {
  39076. height: math.unit(10, "feet"),
  39077. weight: math.unit(1500, "lb"),
  39078. name: "Back",
  39079. image: {
  39080. source: "./media/characters/miles-thestia/back.svg",
  39081. extra: 1799/1690,
  39082. bottom: 47/1846
  39083. }
  39084. },
  39085. frontNsfw: {
  39086. height: math.unit(10, "feet"),
  39087. weight: math.unit(1500, "lb"),
  39088. name: "Front (NSFW)",
  39089. image: {
  39090. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39091. extra: 1812/1727,
  39092. bottom: 86/1898
  39093. }
  39094. },
  39095. },
  39096. [
  39097. {
  39098. name: "Mini-Macro",
  39099. height: math.unit(10, "feet"),
  39100. default: true
  39101. },
  39102. ]
  39103. ))
  39104. characterMakers.push(() => makeCharacter(
  39105. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39106. {
  39107. front: {
  39108. height: math.unit(25, "feet"),
  39109. name: "Front",
  39110. image: {
  39111. source: "./media/characters/titan-s-wulf/front.svg",
  39112. extra: 1560/1484,
  39113. bottom: 76/1636
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Smallest",
  39120. height: math.unit(25, "feet"),
  39121. default: true
  39122. },
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(200, "feet")
  39126. },
  39127. {
  39128. name: "Macro",
  39129. height: math.unit(200000, "feet")
  39130. },
  39131. {
  39132. name: "Multiversal Original",
  39133. height: math.unit(10000, "multiverses")
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(8, "feet"),
  39142. weight: math.unit(553, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/tawendeh/front.svg",
  39146. extra: 2365/2268,
  39147. bottom: 83/2448
  39148. }
  39149. },
  39150. frontClothed: {
  39151. height: math.unit(8, "feet"),
  39152. weight: math.unit(553, "lb"),
  39153. name: "Front (Clothed)",
  39154. image: {
  39155. source: "./media/characters/tawendeh/front-clothed.svg",
  39156. extra: 2365/2268,
  39157. bottom: 83/2448
  39158. }
  39159. },
  39160. back: {
  39161. height: math.unit(8, "feet"),
  39162. weight: math.unit(553, "lb"),
  39163. name: "Back",
  39164. image: {
  39165. source: "./media/characters/tawendeh/back.svg",
  39166. extra: 2397/2294,
  39167. bottom: 42/2439
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Mortal Interaction",
  39174. height: math.unit(8, "feet"),
  39175. default: true
  39176. },
  39177. {
  39178. name: "Giant",
  39179. height: math.unit(80, "feet")
  39180. },
  39181. {
  39182. name: "Macro",
  39183. height: math.unit(800, "feet")
  39184. },
  39185. {
  39186. name: "Megamacro",
  39187. height: math.unit(8000, "feet")
  39188. },
  39189. {
  39190. name: "City-Crushing",
  39191. height: math.unit(24000, "feet")
  39192. },
  39193. {
  39194. name: "Mountain-Mashing",
  39195. height: math.unit(80000, "feet")
  39196. },
  39197. {
  39198. name: "Nation Nemesis",
  39199. height: math.unit(8e6, "feet")
  39200. },
  39201. {
  39202. name: "Continent Cracker",
  39203. height: math.unit(24e6, "feet")
  39204. },
  39205. {
  39206. name: "Earth-Eclipsing",
  39207. height: math.unit(2.4e8, "feet")
  39208. },
  39209. {
  39210. name: "Gas Giant Gulper",
  39211. height: math.unit(2.4e9, "feet")
  39212. },
  39213. {
  39214. name: "Sol-Swallowing",
  39215. height: math.unit(8e10, "feet")
  39216. },
  39217. {
  39218. name: "Galaxy Gulper",
  39219. height: math.unit(8, "galaxies")
  39220. },
  39221. {
  39222. name: "Cosmos Churner",
  39223. height: math.unit(8, "universes")
  39224. },
  39225. {
  39226. name: "Omnipotent Otter",
  39227. height: math.unit(80, "universes")
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(2.6, "meters"),
  39236. weight: math.unit(900, "kg"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/neesha/front.svg",
  39240. extra: 1803/1653,
  39241. bottom: 128/1931
  39242. }
  39243. },
  39244. },
  39245. [
  39246. {
  39247. name: "Normal",
  39248. height: math.unit(2.6, "meters"),
  39249. default: true
  39250. },
  39251. {
  39252. name: "Macro",
  39253. height: math.unit(50, "meters")
  39254. },
  39255. ]
  39256. ))
  39257. characterMakers.push(() => makeCharacter(
  39258. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39259. {
  39260. front: {
  39261. height: math.unit(5, "feet"),
  39262. weight: math.unit(185, "lb"),
  39263. name: "Front",
  39264. image: {
  39265. source: "./media/characters/kyera/front.svg",
  39266. extra: 1875/1790,
  39267. bottom: 96/1971
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(5, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(7 + 6/12, "feet"),
  39284. weight: math.unit(540, "lb"),
  39285. name: "Front",
  39286. image: {
  39287. source: "./media/characters/yuko/front.svg",
  39288. extra: 1282/1222,
  39289. bottom: 101/1383
  39290. }
  39291. },
  39292. frontClothed: {
  39293. height: math.unit(7 + 6/12, "feet"),
  39294. weight: math.unit(540, "lb"),
  39295. name: "Front (Clothed)",
  39296. image: {
  39297. source: "./media/characters/yuko/front-clothed.svg",
  39298. extra: 1282/1222,
  39299. bottom: 101/1383
  39300. }
  39301. },
  39302. },
  39303. [
  39304. {
  39305. name: "Normal",
  39306. height: math.unit(7 + 6/12, "feet"),
  39307. default: true
  39308. },
  39309. {
  39310. name: "Macro",
  39311. height: math.unit(26 + 9/12, "feet")
  39312. },
  39313. {
  39314. name: "Megamacro",
  39315. height: math.unit(300, "feet")
  39316. },
  39317. {
  39318. name: "Gigamacro",
  39319. height: math.unit(5000, "feet")
  39320. },
  39321. {
  39322. name: "Planetary",
  39323. height: math.unit(10000, "miles")
  39324. },
  39325. ]
  39326. ))
  39327. characterMakers.push(() => makeCharacter(
  39328. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39329. {
  39330. front: {
  39331. height: math.unit(8 + 2/12, "feet"),
  39332. weight: math.unit(600, "lb"),
  39333. name: "Front",
  39334. image: {
  39335. source: "./media/characters/deam-nitrel/front.svg",
  39336. extra: 1308/1234,
  39337. bottom: 125/1433
  39338. }
  39339. },
  39340. },
  39341. [
  39342. {
  39343. name: "Normal",
  39344. height: math.unit(8 + 2/12, "feet"),
  39345. default: true
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(6.1, "feet"),
  39354. weight: math.unit(180, "lb"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/skyress/front.svg",
  39358. extra: 1045/915,
  39359. bottom: 28/1073
  39360. }
  39361. },
  39362. maw: {
  39363. height: math.unit(1, "feet"),
  39364. name: "Maw",
  39365. image: {
  39366. source: "./media/characters/skyress/maw.svg"
  39367. }
  39368. },
  39369. },
  39370. [
  39371. {
  39372. name: "Normal",
  39373. height: math.unit(6.1, "feet"),
  39374. default: true
  39375. },
  39376. {
  39377. name: "Macro",
  39378. height: math.unit(200, "feet")
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(4 + 2/12, "feet"),
  39387. weight: math.unit(40, "kg"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/amethyst-jones/front.svg",
  39391. extra: 1220/1150,
  39392. bottom: 101/1321
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(4 + 2/12, "feet"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(1.7, "m"),
  39409. weight: math.unit(135, "lb"),
  39410. name: "Front",
  39411. image: {
  39412. source: "./media/characters/jade/front.svg",
  39413. extra: 1818/1767,
  39414. bottom: 32/1850
  39415. }
  39416. },
  39417. back: {
  39418. height: math.unit(1.7, "m"),
  39419. weight: math.unit(135, "lb"),
  39420. name: "Back",
  39421. image: {
  39422. source: "./media/characters/jade/back.svg",
  39423. extra: 1869/1809,
  39424. bottom: 35/1904
  39425. }
  39426. },
  39427. hand: {
  39428. height: math.unit(0.24, "m"),
  39429. name: "Hand",
  39430. image: {
  39431. source: "./media/characters/jade/hand.svg"
  39432. }
  39433. },
  39434. foot: {
  39435. height: math.unit(0.263, "m"),
  39436. name: "Foot",
  39437. image: {
  39438. source: "./media/characters/jade/foot.svg"
  39439. }
  39440. },
  39441. dick: {
  39442. height: math.unit(0.47, "m"),
  39443. name: "Dick",
  39444. image: {
  39445. source: "./media/characters/jade/dick.svg"
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Micro",
  39452. height: math.unit(22, "cm")
  39453. },
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(1.7, "m"),
  39457. default: true
  39458. },
  39459. {
  39460. name: "Macro",
  39461. height: math.unit(152, "m")
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39467. {
  39468. front: {
  39469. height: math.unit(100, "miles"),
  39470. weight: math.unit(20000, "tons"),
  39471. name: "Front",
  39472. image: {
  39473. source: "./media/characters/cookie/front.svg",
  39474. extra: 1125/1070,
  39475. bottom: 30/1155
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Big",
  39482. height: math.unit(50, "feet")
  39483. },
  39484. {
  39485. name: "Macro",
  39486. height: math.unit(100, "miles"),
  39487. default: true
  39488. },
  39489. {
  39490. name: "Megamacro",
  39491. height: math.unit(90000, "miles")
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(6, "feet"),
  39500. weight: math.unit(145, "lb"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/farzian/front.svg",
  39504. extra: 1902/1693,
  39505. bottom: 108/2010
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Macro",
  39512. height: math.unit(500, "feet"),
  39513. default: true
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(3 + 6/12, "feet"),
  39522. weight: math.unit(50, "lb"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/kimberly-tilson/front.svg",
  39526. extra: 1400/1322,
  39527. bottom: 36/1436
  39528. }
  39529. },
  39530. back: {
  39531. height: math.unit(3 + 6/12, "feet"),
  39532. weight: math.unit(50, "lb"),
  39533. name: "Back",
  39534. image: {
  39535. source: "./media/characters/kimberly-tilson/back.svg",
  39536. extra: 1370/1307,
  39537. bottom: 20/1390
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(3 + 6/12, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(1148, "feet"),
  39554. weight: math.unit(34057, "lb"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/harthos/front.svg",
  39558. extra: 1391/1339,
  39559. bottom: 13/1404
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Macro",
  39566. height: math.unit(1148, "feet"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(15, "feet"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/hypatia/front.svg",
  39579. extra: 1653/1591,
  39580. bottom: 79/1732
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(15, "feet")
  39588. },
  39589. {
  39590. name: "Small",
  39591. height: math.unit(300, "feet")
  39592. },
  39593. {
  39594. name: "Macro",
  39595. height: math.unit(2500, "feet"),
  39596. default: true
  39597. },
  39598. {
  39599. name: "Mega Macro",
  39600. height: math.unit(1500, "miles")
  39601. },
  39602. {
  39603. name: "Giga Macro",
  39604. height: math.unit(1.5e6, "miles")
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(6, "feet"),
  39613. weight: math.unit(200, "lb"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/wulver/front.svg",
  39617. extra: 1724/1632,
  39618. bottom: 130/1854
  39619. }
  39620. },
  39621. frontNsfw: {
  39622. height: math.unit(6, "feet"),
  39623. weight: math.unit(200, "lb"),
  39624. name: "Front (NSFW)",
  39625. image: {
  39626. source: "./media/characters/wulver/front-nsfw.svg",
  39627. extra: 1724/1632,
  39628. bottom: 130/1854
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Human-Sized",
  39635. height: math.unit(6, "feet")
  39636. },
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(4, "meters"),
  39640. default: true
  39641. },
  39642. {
  39643. name: "Large",
  39644. height: math.unit(6, "m")
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(7, "feet"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/maru/front.svg",
  39656. extra: 1595/1570,
  39657. bottom: 0/1595
  39658. }
  39659. },
  39660. },
  39661. [
  39662. {
  39663. name: "Normal",
  39664. height: math.unit(7, "feet"),
  39665. default: true
  39666. },
  39667. {
  39668. name: "Macro",
  39669. height: math.unit(700, "feet")
  39670. },
  39671. {
  39672. name: "Mega Macro",
  39673. height: math.unit(25, "miles")
  39674. },
  39675. ]
  39676. ))
  39677. characterMakers.push(() => makeCharacter(
  39678. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39679. {
  39680. front: {
  39681. height: math.unit(6, "feet"),
  39682. weight: math.unit(170, "lb"),
  39683. name: "Front",
  39684. image: {
  39685. source: "./media/characters/xenon/front.svg",
  39686. extra: 1376/1305,
  39687. bottom: 56/1432
  39688. }
  39689. },
  39690. back: {
  39691. height: math.unit(6, "feet"),
  39692. weight: math.unit(170, "lb"),
  39693. name: "Back",
  39694. image: {
  39695. source: "./media/characters/xenon/back.svg",
  39696. extra: 1328/1259,
  39697. bottom: 95/1423
  39698. }
  39699. },
  39700. maw: {
  39701. height: math.unit(0.52, "feet"),
  39702. name: "Maw",
  39703. image: {
  39704. source: "./media/characters/xenon/maw.svg"
  39705. }
  39706. },
  39707. hand: {
  39708. height: math.unit(0.82, "feet"),
  39709. name: "Hand",
  39710. image: {
  39711. source: "./media/characters/xenon/hand.svg"
  39712. }
  39713. },
  39714. foot: {
  39715. height: math.unit(1.13, "feet"),
  39716. name: "Foot",
  39717. image: {
  39718. source: "./media/characters/xenon/foot.svg"
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Micro",
  39725. height: math.unit(0.8, "inches")
  39726. },
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(6, "feet")
  39730. },
  39731. {
  39732. name: "Macro",
  39733. height: math.unit(50, "feet"),
  39734. default: true
  39735. },
  39736. {
  39737. name: "Macro+",
  39738. height: math.unit(250, "feet")
  39739. },
  39740. {
  39741. name: "Megamacro",
  39742. height: math.unit(1500, "feet")
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(7 + 5/12, "feet"),
  39751. name: "Front",
  39752. image: {
  39753. source: "./media/characters/zane/front.svg",
  39754. extra: 1260/1203,
  39755. bottom: 94/1354
  39756. }
  39757. },
  39758. back: {
  39759. height: math.unit(5.05, "feet"),
  39760. name: "Back",
  39761. image: {
  39762. source: "./media/characters/zane/back.svg",
  39763. extra: 893/829,
  39764. bottom: 30/923
  39765. }
  39766. },
  39767. werewolf: {
  39768. height: math.unit(11, "feet"),
  39769. name: "Werewolf",
  39770. image: {
  39771. source: "./media/characters/zane/werewolf.svg",
  39772. extra: 1383/1323,
  39773. bottom: 89/1472
  39774. }
  39775. },
  39776. foot: {
  39777. height: math.unit(1.46, "feet"),
  39778. name: "Foot",
  39779. image: {
  39780. source: "./media/characters/zane/foot.svg"
  39781. }
  39782. },
  39783. footFront: {
  39784. height: math.unit(0.784, "feet"),
  39785. name: "Foot (Front)",
  39786. image: {
  39787. source: "./media/characters/zane/foot-front.svg"
  39788. }
  39789. },
  39790. dick: {
  39791. height: math.unit(1.95, "feet"),
  39792. name: "Dick",
  39793. image: {
  39794. source: "./media/characters/zane/dick.svg"
  39795. }
  39796. },
  39797. dickWerewolf: {
  39798. height: math.unit(3.77, "feet"),
  39799. name: "Dick (Werewolf)",
  39800. image: {
  39801. source: "./media/characters/zane/dick.svg"
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(7 + 5/12, "feet"),
  39809. default: true
  39810. },
  39811. ]
  39812. ))
  39813. characterMakers.push(() => makeCharacter(
  39814. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39815. {
  39816. front: {
  39817. height: math.unit(6 + 2/12, "feet"),
  39818. weight: math.unit(284, "lb"),
  39819. name: "Front",
  39820. image: {
  39821. source: "./media/characters/benni-desparque/front.svg",
  39822. extra: 1353/1126,
  39823. bottom: 69/1422
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Civilian",
  39830. height: math.unit(6 + 2/12, "feet")
  39831. },
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(98, "feet"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Kaiju Fighter",
  39839. height: math.unit(268, "feet")
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(5, "feet"),
  39848. weight: math.unit(105, "lb"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/maxine/front.svg",
  39852. extra: 1386/1250,
  39853. bottom: 71/1457
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(5, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(11 + 7/12, "feet"),
  39870. weight: math.unit(9576, "lb"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/scaly/front.svg",
  39874. extra: 888/867,
  39875. bottom: 36/924
  39876. }
  39877. },
  39878. },
  39879. [
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(11 + 7/12, "feet"),
  39883. default: true
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(9, "inches"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/saelria/front.svg",
  39895. extra: 662/621,
  39896. bottom: 12/674
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Tiny",
  39903. height: math.unit(9, "inches"),
  39904. default: true
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(80, "meters"),
  39913. weight: math.unit(7000, "tonnes"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/tef/front.svg",
  39917. extra: 2036/1991,
  39918. bottom: 54/2090
  39919. }
  39920. },
  39921. back: {
  39922. height: math.unit(80, "meters"),
  39923. weight: math.unit(7000, "tonnes"),
  39924. name: "Back",
  39925. image: {
  39926. source: "./media/characters/tef/back.svg",
  39927. extra: 2036/1991,
  39928. bottom: 54/2090
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Macro",
  39935. height: math.unit(80, "meters"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(13, "feet"),
  39945. weight: math.unit(6, "tons"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/rover/front.svg",
  39949. extra: 1233/1156,
  39950. bottom: 50/1283
  39951. }
  39952. },
  39953. back: {
  39954. height: math.unit(13, "feet"),
  39955. weight: math.unit(6, "tons"),
  39956. name: "Back",
  39957. image: {
  39958. source: "./media/characters/rover/back.svg",
  39959. extra: 1327/1258,
  39960. bottom: 39/1366
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Normal",
  39967. height: math.unit(13, "feet"),
  39968. default: true
  39969. },
  39970. {
  39971. name: "Macro",
  39972. height: math.unit(1300, "feet")
  39973. },
  39974. {
  39975. name: "Megamacro",
  39976. height: math.unit(1300, "miles")
  39977. },
  39978. {
  39979. name: "Gigamacro",
  39980. height: math.unit(1300000, "miles")
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(6, "feet"),
  39989. weight: math.unit(150, "lb"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/ariz/front.svg",
  39993. extra: 1401/1346,
  39994. bottom: 5/1406
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Normal",
  40001. height: math.unit(10, "feet"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(6, "feet"),
  40011. weight: math.unit(140, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/sigrun/front.svg",
  40015. extra: 1418/1359,
  40016. bottom: 27/1445
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(35, "feet"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(6, "feet"),
  40033. weight: math.unit(150, "lb"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/numin/front.svg",
  40037. extra: 1433/1388,
  40038. bottom: 12/1445
  40039. }
  40040. },
  40041. },
  40042. [
  40043. {
  40044. name: "Macro",
  40045. height: math.unit(21.5, "km"),
  40046. default: true
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40052. {
  40053. front: {
  40054. height: math.unit(6, "feet"),
  40055. weight: math.unit(463, "lb"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/melwa/front.svg",
  40059. extra: 1307/1248,
  40060. bottom: 93/1400
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(50, "meters"),
  40068. default: true
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(325, "feet"),
  40077. name: "Front",
  40078. image: {
  40079. source: "./media/characters/zorkaiju/front.svg",
  40080. extra: 1955/1814,
  40081. bottom: 40/1995
  40082. }
  40083. },
  40084. frontExtended: {
  40085. height: math.unit(325, "feet"),
  40086. name: "Front (Extended)",
  40087. image: {
  40088. source: "./media/characters/zorkaiju/front-extended.svg",
  40089. extra: 1955/1814,
  40090. bottom: 40/1995
  40091. }
  40092. },
  40093. side: {
  40094. height: math.unit(325, "feet"),
  40095. name: "Side",
  40096. image: {
  40097. source: "./media/characters/zorkaiju/side.svg",
  40098. extra: 1495/1396,
  40099. bottom: 17/1512
  40100. }
  40101. },
  40102. sideExtended: {
  40103. height: math.unit(325, "feet"),
  40104. name: "Side (Extended)",
  40105. image: {
  40106. source: "./media/characters/zorkaiju/side-extended.svg",
  40107. extra: 1495/1396,
  40108. bottom: 17/1512
  40109. }
  40110. },
  40111. back: {
  40112. height: math.unit(325, "feet"),
  40113. name: "Back",
  40114. image: {
  40115. source: "./media/characters/zorkaiju/back.svg",
  40116. extra: 1959/1821,
  40117. bottom: 31/1990
  40118. }
  40119. },
  40120. backExtended: {
  40121. height: math.unit(325, "feet"),
  40122. name: "Back (Extended)",
  40123. image: {
  40124. source: "./media/characters/zorkaiju/back-extended.svg",
  40125. extra: 1959/1821,
  40126. bottom: 31/1990
  40127. }
  40128. },
  40129. hand: {
  40130. height: math.unit(58.4, "feet"),
  40131. name: "Hand",
  40132. image: {
  40133. source: "./media/characters/zorkaiju/hand.svg"
  40134. }
  40135. },
  40136. handExtended: {
  40137. height: math.unit(61.4, "feet"),
  40138. name: "Hand (Extended)",
  40139. image: {
  40140. source: "./media/characters/zorkaiju/hand-extended.svg"
  40141. }
  40142. },
  40143. foot: {
  40144. height: math.unit(95, "feet"),
  40145. name: "Foot",
  40146. image: {
  40147. source: "./media/characters/zorkaiju/foot.svg"
  40148. }
  40149. },
  40150. leftArm: {
  40151. height: math.unit(59, "feet"),
  40152. name: "Left Arm",
  40153. image: {
  40154. source: "./media/characters/zorkaiju/left-arm.svg"
  40155. }
  40156. },
  40157. rightArm: {
  40158. height: math.unit(59, "feet"),
  40159. name: "Right Arm",
  40160. image: {
  40161. source: "./media/characters/zorkaiju/right-arm.svg"
  40162. }
  40163. },
  40164. tail: {
  40165. height: math.unit(104, "feet"),
  40166. name: "Tail",
  40167. image: {
  40168. source: "./media/characters/zorkaiju/tail.svg"
  40169. }
  40170. },
  40171. tailExtended: {
  40172. height: math.unit(104, "feet"),
  40173. name: "Tail (Extended)",
  40174. image: {
  40175. source: "./media/characters/zorkaiju/tail-extended.svg"
  40176. }
  40177. },
  40178. tailBottom: {
  40179. height: math.unit(104, "feet"),
  40180. name: "Tail Bottom",
  40181. image: {
  40182. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40183. }
  40184. },
  40185. crystal: {
  40186. height: math.unit(27.54, "feet"),
  40187. name: "Crystal",
  40188. image: {
  40189. source: "./media/characters/zorkaiju/crystal.svg"
  40190. }
  40191. },
  40192. },
  40193. [
  40194. {
  40195. name: "Kaiju",
  40196. height: math.unit(325, "feet"),
  40197. default: true
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40203. {
  40204. front: {
  40205. height: math.unit(6 + 1/12, "feet"),
  40206. weight: math.unit(115, "lb"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/bailey-belfry/front.svg",
  40210. extra: 1240/1121,
  40211. bottom: 101/1341
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Normal",
  40218. height: math.unit(6 + 1/12, "feet"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40225. {
  40226. side: {
  40227. height: math.unit(4, "meters"),
  40228. weight: math.unit(250, "kg"),
  40229. name: "Side",
  40230. image: {
  40231. source: "./media/characters/blacky/side.svg",
  40232. extra: 1027/919,
  40233. bottom: 43/1070
  40234. }
  40235. },
  40236. maw: {
  40237. height: math.unit(1, "meters"),
  40238. name: "Maw",
  40239. image: {
  40240. source: "./media/characters/blacky/maw.svg"
  40241. }
  40242. },
  40243. paw: {
  40244. height: math.unit(1, "meters"),
  40245. name: "Paw",
  40246. image: {
  40247. source: "./media/characters/blacky/paw.svg"
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(4, "meters"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(170, "cm"),
  40264. weight: math.unit(66, "kg"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/thux-ei/front.svg",
  40268. extra: 1109/1011,
  40269. bottom: 8/1117
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(170, "cm"),
  40277. default: true
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40283. {
  40284. front: {
  40285. height: math.unit(5, "feet"),
  40286. weight: math.unit(120, "lb"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/roxanne-voltaire/front.svg",
  40290. extra: 1901/1779,
  40291. bottom: 53/1954
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(5, "feet"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Giant",
  40303. height: math.unit(50, "feet")
  40304. },
  40305. {
  40306. name: "Titan",
  40307. height: math.unit(500, "feet")
  40308. },
  40309. {
  40310. name: "Macro",
  40311. height: math.unit(5000, "feet")
  40312. },
  40313. {
  40314. name: "Megamacro",
  40315. height: math.unit(50000, "feet")
  40316. },
  40317. {
  40318. name: "Gigamacro",
  40319. height: math.unit(500000, "feet")
  40320. },
  40321. {
  40322. name: "Teramacro",
  40323. height: math.unit(5e6, "feet")
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(6 + 2/12, "feet"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/squeaks/front.svg",
  40335. extra: 1823/1768,
  40336. bottom: 138/1961
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Micro",
  40343. height: math.unit(0.5, "inches")
  40344. },
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(6 + 2/12, "feet"),
  40348. default: true
  40349. },
  40350. {
  40351. name: "Macro",
  40352. height: math.unit(600, "feet")
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(1.72, "meters"),
  40361. name: "Front",
  40362. image: {
  40363. source: "./media/characters/archinger/front.svg",
  40364. extra: 1861/1675,
  40365. bottom: 125/1986
  40366. }
  40367. },
  40368. back: {
  40369. height: math.unit(1.72, "meters"),
  40370. name: "Back",
  40371. image: {
  40372. source: "./media/characters/archinger/back.svg",
  40373. extra: 1844/1701,
  40374. bottom: 104/1948
  40375. }
  40376. },
  40377. cock: {
  40378. height: math.unit(0.59, "feet"),
  40379. name: "Cock",
  40380. image: {
  40381. source: "./media/characters/archinger/cock.svg"
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(1.72, "meters"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(84, "meters")
  40394. },
  40395. {
  40396. name: "Macro+",
  40397. height: math.unit(112, "meters")
  40398. },
  40399. {
  40400. name: "Macro++",
  40401. height: math.unit(960, "meters")
  40402. },
  40403. {
  40404. name: "Macro+++",
  40405. height: math.unit(4, "km")
  40406. },
  40407. {
  40408. name: "Macro++++",
  40409. height: math.unit(48, "km")
  40410. },
  40411. {
  40412. name: "Macro+++++",
  40413. height: math.unit(4500, "km")
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(5 + 5/12, "feet"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/alsnapz/front.svg",
  40425. extra: 1157/1065,
  40426. bottom: 42/1199
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Normal",
  40433. height: math.unit(5 + 5/12, "feet"),
  40434. default: true
  40435. },
  40436. ]
  40437. ))
  40438. characterMakers.push(() => makeCharacter(
  40439. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40440. {
  40441. side: {
  40442. height: math.unit(3.2, "earths"),
  40443. name: "Side",
  40444. image: {
  40445. source: "./media/characters/mag/side.svg",
  40446. extra: 1331/1008,
  40447. bottom: 52/1383
  40448. }
  40449. },
  40450. wing: {
  40451. height: math.unit(1.94, "earths"),
  40452. name: "Wing",
  40453. image: {
  40454. source: "./media/characters/mag/wing.svg"
  40455. }
  40456. },
  40457. dick: {
  40458. height: math.unit(1.8, "earths"),
  40459. name: "Dick",
  40460. image: {
  40461. source: "./media/characters/mag/dick.svg"
  40462. }
  40463. },
  40464. ass: {
  40465. height: math.unit(1.33, "earths"),
  40466. name: "Ass",
  40467. image: {
  40468. source: "./media/characters/mag/ass.svg"
  40469. }
  40470. },
  40471. head: {
  40472. height: math.unit(1.1, "earths"),
  40473. name: "Head",
  40474. image: {
  40475. source: "./media/characters/mag/head.svg"
  40476. }
  40477. },
  40478. maw: {
  40479. height: math.unit(1.62, "earths"),
  40480. name: "Maw",
  40481. image: {
  40482. source: "./media/characters/mag/maw.svg"
  40483. }
  40484. },
  40485. },
  40486. [
  40487. {
  40488. name: "Small",
  40489. height: math.unit(162, "feet")
  40490. },
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(3.2, "earths"),
  40494. default: true
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40500. {
  40501. front: {
  40502. height: math.unit(512, "feet"),
  40503. weight: math.unit(63509, "tonnes"),
  40504. name: "Front",
  40505. image: {
  40506. source: "./media/characters/vorrel-harroc/front.svg",
  40507. extra: 1075/1063,
  40508. bottom: 62/1137
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(10, "feet")
  40516. },
  40517. {
  40518. name: "Macro",
  40519. height: math.unit(512, "feet"),
  40520. default: true
  40521. },
  40522. {
  40523. name: "Megamacro",
  40524. height: math.unit(256, "miles")
  40525. },
  40526. {
  40527. name: "Gigamacro",
  40528. height: math.unit(4096, "miles")
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40534. {
  40535. side: {
  40536. height: math.unit(50, "feet"),
  40537. name: "Side",
  40538. image: {
  40539. source: "./media/characters/froimar/side.svg",
  40540. extra: 855/638,
  40541. bottom: 99/954
  40542. }
  40543. },
  40544. },
  40545. [
  40546. {
  40547. name: "Macro",
  40548. height: math.unit(50, "feet"),
  40549. default: true
  40550. },
  40551. ]
  40552. ))
  40553. characterMakers.push(() => makeCharacter(
  40554. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40555. {
  40556. front: {
  40557. height: math.unit(210, "miles"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/timothy/front.svg",
  40561. extra: 1007/943,
  40562. bottom: 62/1069
  40563. }
  40564. },
  40565. frontSkirt: {
  40566. height: math.unit(210, "miles"),
  40567. name: "Front (Skirt)",
  40568. image: {
  40569. source: "./media/characters/timothy/front-skirt.svg",
  40570. extra: 1007/943,
  40571. bottom: 62/1069
  40572. }
  40573. },
  40574. frontCoat: {
  40575. height: math.unit(210, "miles"),
  40576. name: "Front (Coat)",
  40577. image: {
  40578. source: "./media/characters/timothy/front-coat.svg",
  40579. extra: 1007/943,
  40580. bottom: 62/1069
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Macro",
  40587. height: math.unit(210, "miles"),
  40588. default: true
  40589. },
  40590. {
  40591. name: "Megamacro",
  40592. height: math.unit(210000, "miles")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(188, "feet"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/pyotr/front.svg",
  40604. extra: 1912/1826,
  40605. bottom: 18/1930
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Macro",
  40612. height: math.unit(188, "feet"),
  40613. default: true
  40614. },
  40615. {
  40616. name: "Megamacro",
  40617. height: math.unit(8, "miles")
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40623. {
  40624. side: {
  40625. height: math.unit(10, "feet"),
  40626. weight: math.unit(4500, "lb"),
  40627. name: "Side",
  40628. image: {
  40629. source: "./media/characters/ackart/side.svg",
  40630. extra: 1776/1668,
  40631. bottom: 116/1892
  40632. }
  40633. },
  40634. },
  40635. [
  40636. {
  40637. name: "Normal",
  40638. height: math.unit(10, "feet"),
  40639. default: true
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40645. {
  40646. side: {
  40647. height: math.unit(21, "feet"),
  40648. name: "Side",
  40649. image: {
  40650. source: "./media/characters/nolow/side.svg",
  40651. extra: 1484/1434,
  40652. bottom: 85/1569
  40653. }
  40654. },
  40655. sideErect: {
  40656. height: math.unit(21, "feet"),
  40657. name: "Side-erect",
  40658. image: {
  40659. source: "./media/characters/nolow/side-erect.svg",
  40660. extra: 1484/1434,
  40661. bottom: 85/1569
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Regular",
  40668. height: math.unit(12, "feet")
  40669. },
  40670. {
  40671. name: "Big Chee",
  40672. height: math.unit(21, "feet"),
  40673. default: true
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40679. {
  40680. front: {
  40681. height: math.unit(7, "feet"),
  40682. weight: math.unit(250, "lb"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/nines/front.svg",
  40686. extra: 1741/1607,
  40687. bottom: 41/1782
  40688. }
  40689. },
  40690. side: {
  40691. height: math.unit(7, "feet"),
  40692. weight: math.unit(250, "lb"),
  40693. name: "Side",
  40694. image: {
  40695. source: "./media/characters/nines/side.svg",
  40696. extra: 1854/1735,
  40697. bottom: 93/1947
  40698. }
  40699. },
  40700. back: {
  40701. height: math.unit(7, "feet"),
  40702. weight: math.unit(250, "lb"),
  40703. name: "Back",
  40704. image: {
  40705. source: "./media/characters/nines/back.svg",
  40706. extra: 1748/1615,
  40707. bottom: 20/1768
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Megamacro",
  40714. height: math.unit(99, "km"),
  40715. default: true
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(5 + 10/12, "feet"),
  40724. weight: math.unit(210, "lb"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/zenith/front.svg",
  40728. extra: 1531/1452,
  40729. bottom: 198/1729
  40730. }
  40731. },
  40732. back: {
  40733. height: math.unit(5 + 10/12, "feet"),
  40734. weight: math.unit(210, "lb"),
  40735. name: "Back",
  40736. image: {
  40737. source: "./media/characters/zenith/back.svg",
  40738. extra: 1571/1487,
  40739. bottom: 75/1646
  40740. }
  40741. },
  40742. },
  40743. [
  40744. {
  40745. name: "Normal",
  40746. height: math.unit(5 + 10/12, "feet"),
  40747. default: true
  40748. }
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(4, "feet"),
  40756. weight: math.unit(60, "lb"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/jasper/front.svg",
  40760. extra: 1450/1379,
  40761. bottom: 19/1469
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(4, "feet"),
  40769. default: true
  40770. },
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(6 + 5/12, "feet"),
  40778. weight: math.unit(290, "lb"),
  40779. name: "Front",
  40780. image: {
  40781. source: "./media/characters/tiberius-thyben/front.svg",
  40782. extra: 757/739,
  40783. bottom: 39/796
  40784. }
  40785. },
  40786. },
  40787. [
  40788. {
  40789. name: "Micro",
  40790. height: math.unit(1.5, "inches")
  40791. },
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(6 + 5/12, "feet"),
  40795. default: true
  40796. },
  40797. {
  40798. name: "Macro",
  40799. height: math.unit(300, "feet")
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40805. {
  40806. front: {
  40807. height: math.unit(5 + 6/12, "feet"),
  40808. weight: math.unit(60, "kg"),
  40809. name: "Front",
  40810. image: {
  40811. source: "./media/characters/sabre/front.svg",
  40812. extra: 738/671,
  40813. bottom: 27/765
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Teeny",
  40820. height: math.unit(2, "inches")
  40821. },
  40822. {
  40823. name: "Smol",
  40824. height: math.unit(8, "inches")
  40825. },
  40826. {
  40827. name: "Normal",
  40828. height: math.unit(5 + 6/12, "feet"),
  40829. default: true
  40830. },
  40831. {
  40832. name: "Mini-Macro",
  40833. height: math.unit(15, "feet")
  40834. },
  40835. {
  40836. name: "Macro",
  40837. height: math.unit(50, "feet")
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(6 + 4/12, "feet"),
  40846. weight: math.unit(170, "lb"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/charlie/front.svg",
  40850. extra: 1348/1228,
  40851. bottom: 15/1363
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Macro",
  40858. height: math.unit(1700, "meters"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "MegaMacro",
  40863. height: math.unit(20400, "meters")
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40869. {
  40870. front: {
  40871. height: math.unit(6 + 3/12, "feet"),
  40872. weight: math.unit(185, "lb"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/susan-grant/front.svg",
  40876. extra: 1351/1327,
  40877. bottom: 26/1377
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(6 + 3/12, "feet"),
  40885. default: true
  40886. },
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(225, "feet")
  40890. },
  40891. {
  40892. name: "Macro+",
  40893. height: math.unit(900, "feet")
  40894. },
  40895. {
  40896. name: "MegaMacro",
  40897. height: math.unit(14400, "feet")
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(5 + 4/12, "feet"),
  40906. weight: math.unit(110, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/axel-isanov/front.svg",
  40910. extra: 1096/1065,
  40911. bottom: 13/1109
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(5 + 4/12, "feet"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(9, "feet"),
  40928. weight: math.unit(467, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/necahual/front.svg",
  40932. extra: 920/873,
  40933. bottom: 26/946
  40934. }
  40935. },
  40936. back: {
  40937. height: math.unit(9, "feet"),
  40938. weight: math.unit(467, "lb"),
  40939. name: "Back",
  40940. image: {
  40941. source: "./media/characters/necahual/back.svg",
  40942. extra: 930/884,
  40943. bottom: 16/946
  40944. }
  40945. },
  40946. frontUnderwear: {
  40947. height: math.unit(9, "feet"),
  40948. weight: math.unit(467, "lb"),
  40949. name: "Front (Underwear)",
  40950. image: {
  40951. source: "./media/characters/necahual/front-underwear.svg",
  40952. extra: 920/873,
  40953. bottom: 26/946
  40954. }
  40955. },
  40956. frontDressed: {
  40957. height: math.unit(9, "feet"),
  40958. weight: math.unit(467, "lb"),
  40959. name: "Front (Dressed)",
  40960. image: {
  40961. source: "./media/characters/necahual/front-dressed.svg",
  40962. extra: 920/873,
  40963. bottom: 26/946
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Comprsesed",
  40970. height: math.unit(9, "feet")
  40971. },
  40972. {
  40973. name: "Natural",
  40974. height: math.unit(15, "feet"),
  40975. default: true
  40976. },
  40977. {
  40978. name: "Boosted",
  40979. height: math.unit(50, "feet")
  40980. },
  40981. {
  40982. name: "Boosted+",
  40983. height: math.unit(150, "feet")
  40984. },
  40985. {
  40986. name: "Max",
  40987. height: math.unit(500, "feet")
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40993. {
  40994. front: {
  40995. height: math.unit(22 + 1/12, "feet"),
  40996. weight: math.unit(3200, "lb"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/theo-acacia/front.svg",
  41000. extra: 1796/1741,
  41001. bottom: 83/1879
  41002. }
  41003. },
  41004. frontUnderwear: {
  41005. height: math.unit(22 + 1/12, "feet"),
  41006. weight: math.unit(3200, "lb"),
  41007. name: "Front (Underwear)",
  41008. image: {
  41009. source: "./media/characters/theo-acacia/front-underwear.svg",
  41010. extra: 1796/1741,
  41011. bottom: 83/1879
  41012. }
  41013. },
  41014. frontNude: {
  41015. height: math.unit(22 + 1/12, "feet"),
  41016. weight: math.unit(3200, "lb"),
  41017. name: "Front (Nude)",
  41018. image: {
  41019. source: "./media/characters/theo-acacia/front-nude.svg",
  41020. extra: 1796/1741,
  41021. bottom: 83/1879
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(22 + 1/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(20, "feet"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/astra/front.svg",
  41041. extra: 1850/1714,
  41042. bottom: 106/1956
  41043. }
  41044. },
  41045. frontUndressed: {
  41046. height: math.unit(20, "feet"),
  41047. name: "Front (Undressed)",
  41048. image: {
  41049. source: "./media/characters/astra/front-undressed.svg",
  41050. extra: 1926/1749,
  41051. bottom: 0/1926
  41052. }
  41053. },
  41054. hand: {
  41055. height: math.unit(1.53, "feet"),
  41056. name: "Hand",
  41057. image: {
  41058. source: "./media/characters/astra/hand.svg"
  41059. }
  41060. },
  41061. paw: {
  41062. height: math.unit(1.53, "feet"),
  41063. name: "Paw",
  41064. image: {
  41065. source: "./media/characters/astra/paw.svg"
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Smallest",
  41072. height: math.unit(20, "feet")
  41073. },
  41074. {
  41075. name: "Normal",
  41076. height: math.unit(1e9, "miles"),
  41077. default: true
  41078. },
  41079. {
  41080. name: "Larger",
  41081. height: math.unit(5, "multiverses")
  41082. },
  41083. {
  41084. name: "Largest",
  41085. height: math.unit(1e9, "multiverses")
  41086. },
  41087. ]
  41088. ))
  41089. characterMakers.push(() => makeCharacter(
  41090. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41091. {
  41092. front: {
  41093. height: math.unit(8, "feet"),
  41094. name: "Front",
  41095. image: {
  41096. source: "./media/characters/breanna/front.svg",
  41097. extra: 1912/1632,
  41098. bottom: 33/1945
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Smallest",
  41105. height: math.unit(8, "feet")
  41106. },
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(1, "mile"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Maximum",
  41114. height: math.unit(1500000000000, "lightyears")
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41120. {
  41121. front: {
  41122. height: math.unit(5 + 11/12, "feet"),
  41123. weight: math.unit(155, "lb"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/cai/front.svg",
  41127. extra: 1823/1702,
  41128. bottom: 32/1855
  41129. }
  41130. },
  41131. back: {
  41132. height: math.unit(5 + 11/12, "feet"),
  41133. weight: math.unit(155, "lb"),
  41134. name: "Back",
  41135. image: {
  41136. source: "./media/characters/cai/back.svg",
  41137. extra: 1809/1708,
  41138. bottom: 31/1840
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(5 + 11/12, "feet"),
  41146. default: true
  41147. },
  41148. {
  41149. name: "Big",
  41150. height: math.unit(15, "feet")
  41151. },
  41152. {
  41153. name: "Macro",
  41154. height: math.unit(200, "feet")
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(5 + 6/12, "feet"),
  41163. weight: math.unit(160, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41167. extra: 1227/1174,
  41168. bottom: 37/1264
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(444, "meters"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(18 + 7/12, "feet"),
  41185. name: "Front",
  41186. image: {
  41187. source: "./media/characters/rex/front.svg",
  41188. extra: 1941/1807,
  41189. bottom: 66/2007
  41190. }
  41191. },
  41192. back: {
  41193. height: math.unit(18 + 7/12, "feet"),
  41194. name: "Back",
  41195. image: {
  41196. source: "./media/characters/rex/back.svg",
  41197. extra: 1937/1822,
  41198. bottom: 42/1979
  41199. }
  41200. },
  41201. boot: {
  41202. height: math.unit(3.45, "feet"),
  41203. name: "Boot",
  41204. image: {
  41205. source: "./media/characters/rex/boot.svg"
  41206. }
  41207. },
  41208. paw: {
  41209. height: math.unit(4.17, "feet"),
  41210. name: "Paw",
  41211. image: {
  41212. source: "./media/characters/rex/paw.svg"
  41213. }
  41214. },
  41215. head: {
  41216. height: math.unit(6.728, "feet"),
  41217. name: "Head",
  41218. image: {
  41219. source: "./media/characters/rex/head.svg"
  41220. }
  41221. },
  41222. },
  41223. [
  41224. {
  41225. name: "Nano",
  41226. height: math.unit(18 + 7/12, "feet")
  41227. },
  41228. {
  41229. name: "Micro",
  41230. height: math.unit(1.5, "megameters")
  41231. },
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(440, "megameters"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Macro",
  41239. height: math.unit(2.5, "gigameters")
  41240. },
  41241. {
  41242. name: "Gigamacro",
  41243. height: math.unit(2, "galaxies")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41249. {
  41250. side: {
  41251. height: math.unit(32, "feet"),
  41252. weight: math.unit(250000, "lb"),
  41253. name: "Side",
  41254. image: {
  41255. source: "./media/characters/silverwing/side.svg",
  41256. extra: 1100/1019,
  41257. bottom: 204/1304
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(32, "feet"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(6 + 6/12, "feet"),
  41274. weight: math.unit(350, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/tristan-hawthorne/front.svg",
  41278. extra: 1159/1124,
  41279. bottom: 37/1196
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(6 + 6/12, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(5 + 11/12, "feet"),
  41296. weight: math.unit(190, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/mizu/front.svg",
  41300. extra: 1988/1788,
  41301. bottom: 14/2002
  41302. }
  41303. },
  41304. },
  41305. [
  41306. {
  41307. name: "Normal",
  41308. height: math.unit(5 + 11/12, "feet"),
  41309. default: true
  41310. },
  41311. ]
  41312. ))
  41313. characterMakers.push(() => makeCharacter(
  41314. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41315. {
  41316. front: {
  41317. height: math.unit(6, "feet"),
  41318. name: "Front",
  41319. image: {
  41320. source: "./media/characters/moonlight-rose-terra/front.svg",
  41321. extra: 1434/1252,
  41322. bottom: 48/1482
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "TRAPPIST-1D",
  41329. height: math.unit(4992*2, "km")
  41330. },
  41331. {
  41332. name: "Earth",
  41333. height: math.unit(6367*2, "km"),
  41334. default: true
  41335. },
  41336. {
  41337. name: "Kepler-22b",
  41338. height: math.unit(15282*2, "km")
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41344. {
  41345. front: {
  41346. height: math.unit(6, "feet"),
  41347. name: "Front",
  41348. image: {
  41349. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41350. extra: 1851/1712,
  41351. bottom: 0/1851
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Enceladus",
  41358. height: math.unit(513*2, "km")
  41359. },
  41360. {
  41361. name: "Europe",
  41362. height: math.unit(1560*2, "km")
  41363. },
  41364. {
  41365. name: "Neptune",
  41366. height: math.unit(24622*2, "km"),
  41367. default: true
  41368. },
  41369. {
  41370. name: "CoRoT-9b",
  41371. height: math.unit(75067*2, "km")
  41372. },
  41373. ]
  41374. ))
  41375. characterMakers.push(() => makeCharacter(
  41376. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41377. {
  41378. front: {
  41379. height: math.unit(6, "feet"),
  41380. name: "Front",
  41381. image: {
  41382. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41383. extra: 1367/1286,
  41384. bottom: 55/1422
  41385. }
  41386. },
  41387. },
  41388. [
  41389. {
  41390. name: "Saturn",
  41391. height: math.unit(58232*2, "km")
  41392. },
  41393. {
  41394. name: "Jupiter",
  41395. height: math.unit(69911*2, "km"),
  41396. default: true
  41397. },
  41398. {
  41399. name: "HD 100546 b",
  41400. height: math.unit(482938, "km")
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(1.7, "feet"),
  41409. weight: math.unit(50, "lb"),
  41410. name: "Front",
  41411. image: {
  41412. source: "./media/characters/dechroma/front.svg",
  41413. extra: 1095/859,
  41414. bottom: 64/1159
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Normal",
  41421. height: math.unit(1.7, "feet"),
  41422. default: true
  41423. },
  41424. ]
  41425. ))
  41426. characterMakers.push(() => makeCharacter(
  41427. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41428. {
  41429. side: {
  41430. height: math.unit(30, "feet"),
  41431. name: "Side",
  41432. image: {
  41433. source: "./media/characters/veluren-thanazel/side.svg",
  41434. extra: 1611/633,
  41435. bottom: 118/1729
  41436. }
  41437. },
  41438. front: {
  41439. height: math.unit(30, "feet"),
  41440. name: "Front",
  41441. image: {
  41442. source: "./media/characters/veluren-thanazel/front.svg",
  41443. extra: 1486/636,
  41444. bottom: 238/1724
  41445. }
  41446. },
  41447. head: {
  41448. height: math.unit(21.4, "feet"),
  41449. name: "Head",
  41450. image: {
  41451. source: "./media/characters/veluren-thanazel/head.svg"
  41452. }
  41453. },
  41454. genitals: {
  41455. height: math.unit(19.4, "feet"),
  41456. name: "Genitals",
  41457. image: {
  41458. source: "./media/characters/veluren-thanazel/genitals.svg"
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Social",
  41465. height: math.unit(6, "feet")
  41466. },
  41467. {
  41468. name: "Play",
  41469. height: math.unit(12, "feet")
  41470. },
  41471. {
  41472. name: "True",
  41473. height: math.unit(30, "feet"),
  41474. default: true
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41480. {
  41481. front: {
  41482. height: math.unit(7 + 6/12, "feet"),
  41483. weight: math.unit(500, "kg"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/arcturas/front.svg",
  41487. extra: 1700/1500,
  41488. bottom: 145/1845
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(7 + 6/12, "feet"),
  41496. default: true
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41502. {
  41503. side: {
  41504. height: math.unit(6, "feet"),
  41505. weight: math.unit(2, "tons"),
  41506. name: "Side",
  41507. image: {
  41508. source: "./media/characters/vitaen/side.svg",
  41509. extra: 1157/617,
  41510. bottom: 122/1279
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Normal",
  41517. height: math.unit(6, "feet"),
  41518. default: true
  41519. },
  41520. ]
  41521. ))
  41522. characterMakers.push(() => makeCharacter(
  41523. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41524. {
  41525. front: {
  41526. height: math.unit(19, "feet"),
  41527. name: "Front",
  41528. image: {
  41529. source: "./media/characters/fia-dreamweaver/front.svg",
  41530. extra: 1630/1504,
  41531. bottom: 25/1655
  41532. }
  41533. },
  41534. },
  41535. [
  41536. {
  41537. name: "Normal",
  41538. height: math.unit(19, "feet"),
  41539. default: true
  41540. },
  41541. ]
  41542. ))
  41543. characterMakers.push(() => makeCharacter(
  41544. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41545. {
  41546. front: {
  41547. height: math.unit(5 + 4/12, "feet"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/artan/front.svg",
  41551. extra: 1618/1535,
  41552. bottom: 46/1664
  41553. }
  41554. },
  41555. back: {
  41556. height: math.unit(5 + 4/12, "feet"),
  41557. name: "Back",
  41558. image: {
  41559. source: "./media/characters/artan/back.svg",
  41560. extra: 1618/1543,
  41561. bottom: 31/1649
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(5 + 4/12, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41575. {
  41576. side: {
  41577. height: math.unit(182, "cm"),
  41578. weight: math.unit(1000, "lb"),
  41579. name: "Side",
  41580. image: {
  41581. source: "./media/characters/silver-dragon/side.svg",
  41582. extra: 710/287,
  41583. bottom: 88/798
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(182, "cm"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41597. {
  41598. side: {
  41599. height: math.unit(6 + 6/12, "feet"),
  41600. weight: math.unit(1.5, "tons"),
  41601. name: "Side",
  41602. image: {
  41603. source: "./media/characters/zephyr/side.svg",
  41604. extra: 1433/586,
  41605. bottom: 109/1542
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(6 + 6/12, "feet"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41619. {
  41620. side: {
  41621. height: math.unit(1, "feet"),
  41622. name: "Side",
  41623. image: {
  41624. source: "./media/characters/vixye/side.svg",
  41625. extra: 632/541,
  41626. bottom: 0/632
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(1, "feet"),
  41634. default: true
  41635. },
  41636. {
  41637. name: "True",
  41638. height: math.unit(1e15, "multiverses")
  41639. },
  41640. ]
  41641. ))
  41642. characterMakers.push(() => makeCharacter(
  41643. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41644. {
  41645. front: {
  41646. height: math.unit(8 + 2/12, "feet"),
  41647. weight: math.unit(650, "lb"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41651. extra: 1174/1137,
  41652. bottom: 82/1256
  41653. }
  41654. },
  41655. back: {
  41656. height: math.unit(8 + 2/12, "feet"),
  41657. weight: math.unit(650, "lb"),
  41658. name: "Back",
  41659. image: {
  41660. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41661. extra: 1204/1157,
  41662. bottom: 46/1250
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Wildform",
  41669. height: math.unit(8 + 2/12, "feet"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(18, "feet"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/cyphin/front.svg",
  41682. extra: 970/886,
  41683. bottom: 42/1012
  41684. }
  41685. },
  41686. back: {
  41687. height: math.unit(18, "feet"),
  41688. name: "Back",
  41689. image: {
  41690. source: "./media/characters/cyphin/back.svg",
  41691. extra: 1009/894,
  41692. bottom: 24/1033
  41693. }
  41694. },
  41695. head: {
  41696. height: math.unit(5.05, "feet"),
  41697. name: "Head",
  41698. image: {
  41699. source: "./media/characters/cyphin/head.svg"
  41700. }
  41701. },
  41702. tailbud: {
  41703. height: math.unit(5, "feet"),
  41704. name: "Tailbud",
  41705. image: {
  41706. source: "./media/characters/cyphin/tailbud.svg"
  41707. }
  41708. },
  41709. },
  41710. [
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41715. {
  41716. side: {
  41717. height: math.unit(10, "feet"),
  41718. weight: math.unit(6, "tons"),
  41719. name: "Side",
  41720. image: {
  41721. source: "./media/characters/raijin/side.svg",
  41722. extra: 1529/613,
  41723. bottom: 337/1866
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Normal",
  41730. height: math.unit(10, "feet"),
  41731. default: true
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41737. {
  41738. side: {
  41739. height: math.unit(9, "feet"),
  41740. name: "Side",
  41741. image: {
  41742. source: "./media/characters/nilghais/side.svg",
  41743. extra: 1047/744,
  41744. bottom: 91/1138
  41745. }
  41746. },
  41747. head: {
  41748. height: math.unit(3.14, "feet"),
  41749. name: "Head",
  41750. image: {
  41751. source: "./media/characters/nilghais/head.svg"
  41752. }
  41753. },
  41754. mouth: {
  41755. height: math.unit(4.6, "feet"),
  41756. name: "Mouth",
  41757. image: {
  41758. source: "./media/characters/nilghais/mouth.svg"
  41759. }
  41760. },
  41761. wings: {
  41762. height: math.unit(24, "feet"),
  41763. name: "Wings",
  41764. image: {
  41765. source: "./media/characters/nilghais/wings.svg"
  41766. }
  41767. },
  41768. ass: {
  41769. height: math.unit(6.12, "feet"),
  41770. name: "Ass",
  41771. image: {
  41772. source: "./media/characters/nilghais/ass.svg"
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Normal",
  41779. height: math.unit(9, "feet"),
  41780. default: true
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41786. {
  41787. regular: {
  41788. height: math.unit(16 + 2/12, "feet"),
  41789. weight: math.unit(2300, "lb"),
  41790. name: "Regular",
  41791. image: {
  41792. source: "./media/characters/zolgar/regular.svg",
  41793. extra: 1246/1004,
  41794. bottom: 124/1370
  41795. }
  41796. },
  41797. boxers: {
  41798. height: math.unit(16 + 2/12, "feet"),
  41799. weight: math.unit(2300, "lb"),
  41800. name: "Boxers",
  41801. image: {
  41802. source: "./media/characters/zolgar/boxers.svg",
  41803. extra: 1246/1004,
  41804. bottom: 124/1370
  41805. }
  41806. },
  41807. armored: {
  41808. height: math.unit(16 + 2/12, "feet"),
  41809. weight: math.unit(2300, "lb"),
  41810. name: "Armored",
  41811. image: {
  41812. source: "./media/characters/zolgar/armored.svg",
  41813. extra: 1246/1004,
  41814. bottom: 124/1370
  41815. }
  41816. },
  41817. goth: {
  41818. height: math.unit(16 + 2/12, "feet"),
  41819. weight: math.unit(2300, "lb"),
  41820. name: "Goth",
  41821. image: {
  41822. source: "./media/characters/zolgar/goth.svg",
  41823. extra: 1246/1004,
  41824. bottom: 124/1370
  41825. }
  41826. },
  41827. },
  41828. [
  41829. {
  41830. name: "Shrunken Down",
  41831. height: math.unit(9 + 2/12, "feet")
  41832. },
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(16 + 2/12, "feet"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41842. {
  41843. front: {
  41844. height: math.unit(6, "feet"),
  41845. weight: math.unit(168, "lb"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/luca/front.svg",
  41849. extra: 841/667,
  41850. bottom: 102/943
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(6, "feet"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41864. {
  41865. side: {
  41866. height: math.unit(7 + 3/12, "feet"),
  41867. weight: math.unit(312, "lb"),
  41868. name: "Side",
  41869. image: {
  41870. source: "./media/characters/zezo/side.svg",
  41871. extra: 1192/1067,
  41872. bottom: 63/1255
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Normal",
  41879. height: math.unit(7 + 3/12, "feet"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(5 + 5/12, "feet"),
  41889. weight: math.unit(170, "lb"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/mayso/front.svg",
  41893. extra: 1215/1108,
  41894. bottom: 16/1231
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(5 + 5/12, "feet"),
  41902. default: true
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(4 + 3/12, "feet"),
  41911. weight: math.unit(80, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/hess/front.svg",
  41915. extra: 1200/1123,
  41916. bottom: 16/1216
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(4 + 3/12, "feet"),
  41924. default: true
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41930. {
  41931. front: {
  41932. height: math.unit(1.9, "meters"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/ashgar/front.svg",
  41936. extra: 1177/1146,
  41937. bottom: 99/1276
  41938. }
  41939. },
  41940. back: {
  41941. height: math.unit(1.9, "meters"),
  41942. name: "Back",
  41943. image: {
  41944. source: "./media/characters/ashgar/back.svg",
  41945. extra: 1201/1183,
  41946. bottom: 53/1254
  41947. }
  41948. },
  41949. feral: {
  41950. height: math.unit(1.4, "meters"),
  41951. name: "Feral",
  41952. image: {
  41953. source: "./media/characters/ashgar/feral.svg",
  41954. extra: 370/345,
  41955. bottom: 45/415
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Normal",
  41962. height: math.unit(1.9, "meters"),
  41963. default: true
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41969. {
  41970. regular: {
  41971. height: math.unit(6, "feet"),
  41972. weight: math.unit(220, "lb"),
  41973. name: "Regular",
  41974. image: {
  41975. source: "./media/characters/phillip/regular.svg",
  41976. extra: 1373/1277,
  41977. bottom: 75/1448
  41978. }
  41979. },
  41980. dressed: {
  41981. height: math.unit(6, "feet"),
  41982. weight: math.unit(220, "lb"),
  41983. name: "Dressed",
  41984. image: {
  41985. source: "./media/characters/phillip/dressed.svg",
  41986. extra: 1373/1277,
  41987. bottom: 75/1448
  41988. }
  41989. },
  41990. paw: {
  41991. height: math.unit(1.44, "feet"),
  41992. name: "Paw",
  41993. image: {
  41994. source: "./media/characters/phillip/paw.svg"
  41995. }
  41996. },
  41997. },
  41998. [
  41999. {
  42000. name: "Normal",
  42001. height: math.unit(6, "feet"),
  42002. default: true
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42008. {
  42009. side: {
  42010. height: math.unit(42, "feet"),
  42011. name: "Side",
  42012. image: {
  42013. source: "./media/characters/uvula/side.svg",
  42014. extra: 683/586,
  42015. bottom: 60/743
  42016. }
  42017. },
  42018. front: {
  42019. height: math.unit(42, "feet"),
  42020. name: "Front",
  42021. image: {
  42022. source: "./media/characters/uvula/front.svg",
  42023. extra: 705/613,
  42024. bottom: 54/759
  42025. }
  42026. },
  42027. maw: {
  42028. height: math.unit(23.5, "feet"),
  42029. name: "Maw",
  42030. image: {
  42031. source: "./media/characters/uvula/maw.svg"
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Original Size",
  42038. height: math.unit(14, "inches")
  42039. },
  42040. {
  42041. name: "Human Size",
  42042. height: math.unit(6, "feet")
  42043. },
  42044. {
  42045. name: "Big",
  42046. height: math.unit(42, "feet"),
  42047. default: true
  42048. },
  42049. {
  42050. name: "Bigger",
  42051. height: math.unit(100, "feet")
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(5 + 11/12, "feet"),
  42060. name: "Front",
  42061. image: {
  42062. source: "./media/characters/lannah/front.svg",
  42063. extra: 1208/1113,
  42064. bottom: 97/1305
  42065. }
  42066. },
  42067. },
  42068. [
  42069. {
  42070. name: "Normal",
  42071. height: math.unit(5 + 11/12, "feet"),
  42072. default: true
  42073. },
  42074. ]
  42075. ))
  42076. characterMakers.push(() => makeCharacter(
  42077. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42078. {
  42079. front: {
  42080. height: math.unit(6 + 3/12, "feet"),
  42081. weight: math.unit(3.5, "tons"),
  42082. name: "Front",
  42083. image: {
  42084. source: "./media/characters/emberflame/front.svg",
  42085. extra: 1198/672,
  42086. bottom: 82/1280
  42087. }
  42088. },
  42089. side: {
  42090. height: math.unit(6 + 3/12, "feet"),
  42091. weight: math.unit(3.5, "tons"),
  42092. name: "Side",
  42093. image: {
  42094. source: "./media/characters/emberflame/side.svg",
  42095. extra: 938/527,
  42096. bottom: 56/994
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(6 + 3/12, "feet"),
  42104. default: true
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42110. {
  42111. side: {
  42112. height: math.unit(17.5, "feet"),
  42113. weight: math.unit(35, "tons"),
  42114. name: "Side",
  42115. image: {
  42116. source: "./media/characters/sophie-ambrose/side.svg",
  42117. extra: 1573/1242,
  42118. bottom: 71/1644
  42119. }
  42120. },
  42121. maw: {
  42122. height: math.unit(7.4, "feet"),
  42123. name: "Maw",
  42124. image: {
  42125. source: "./media/characters/sophie-ambrose/maw.svg"
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Normal",
  42132. height: math.unit(17.5, "feet"),
  42133. default: true
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(280, "feet"),
  42142. weight: math.unit(550, "tons"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/king-mugi/front.svg",
  42146. extra: 1102/947,
  42147. bottom: 104/1206
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "King Mugi",
  42154. height: math.unit(280, "feet"),
  42155. default: true
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(64, "meters"),
  42164. name: "Front",
  42165. image: {
  42166. source: "./media/characters/nova-fox/front.svg",
  42167. extra: 1310/1246,
  42168. bottom: 65/1375
  42169. }
  42170. },
  42171. },
  42172. [
  42173. {
  42174. name: "Macro",
  42175. height: math.unit(64, "meters"),
  42176. default: true
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(6 + 3/12, "feet"),
  42185. weight: math.unit(170, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/sam-bat/front.svg",
  42189. extra: 1601/1411,
  42190. bottom: 125/1726
  42191. }
  42192. },
  42193. back: {
  42194. height: math.unit(6 + 3/12, "feet"),
  42195. weight: math.unit(170, "lb"),
  42196. name: "Back",
  42197. image: {
  42198. source: "./media/characters/sam-bat/back.svg",
  42199. extra: 1577/1405,
  42200. bottom: 58/1635
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Normal",
  42207. height: math.unit(6 + 3/12, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42214. {
  42215. front: {
  42216. height: math.unit(59, "feet"),
  42217. weight: math.unit(40000, "lb"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/inari/front.svg",
  42221. extra: 1884/1350,
  42222. bottom: 95/1979
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Gigantamax",
  42229. height: math.unit(59, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(5 + 8/12, "feet"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/elizabeth/front.svg",
  42242. extra: 1395/1298,
  42243. bottom: 54/1449
  42244. }
  42245. },
  42246. mouth: {
  42247. height: math.unit(1.97, "feet"),
  42248. name: "Mouth",
  42249. image: {
  42250. source: "./media/characters/elizabeth/mouth.svg"
  42251. }
  42252. },
  42253. foot: {
  42254. height: math.unit(1.17, "feet"),
  42255. name: "Foot",
  42256. image: {
  42257. source: "./media/characters/elizabeth/foot.svg"
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Normal",
  42264. height: math.unit(5 + 8/12, "feet"),
  42265. default: true
  42266. },
  42267. {
  42268. name: "Minimacro",
  42269. height: math.unit(18, "feet")
  42270. },
  42271. {
  42272. name: "Macro",
  42273. height: math.unit(180, "feet")
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42279. {
  42280. front: {
  42281. height: math.unit(5 + 2/12, "feet"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/october-gossamer/front.svg",
  42285. extra: 505/454,
  42286. bottom: 7/512
  42287. }
  42288. },
  42289. back: {
  42290. height: math.unit(5 + 2/12, "feet"),
  42291. name: "Back",
  42292. image: {
  42293. source: "./media/characters/october-gossamer/back.svg",
  42294. extra: 501/454,
  42295. bottom: 11/512
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(5 + 2/12, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(5, "feet"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/epiglottis/front.svg",
  42315. extra: 923/849,
  42316. bottom: 17/940
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Original Size",
  42323. height: math.unit(10, "inches")
  42324. },
  42325. {
  42326. name: "Human Size",
  42327. height: math.unit(5, "feet"),
  42328. default: true
  42329. },
  42330. {
  42331. name: "Big",
  42332. height: math.unit(25, "feet")
  42333. },
  42334. {
  42335. name: "Bigger",
  42336. height: math.unit(50, "feet")
  42337. },
  42338. {
  42339. name: "oh lawd",
  42340. height: math.unit(75, "feet")
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(2 + 4/12, "feet"),
  42349. weight: math.unit(60, "lb"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/lerm/front.svg",
  42353. extra: 796/790,
  42354. bottom: 79/875
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(2 + 4/12, "feet"),
  42362. default: true
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(5.5, "feet"),
  42371. weight: math.unit(130, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/xena-nebadon/front.svg",
  42375. extra: 1828/1730,
  42376. bottom: 79/1907
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Tiny Puppy",
  42383. height: math.unit(3, "inches")
  42384. },
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(5.5, "feet"),
  42388. default: true
  42389. },
  42390. {
  42391. name: "Lotta Lady",
  42392. height: math.unit(12, "feet")
  42393. },
  42394. {
  42395. name: "Pretty Big",
  42396. height: math.unit(100, "feet")
  42397. },
  42398. {
  42399. name: "Big",
  42400. height: math.unit(500, "feet")
  42401. },
  42402. {
  42403. name: "Skyscraper Toys",
  42404. height: math.unit(2500, "feet")
  42405. },
  42406. {
  42407. name: "Plane Catcher",
  42408. height: math.unit(8, "miles")
  42409. },
  42410. {
  42411. name: "Planet Toys",
  42412. height: math.unit(15, "earths")
  42413. },
  42414. {
  42415. name: "Stardust",
  42416. height: math.unit(0.25, "galaxies")
  42417. },
  42418. {
  42419. name: "Snacks",
  42420. height: math.unit(70, "universes")
  42421. },
  42422. ]
  42423. ))
  42424. characterMakers.push(() => makeCharacter(
  42425. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42426. {
  42427. front: {
  42428. height: math.unit(1.6, "meters"),
  42429. weight: math.unit(60, "kg"),
  42430. name: "Front",
  42431. image: {
  42432. source: "./media/characters/bounty/front.svg",
  42433. extra: 1426/1308,
  42434. bottom: 15/1441
  42435. }
  42436. },
  42437. back: {
  42438. height: math.unit(1.6, "meters"),
  42439. weight: math.unit(60, "kg"),
  42440. name: "Back",
  42441. image: {
  42442. source: "./media/characters/bounty/back.svg",
  42443. extra: 1417/1307,
  42444. bottom: 8/1425
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(1.6, "meters"),
  42452. default: true
  42453. },
  42454. {
  42455. name: "Macro",
  42456. height: math.unit(300, "meters")
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42462. {
  42463. front: {
  42464. height: math.unit(2 + 8/12, "feet"),
  42465. weight: math.unit(15, "lb"),
  42466. name: "Front",
  42467. image: {
  42468. source: "./media/characters/mochi/front.svg",
  42469. extra: 1022/852,
  42470. bottom: 435/1457
  42471. }
  42472. },
  42473. back: {
  42474. height: math.unit(2 + 8/12, "feet"),
  42475. weight: math.unit(15, "lb"),
  42476. name: "Back",
  42477. image: {
  42478. source: "./media/characters/mochi/back.svg",
  42479. extra: 1335/1119,
  42480. bottom: 39/1374
  42481. }
  42482. },
  42483. bird: {
  42484. height: math.unit(2 + 8/12, "feet"),
  42485. weight: math.unit(15, "lb"),
  42486. name: "Bird",
  42487. image: {
  42488. source: "./media/characters/mochi/bird.svg",
  42489. extra: 1251/1113,
  42490. bottom: 178/1429
  42491. }
  42492. },
  42493. kaiju: {
  42494. height: math.unit(154, "feet"),
  42495. weight: math.unit(1e7, "lb"),
  42496. name: "Kaiju",
  42497. image: {
  42498. source: "./media/characters/mochi/kaiju.svg",
  42499. extra: 460/324,
  42500. bottom: 40/500
  42501. }
  42502. },
  42503. head: {
  42504. height: math.unit(1.21, "feet"),
  42505. name: "Head",
  42506. image: {
  42507. source: "./media/characters/mochi/head.svg"
  42508. }
  42509. },
  42510. alternateTail: {
  42511. height: math.unit(2 + 8/12, "feet"),
  42512. weight: math.unit(45, "lb"),
  42513. name: "Alternate Tail",
  42514. image: {
  42515. source: "./media/characters/mochi/alternate-tail.svg",
  42516. extra: 139/76,
  42517. bottom: 45/184
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Micro",
  42524. height: math.unit(2, "inches")
  42525. },
  42526. {
  42527. name: "Normal",
  42528. height: math.unit(2 + 8/12, "feet"),
  42529. default: true
  42530. },
  42531. {
  42532. name: "Macro",
  42533. height: math.unit(106, "feet")
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42539. {
  42540. front: {
  42541. height: math.unit(5.67, "feet"),
  42542. weight: math.unit(135, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/sarel/front.svg",
  42546. extra: 865/788,
  42547. bottom: 97/962
  42548. }
  42549. },
  42550. back: {
  42551. height: math.unit(5.67, "feet"),
  42552. weight: math.unit(135, "lb"),
  42553. name: "Back",
  42554. image: {
  42555. source: "./media/characters/sarel/back.svg",
  42556. extra: 857/777,
  42557. bottom: 32/889
  42558. }
  42559. },
  42560. chozoan: {
  42561. height: math.unit(5.67, "feet"),
  42562. weight: math.unit(135, "lb"),
  42563. name: "Chozoan",
  42564. image: {
  42565. source: "./media/characters/sarel/chozoan.svg",
  42566. extra: 865/788,
  42567. bottom: 97/962
  42568. }
  42569. },
  42570. current: {
  42571. height: math.unit(5.67, "feet"),
  42572. weight: math.unit(135, "lb"),
  42573. name: "Current",
  42574. image: {
  42575. source: "./media/characters/sarel/current.svg",
  42576. extra: 865/788,
  42577. bottom: 97/962
  42578. }
  42579. },
  42580. head: {
  42581. height: math.unit(1.77, "feet"),
  42582. name: "Head",
  42583. image: {
  42584. source: "./media/characters/sarel/head.svg"
  42585. }
  42586. },
  42587. claws: {
  42588. height: math.unit(1.8, "feet"),
  42589. name: "Claws",
  42590. image: {
  42591. source: "./media/characters/sarel/claws.svg"
  42592. }
  42593. },
  42594. clawsAlt: {
  42595. height: math.unit(1.8, "feet"),
  42596. name: "Claws-alt",
  42597. image: {
  42598. source: "./media/characters/sarel/claws-alt.svg"
  42599. }
  42600. },
  42601. },
  42602. [
  42603. {
  42604. name: "Normal",
  42605. height: math.unit(5.67, "feet"),
  42606. default: true
  42607. },
  42608. ]
  42609. ))
  42610. characterMakers.push(() => makeCharacter(
  42611. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42612. {
  42613. front: {
  42614. height: math.unit(5500, "feet"),
  42615. name: "Front",
  42616. image: {
  42617. source: "./media/characters/alyonia/front.svg",
  42618. extra: 1200/1135,
  42619. bottom: 29/1229
  42620. }
  42621. },
  42622. back: {
  42623. height: math.unit(5500, "feet"),
  42624. name: "Back",
  42625. image: {
  42626. source: "./media/characters/alyonia/back.svg",
  42627. extra: 1205/1138,
  42628. bottom: 10/1215
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Small",
  42635. height: math.unit(10, "feet")
  42636. },
  42637. {
  42638. name: "Macro",
  42639. height: math.unit(500, "feet")
  42640. },
  42641. {
  42642. name: "Mega Macro",
  42643. height: math.unit(5500, "feet"),
  42644. default: true
  42645. },
  42646. {
  42647. name: "Mega Macro+",
  42648. height: math.unit(500000, "feet")
  42649. },
  42650. {
  42651. name: "Giga Macro",
  42652. height: math.unit(3000, "miles")
  42653. },
  42654. {
  42655. name: "Tera Macro",
  42656. height: math.unit(2.8e6, "miles")
  42657. },
  42658. {
  42659. name: "Galactic",
  42660. height: math.unit(120000, "lightyears")
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42666. {
  42667. werewolf: {
  42668. height: math.unit(8, "feet"),
  42669. weight: math.unit(425, "lb"),
  42670. name: "Werewolf",
  42671. image: {
  42672. source: "./media/characters/autumn/werewolf.svg",
  42673. extra: 2154/2031,
  42674. bottom: 160/2314
  42675. }
  42676. },
  42677. human: {
  42678. height: math.unit(5 + 8/12, "feet"),
  42679. weight: math.unit(150, "lb"),
  42680. name: "Human",
  42681. image: {
  42682. source: "./media/characters/autumn/human.svg",
  42683. extra: 1200/1149,
  42684. bottom: 30/1230
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(8, "feet"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42698. {
  42699. front: {
  42700. height: math.unit(8 + 5/12, "feet"),
  42701. weight: math.unit(825, "lb"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/cobalt-charizard/front.svg",
  42705. extra: 1268/1155,
  42706. bottom: 122/1390
  42707. }
  42708. },
  42709. side: {
  42710. height: math.unit(8 + 5/12, "feet"),
  42711. weight: math.unit(825, "lb"),
  42712. name: "Side",
  42713. image: {
  42714. source: "./media/characters/cobalt-charizard/side.svg",
  42715. extra: 1348/1257,
  42716. bottom: 58/1406
  42717. }
  42718. },
  42719. gMax: {
  42720. height: math.unit(134 + 11/12, "feet"),
  42721. name: "G-Max",
  42722. image: {
  42723. source: "./media/characters/cobalt-charizard/g-max.svg",
  42724. extra: 1835/1541,
  42725. bottom: 151/1986
  42726. }
  42727. },
  42728. },
  42729. [
  42730. {
  42731. name: "Normal",
  42732. height: math.unit(8 + 5/12, "feet"),
  42733. default: true
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(6 + 3/12, "feet"),
  42742. weight: math.unit(210, "lb"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/stella/front.svg",
  42746. extra: 3549/3335,
  42747. bottom: 51/3600
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(6 + 3/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(5, "feet"),
  42764. weight: math.unit(90, "lb"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/riley-bishop/front.svg",
  42768. extra: 1450/1428,
  42769. bottom: 152/1602
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(5, "feet"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42783. {
  42784. side: {
  42785. height: math.unit(8 + 2/12, "feet"),
  42786. weight: math.unit(500, "kg"),
  42787. name: "Side",
  42788. image: {
  42789. source: "./media/characters/theo-arcanine/side.svg",
  42790. extra: 1342/1074,
  42791. bottom: 111/1453
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Normal",
  42798. height: math.unit(8 + 2/12, "feet"),
  42799. default: true
  42800. },
  42801. ]
  42802. ))
  42803. characterMakers.push(() => makeCharacter(
  42804. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42805. {
  42806. front: {
  42807. height: math.unit(4, "feet"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/kali/front.svg",
  42811. extra: 1921/1357,
  42812. bottom: 70/1991
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Normal",
  42819. height: math.unit(4, "feet"),
  42820. default: true
  42821. },
  42822. {
  42823. name: "Macro",
  42824. height: math.unit(32, "meters")
  42825. },
  42826. {
  42827. name: "Macro+",
  42828. height: math.unit(150, "meters")
  42829. },
  42830. {
  42831. name: "Megamacro",
  42832. height: math.unit(7500, "meters")
  42833. },
  42834. {
  42835. name: "Megamacro+",
  42836. height: math.unit(80, "kilometers")
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42842. {
  42843. side: {
  42844. height: math.unit(5 + 11/12, "feet"),
  42845. weight: math.unit(236, "lb"),
  42846. name: "Side",
  42847. image: {
  42848. source: "./media/characters/gapp/side.svg",
  42849. extra: 775/340,
  42850. bottom: 58/833
  42851. }
  42852. },
  42853. mouth: {
  42854. height: math.unit(2.98, "feet"),
  42855. name: "Mouth",
  42856. image: {
  42857. source: "./media/characters/gapp/mouth.svg"
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(5 + 1/12, "feet"),
  42865. default: true
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(6, "feet"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/persephone/front.svg",
  42877. extra: 1895/1717,
  42878. bottom: 96/1991
  42879. }
  42880. },
  42881. back: {
  42882. height: math.unit(6, "feet"),
  42883. name: "Back",
  42884. image: {
  42885. source: "./media/characters/persephone/back.svg",
  42886. extra: 1868/1679,
  42887. bottom: 26/1894
  42888. }
  42889. },
  42890. casual: {
  42891. height: math.unit(6, "feet"),
  42892. name: "Casual",
  42893. image: {
  42894. source: "./media/characters/persephone/casual.svg",
  42895. extra: 1713/1541,
  42896. bottom: 76/1789
  42897. }
  42898. },
  42899. },
  42900. [
  42901. {
  42902. name: "Human Size",
  42903. height: math.unit(6, "feet")
  42904. },
  42905. {
  42906. name: "Big Steppy",
  42907. height: math.unit(600, "meters"),
  42908. default: true
  42909. },
  42910. {
  42911. name: "Galaxy Brain",
  42912. height: math.unit(1, "zettameter")
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42918. {
  42919. front: {
  42920. height: math.unit(1.85, "meters"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/riley-foxthing/front.svg",
  42924. extra: 1495/1354,
  42925. bottom: 122/1617
  42926. }
  42927. },
  42928. frontAlt: {
  42929. height: math.unit(1.85, "meters"),
  42930. name: "Front (Alt)",
  42931. image: {
  42932. source: "./media/characters/riley-foxthing/front-alt.svg",
  42933. extra: 1572/1389,
  42934. bottom: 116/1688
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal Sized",
  42941. height: math.unit(1.85, "meters"),
  42942. default: true
  42943. },
  42944. {
  42945. name: "Quite Sizable",
  42946. height: math.unit(5, "meters")
  42947. },
  42948. {
  42949. name: "Rather Large",
  42950. height: math.unit(20, "meters")
  42951. },
  42952. {
  42953. name: "Macro",
  42954. height: math.unit(450, "meters")
  42955. },
  42956. {
  42957. name: "Giga",
  42958. height: math.unit(5, "km")
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(6, "feet"),
  42967. weight: math.unit(200, "lb"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/blizzard/front.svg",
  42971. extra: 1136/990,
  42972. bottom: 136/1272
  42973. }
  42974. },
  42975. back: {
  42976. height: math.unit(6, "feet"),
  42977. weight: math.unit(200, "lb"),
  42978. name: "Back",
  42979. image: {
  42980. source: "./media/characters/blizzard/back.svg",
  42981. extra: 1175/1034,
  42982. bottom: 97/1272
  42983. }
  42984. },
  42985. sitting: {
  42986. height: math.unit(3.725, "feet"),
  42987. weight: math.unit(200, "lb"),
  42988. name: "Sitting",
  42989. image: {
  42990. source: "./media/characters/blizzard/sitting.svg",
  42991. extra: 581/485,
  42992. bottom: 90/671
  42993. }
  42994. },
  42995. frontWizard: {
  42996. height: math.unit(7.9, "feet"),
  42997. weight: math.unit(200, "lb"),
  42998. name: "Front (Wizard)",
  42999. image: {
  43000. source: "./media/characters/blizzard/front-wizard.svg"
  43001. }
  43002. },
  43003. backWizard: {
  43004. height: math.unit(7.9, "feet"),
  43005. weight: math.unit(200, "lb"),
  43006. name: "Back (Wizard)",
  43007. image: {
  43008. source: "./media/characters/blizzard/back-wizard.svg"
  43009. }
  43010. },
  43011. frontNsfw: {
  43012. height: math.unit(6, "feet"),
  43013. weight: math.unit(200, "lb"),
  43014. name: "Front (NSFW)",
  43015. image: {
  43016. source: "./media/characters/blizzard/front-nsfw.svg",
  43017. extra: 1136/990,
  43018. bottom: 136/1272
  43019. }
  43020. },
  43021. backNsfw: {
  43022. height: math.unit(6, "feet"),
  43023. weight: math.unit(200, "lb"),
  43024. name: "Back (NSFW)",
  43025. image: {
  43026. source: "./media/characters/blizzard/back-nsfw.svg",
  43027. extra: 1175/1034,
  43028. bottom: 97/1272
  43029. }
  43030. },
  43031. sittingNsfw: {
  43032. height: math.unit(3.725, "feet"),
  43033. weight: math.unit(200, "lb"),
  43034. name: "Sitting (NSFW)",
  43035. image: {
  43036. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43037. extra: 581/485,
  43038. bottom: 90/671
  43039. }
  43040. },
  43041. wizardFrontNsfw: {
  43042. height: math.unit(7.9, "feet"),
  43043. weight: math.unit(200, "lb"),
  43044. name: "Wizard (Front, NSFW)",
  43045. image: {
  43046. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43047. }
  43048. },
  43049. },
  43050. [
  43051. {
  43052. name: "Normal",
  43053. height: math.unit(6, "feet"),
  43054. default: true
  43055. },
  43056. ]
  43057. ))
  43058. characterMakers.push(() => makeCharacter(
  43059. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43060. {
  43061. front: {
  43062. height: math.unit(5 + 2/12, "feet"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/lumi/front.svg",
  43066. extra: 1328/1268,
  43067. bottom: 103/1431
  43068. }
  43069. },
  43070. back: {
  43071. height: math.unit(5 + 2/12, "feet"),
  43072. name: "Back",
  43073. image: {
  43074. source: "./media/characters/lumi/back.svg",
  43075. extra: 1381/1327,
  43076. bottom: 43/1424
  43077. }
  43078. },
  43079. },
  43080. [
  43081. {
  43082. name: "Normal",
  43083. height: math.unit(5 + 2/12, "feet"),
  43084. default: true
  43085. },
  43086. ]
  43087. ))
  43088. characterMakers.push(() => makeCharacter(
  43089. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43090. {
  43091. front: {
  43092. height: math.unit(5 + 9/12, "feet"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/aliya-cotton/front.svg",
  43096. extra: 577/564,
  43097. bottom: 29/606
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(5 + 9/12, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(2.7, "meters"),
  43114. weight: math.unit(25000, "lb"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/noah-luxray/front.svg",
  43118. extra: 1644/825,
  43119. bottom: 339/1983
  43120. }
  43121. },
  43122. side: {
  43123. height: math.unit(2.97, "meters"),
  43124. weight: math.unit(25000, "lb"),
  43125. name: "Side",
  43126. image: {
  43127. source: "./media/characters/noah-luxray/side.svg",
  43128. extra: 1319/650,
  43129. bottom: 163/1482
  43130. }
  43131. },
  43132. dick: {
  43133. height: math.unit(7.4, "feet"),
  43134. weight: math.unit(2500, "lb"),
  43135. name: "Dick",
  43136. image: {
  43137. source: "./media/characters/noah-luxray/dick.svg"
  43138. }
  43139. },
  43140. dickAlt: {
  43141. height: math.unit(10.83, "feet"),
  43142. weight: math.unit(2500, "lb"),
  43143. name: "Dick-alt",
  43144. image: {
  43145. source: "./media/characters/noah-luxray/dick-alt.svg"
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "BIG",
  43152. height: math.unit(2.7, "meters"),
  43153. default: true
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43159. {
  43160. standing: {
  43161. height: math.unit(183, "cm"),
  43162. weight: math.unit(68, "kg"),
  43163. name: "Standing",
  43164. image: {
  43165. source: "./media/characters/arion/standing.svg",
  43166. extra: 1869/1807,
  43167. bottom: 93/1962
  43168. }
  43169. },
  43170. reclining: {
  43171. height: math.unit(70.5, "cm"),
  43172. weight: math.unit(68, "lb"),
  43173. name: "Reclining",
  43174. image: {
  43175. source: "./media/characters/arion/reclining.svg",
  43176. extra: 937/870,
  43177. bottom: 63/1000
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Colossus Size, Low",
  43184. height: math.unit(33, "meters"),
  43185. default: true
  43186. },
  43187. {
  43188. name: "Colossus Size, Mid",
  43189. height: math.unit(52, "meters")
  43190. },
  43191. {
  43192. name: "Colossus Size, High",
  43193. height: math.unit(60, "meters")
  43194. },
  43195. {
  43196. name: "Titan Size, Low",
  43197. height: math.unit(91, "meters"),
  43198. },
  43199. {
  43200. name: "Titan Size, Mid",
  43201. height: math.unit(122, "meters")
  43202. },
  43203. {
  43204. name: "Titan Size, High",
  43205. height: math.unit(162, "meters")
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(53, "meters"),
  43214. name: "Front",
  43215. image: {
  43216. source: "./media/characters/stellar-marbey/front.svg",
  43217. extra: 1913/1805,
  43218. bottom: 92/2005
  43219. }
  43220. },
  43221. back: {
  43222. height: math.unit(53, "meters"),
  43223. name: "Back",
  43224. image: {
  43225. source: "./media/characters/stellar-marbey/back.svg",
  43226. extra: 1960/1851,
  43227. bottom: 28/1988
  43228. }
  43229. },
  43230. mouth: {
  43231. height: math.unit(3.5, "meters"),
  43232. name: "Mouth",
  43233. image: {
  43234. source: "./media/characters/stellar-marbey/mouth.svg"
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Macro",
  43241. height: math.unit(53, "meters"),
  43242. default: true
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(8 + 1/12, "feet"),
  43251. weight: math.unit(233, "lb"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/matsu/front.svg",
  43255. extra: 832/772,
  43256. bottom: 40/872
  43257. }
  43258. },
  43259. back: {
  43260. height: math.unit(8 + 1/12, "feet"),
  43261. weight: math.unit(233, "lb"),
  43262. name: "Back",
  43263. image: {
  43264. source: "./media/characters/matsu/back.svg",
  43265. extra: 839/780,
  43266. bottom: 47/886
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(8 + 1/12, "feet"),
  43274. default: true
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(4, "feet"),
  43283. weight: math.unit(148, "lb"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/thiz/front.svg",
  43287. extra: 1913/1748,
  43288. bottom: 62/1975
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(4, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(7 + 6/12, "feet"),
  43305. weight: math.unit(267, "lb"),
  43306. name: "Front",
  43307. image: {
  43308. source: "./media/characters/marcel/front.svg",
  43309. extra: 1221/1096,
  43310. bottom: 76/1297
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(7 + 6/12, "feet"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43324. {
  43325. side: {
  43326. height: math.unit(42, "meters"),
  43327. name: "Side",
  43328. image: {
  43329. source: "./media/characters/flake/side.svg",
  43330. extra: 1525/1306,
  43331. bottom: 209/1734
  43332. }
  43333. },
  43334. },
  43335. [
  43336. {
  43337. name: "Normal",
  43338. height: math.unit(42, "meters"),
  43339. default: true
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43345. {
  43346. dressed: {
  43347. height: math.unit(6 + 4/12, "feet"),
  43348. weight: math.unit(520, "lb"),
  43349. name: "Dressed",
  43350. image: {
  43351. source: "./media/characters/someonne/dressed.svg",
  43352. extra: 1020/1010,
  43353. bottom: 178/1198
  43354. }
  43355. },
  43356. undressed: {
  43357. height: math.unit(6 + 4/12, "feet"),
  43358. weight: math.unit(520, "lb"),
  43359. name: "Undressed",
  43360. image: {
  43361. source: "./media/characters/someonne/undressed.svg",
  43362. extra: 1019/1014,
  43363. bottom: 169/1188
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(6 + 4/12, "feet"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(3, "feet"),
  43380. weight: math.unit(30, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/till/front.svg",
  43384. extra: 892/823,
  43385. bottom: 55/947
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(3, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43399. {
  43400. front: {
  43401. height: math.unit(9 + 8/12, "feet"),
  43402. weight: math.unit(800, "lb"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/sydney-heki/front.svg",
  43406. extra: 1360/1300,
  43407. bottom: 22/1382
  43408. }
  43409. },
  43410. back: {
  43411. height: math.unit(9 + 8/12, "feet"),
  43412. weight: math.unit(800, "lb"),
  43413. name: "Back",
  43414. image: {
  43415. source: "./media/characters/sydney-heki/back.svg",
  43416. extra: 1356/1293,
  43417. bottom: 12/1368
  43418. }
  43419. },
  43420. frontDressed: {
  43421. height: math.unit(9 + 8/12, "feet"),
  43422. weight: math.unit(800, "lb"),
  43423. name: "Front-dressed",
  43424. image: {
  43425. source: "./media/characters/sydney-heki/front-dressed.svg",
  43426. extra: 1360/1300,
  43427. bottom: 22/1382
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Normal",
  43434. height: math.unit(9 + 8/12, "feet"),
  43435. default: true
  43436. },
  43437. {
  43438. name: "Macro",
  43439. height: math.unit(500, "feet")
  43440. },
  43441. {
  43442. name: "Megamacro",
  43443. height: math.unit(3.6, "miles")
  43444. },
  43445. ]
  43446. ))
  43447. characterMakers.push(() => makeCharacter(
  43448. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43449. {
  43450. front: {
  43451. height: math.unit(200, "cm"),
  43452. weight: math.unit(250, "lb"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/fowler-karlsson/front.svg",
  43456. extra: 897/845,
  43457. bottom: 123/1020
  43458. }
  43459. },
  43460. back: {
  43461. height: math.unit(200, "cm"),
  43462. weight: math.unit(250, "lb"),
  43463. name: "Back",
  43464. image: {
  43465. source: "./media/characters/fowler-karlsson/back.svg",
  43466. extra: 999/944,
  43467. bottom: 26/1025
  43468. }
  43469. },
  43470. dick: {
  43471. height: math.unit(1.92, "feet"),
  43472. weight: math.unit(150, "lb"),
  43473. name: "Dick",
  43474. image: {
  43475. source: "./media/characters/fowler-karlsson/dick.svg"
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(200, "cm"),
  43483. default: true
  43484. },
  43485. {
  43486. name: "Smaller Macro",
  43487. height: math.unit(90, "m")
  43488. },
  43489. {
  43490. name: "Macro",
  43491. height: math.unit(150, "m")
  43492. },
  43493. {
  43494. name: "Bigger Macro",
  43495. height: math.unit(300, "m")
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43501. {
  43502. side: {
  43503. height: math.unit(8 + 2/12, "feet"),
  43504. weight: math.unit(1, "tonne"),
  43505. name: "Side",
  43506. image: {
  43507. source: "./media/characters/rylide/side.svg",
  43508. extra: 1318/1034,
  43509. bottom: 106/1424
  43510. }
  43511. },
  43512. sitting: {
  43513. height: math.unit(303, "cm"),
  43514. weight: math.unit(1, "tonne"),
  43515. name: "Sitting",
  43516. image: {
  43517. source: "./media/characters/rylide/sitting.svg",
  43518. extra: 1303/1103,
  43519. bottom: 36/1339
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(8 + 2/12, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(5 + 10/12, "feet"),
  43536. weight: math.unit(160, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/pudask/front.svg",
  43540. extra: 1616/1590,
  43541. bottom: 161/1777
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Ferret Height",
  43548. height: math.unit(2 + 5/12, "feet")
  43549. },
  43550. {
  43551. name: "Canon Height",
  43552. height: math.unit(5 + 10/12, "feet"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(3 + 6/12, "feet"),
  43562. weight: math.unit(60, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/ramita/front.svg",
  43566. extra: 1402/1232,
  43567. bottom: 62/1464
  43568. }
  43569. },
  43570. dressed: {
  43571. height: math.unit(3 + 6/12, "feet"),
  43572. weight: math.unit(60, "lb"),
  43573. name: "Dressed",
  43574. image: {
  43575. source: "./media/characters/ramita/dressed.svg",
  43576. extra: 1534/1249,
  43577. bottom: 50/1584
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(3 + 6/12, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(8, "feet"),
  43594. name: "Front",
  43595. image: {
  43596. source: "./media/characters/ark/front.svg",
  43597. extra: 772/693,
  43598. bottom: 45/817
  43599. }
  43600. },
  43601. },
  43602. [
  43603. {
  43604. name: "Normal",
  43605. height: math.unit(8, "feet"),
  43606. default: true
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43612. {
  43613. front: {
  43614. height: math.unit(6, "feet"),
  43615. weight: math.unit(250, "lb"),
  43616. volume: math.unit(5/8, "gallons"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/ludwig-horn/front.svg",
  43620. extra: 1782/1635,
  43621. bottom: 96/1878
  43622. }
  43623. },
  43624. back: {
  43625. height: math.unit(6, "feet"),
  43626. weight: math.unit(250, "lb"),
  43627. volume: math.unit(5/8, "gallons"),
  43628. name: "Back",
  43629. image: {
  43630. source: "./media/characters/ludwig-horn/back.svg",
  43631. extra: 1874/1729,
  43632. bottom: 27/1901
  43633. }
  43634. },
  43635. dick: {
  43636. height: math.unit(1.05, "feet"),
  43637. weight: math.unit(15, "lb"),
  43638. volume: math.unit(5/8, "gallons"),
  43639. name: "Dick",
  43640. image: {
  43641. source: "./media/characters/ludwig-horn/dick.svg"
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Small",
  43648. height: math.unit(6, "feet")
  43649. },
  43650. {
  43651. name: "Typical",
  43652. height: math.unit(12, "feet"),
  43653. default: true
  43654. },
  43655. {
  43656. name: "Building",
  43657. height: math.unit(80, "feet")
  43658. },
  43659. {
  43660. name: "Town",
  43661. height: math.unit(800, "feet")
  43662. },
  43663. {
  43664. name: "Kingdom",
  43665. height: math.unit(80000, "feet")
  43666. },
  43667. {
  43668. name: "Planet",
  43669. height: math.unit(8000000, "feet")
  43670. },
  43671. {
  43672. name: "Universe",
  43673. height: math.unit(8000000000, "feet")
  43674. },
  43675. {
  43676. name: "Transcended",
  43677. height: math.unit(8e27, "feet")
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(5, "feet"),
  43686. weight: math.unit(50, "kg"),
  43687. name: "Front",
  43688. image: {
  43689. source: "./media/characters/biot-avery/front.svg",
  43690. extra: 1295/1232,
  43691. bottom: 86/1381
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Normal",
  43698. height: math.unit(5, "feet"),
  43699. default: true
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(6, "feet"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/kitsune-kiro/front.svg",
  43711. extra: 1270/1158,
  43712. bottom: 42/1312
  43713. }
  43714. },
  43715. frontAlt: {
  43716. height: math.unit(6, "feet"),
  43717. name: "Front-alt",
  43718. image: {
  43719. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43720. extra: 1130/1081,
  43721. bottom: 36/1166
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Smol",
  43728. height: math.unit(3, "feet")
  43729. },
  43730. {
  43731. name: "Normal",
  43732. height: math.unit(6, "feet"),
  43733. default: true
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43739. {
  43740. front: {
  43741. height: math.unit(6, "feet"),
  43742. weight: math.unit(125, "lb"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/jack-thatcher/front.svg",
  43746. extra: 1474/1370,
  43747. bottom: 26/1500
  43748. }
  43749. },
  43750. back: {
  43751. height: math.unit(6, "feet"),
  43752. weight: math.unit(125, "lb"),
  43753. name: "Back",
  43754. image: {
  43755. source: "./media/characters/jack-thatcher/back.svg",
  43756. extra: 1489/1384,
  43757. bottom: 18/1507
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Normal",
  43764. height: math.unit(6, "feet"),
  43765. default: true
  43766. },
  43767. {
  43768. name: "Macro",
  43769. height: math.unit(75, "feet")
  43770. },
  43771. {
  43772. name: "Macro-er",
  43773. height: math.unit(250, "feet")
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(7, "feet"),
  43782. weight: math.unit(110, "kg"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/max-hyper/front.svg",
  43786. extra: 1969/1881,
  43787. bottom: 49/2018
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(7, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(5 + 5/12, "feet"),
  43804. weight: math.unit(160, "lb"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/spook/front.svg",
  43808. extra: 794/791,
  43809. bottom: 54/848
  43810. }
  43811. },
  43812. back: {
  43813. height: math.unit(5 + 5/12, "feet"),
  43814. weight: math.unit(160, "lb"),
  43815. name: "Back",
  43816. image: {
  43817. source: "./media/characters/spook/back.svg",
  43818. extra: 812/798,
  43819. bottom: 32/844
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(5 + 5/12, "feet"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43833. {
  43834. front: {
  43835. height: math.unit(18, "feet"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/xeaduulix/front.svg",
  43839. extra: 1380/1166,
  43840. bottom: 110/1490
  43841. }
  43842. },
  43843. back: {
  43844. height: math.unit(18, "feet"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/xeaduulix/back.svg",
  43848. extra: 1592/1170,
  43849. bottom: 128/1720
  43850. }
  43851. },
  43852. frontNsfw: {
  43853. height: math.unit(18, "feet"),
  43854. name: "Front (NSFW)",
  43855. image: {
  43856. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43857. extra: 1380/1166,
  43858. bottom: 110/1490
  43859. }
  43860. },
  43861. backNsfw: {
  43862. height: math.unit(18, "feet"),
  43863. name: "Back (NSFW)",
  43864. image: {
  43865. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43866. extra: 1592/1170,
  43867. bottom: 128/1720
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Normal",
  43874. height: math.unit(18, "feet"),
  43875. default: true
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43881. {
  43882. spreadWings: {
  43883. height: math.unit(20, "feet"),
  43884. name: "Spread Wings",
  43885. image: {
  43886. source: "./media/characters/fledge/spread-wings.svg",
  43887. extra: 693/635,
  43888. bottom: 26/719
  43889. }
  43890. },
  43891. front: {
  43892. height: math.unit(20, "feet"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/fledge/front.svg",
  43896. extra: 684/637,
  43897. bottom: 18/702
  43898. }
  43899. },
  43900. frontAlt: {
  43901. height: math.unit(20, "feet"),
  43902. name: "Front (Alt)",
  43903. image: {
  43904. source: "./media/characters/fledge/front-alt.svg",
  43905. extra: 708/664,
  43906. bottom: 13/721
  43907. }
  43908. },
  43909. back: {
  43910. height: math.unit(20, "feet"),
  43911. name: "Back",
  43912. image: {
  43913. source: "./media/characters/fledge/back.svg",
  43914. extra: 718/634,
  43915. bottom: 22/740
  43916. }
  43917. },
  43918. head: {
  43919. height: math.unit(5.55, "feet"),
  43920. name: "Head",
  43921. image: {
  43922. source: "./media/characters/fledge/head.svg"
  43923. }
  43924. },
  43925. headAlt: {
  43926. height: math.unit(5.1, "feet"),
  43927. name: "Head (Alt)",
  43928. image: {
  43929. source: "./media/characters/fledge/head-alt.svg"
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Small",
  43936. height: math.unit(6 + 2/12, "feet")
  43937. },
  43938. {
  43939. name: "Big",
  43940. height: math.unit(20, "feet"),
  43941. default: true
  43942. },
  43943. {
  43944. name: "Giant",
  43945. height: math.unit(100, "feet")
  43946. },
  43947. {
  43948. name: "Macro",
  43949. height: math.unit(200, "feet")
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43955. {
  43956. front: {
  43957. height: math.unit(1, "meter"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/atlas-morenai/front.svg",
  43961. extra: 1275/1043,
  43962. bottom: 19/1294
  43963. }
  43964. },
  43965. back: {
  43966. height: math.unit(1, "meter"),
  43967. name: "Back",
  43968. image: {
  43969. source: "./media/characters/atlas-morenai/back.svg",
  43970. extra: 1141/1001,
  43971. bottom: 25/1166
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(1, "meter"),
  43979. default: true
  43980. },
  43981. {
  43982. name: "Magic-Infused",
  43983. height: math.unit(5, "meters")
  43984. },
  43985. ]
  43986. ))
  43987. characterMakers.push(() => makeCharacter(
  43988. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43989. {
  43990. front: {
  43991. height: math.unit(5, "meters"),
  43992. name: "Front",
  43993. image: {
  43994. source: "./media/characters/cintia/front.svg",
  43995. extra: 1312/1228,
  43996. bottom: 38/1350
  43997. }
  43998. },
  43999. back: {
  44000. height: math.unit(5, "meters"),
  44001. name: "Back",
  44002. image: {
  44003. source: "./media/characters/cintia/back.svg",
  44004. extra: 1260/1166,
  44005. bottom: 98/1358
  44006. }
  44007. },
  44008. frontDick: {
  44009. height: math.unit(5, "meters"),
  44010. name: "Front (Dick)",
  44011. image: {
  44012. source: "./media/characters/cintia/front-dick.svg",
  44013. extra: 1312/1228,
  44014. bottom: 38/1350
  44015. }
  44016. },
  44017. backDick: {
  44018. height: math.unit(5, "meters"),
  44019. name: "Back (Dick)",
  44020. image: {
  44021. source: "./media/characters/cintia/back-dick.svg",
  44022. extra: 1260/1166,
  44023. bottom: 98/1358
  44024. }
  44025. },
  44026. bust: {
  44027. height: math.unit(1.97, "meters"),
  44028. name: "Bust",
  44029. image: {
  44030. source: "./media/characters/cintia/bust.svg",
  44031. extra: 617/565,
  44032. bottom: 0/617
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Normal",
  44039. height: math.unit(5, "meters"),
  44040. default: true
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44046. {
  44047. side: {
  44048. height: math.unit(100, "feet"),
  44049. name: "Side",
  44050. image: {
  44051. source: "./media/characters/denora/side.svg",
  44052. extra: 875/803,
  44053. bottom: 9/884
  44054. }
  44055. },
  44056. },
  44057. [
  44058. {
  44059. name: "Standard",
  44060. height: math.unit(100, "feet"),
  44061. default: true
  44062. },
  44063. {
  44064. name: "Grand",
  44065. height: math.unit(1000, "feet")
  44066. },
  44067. {
  44068. name: "Conquering",
  44069. height: math.unit(10000, "feet")
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44075. {
  44076. dressed: {
  44077. height: math.unit(8 + 5/12, "feet"),
  44078. weight: math.unit(700, "lb"),
  44079. name: "Dressed",
  44080. image: {
  44081. source: "./media/characters/kiva/dressed.svg",
  44082. extra: 1102/1055,
  44083. bottom: 60/1162
  44084. }
  44085. },
  44086. nude: {
  44087. height: math.unit(8 + 5/12, "feet"),
  44088. weight: math.unit(700, "lb"),
  44089. name: "Nude",
  44090. image: {
  44091. source: "./media/characters/kiva/nude.svg",
  44092. extra: 1102/1055,
  44093. bottom: 60/1162
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Base Height",
  44100. height: math.unit(8 + 5/12, "feet"),
  44101. default: true
  44102. },
  44103. {
  44104. name: "Macro",
  44105. height: math.unit(100, "feet")
  44106. },
  44107. {
  44108. name: "Max",
  44109. height: math.unit(3280, "feet")
  44110. },
  44111. ]
  44112. ))
  44113. characterMakers.push(() => makeCharacter(
  44114. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44115. {
  44116. front: {
  44117. height: math.unit(6 + 8/12, "feet"),
  44118. weight: math.unit(250, "lb"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/ztragon/front.svg",
  44122. extra: 1825/1684,
  44123. bottom: 98/1923
  44124. }
  44125. },
  44126. },
  44127. [
  44128. {
  44129. name: "Normal",
  44130. height: math.unit(6 + 8/12, "feet"),
  44131. default: true
  44132. },
  44133. {
  44134. name: "Macro",
  44135. height: math.unit(80, "feet")
  44136. },
  44137. ]
  44138. ))
  44139. characterMakers.push(() => makeCharacter(
  44140. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44141. {
  44142. front: {
  44143. height: math.unit(10.4, "feet"),
  44144. weight: math.unit(2, "tons"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/yesenia/front.svg",
  44148. extra: 1479/1474,
  44149. bottom: 233/1712
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(10.4, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44163. {
  44164. normal: {
  44165. height: math.unit(6 + 1/12, "feet"),
  44166. weight: math.unit(180, "lb"),
  44167. name: "Normal",
  44168. image: {
  44169. source: "./media/characters/leanne-lycheborne/normal.svg",
  44170. extra: 1748/1660,
  44171. bottom: 98/1846
  44172. }
  44173. },
  44174. were: {
  44175. height: math.unit(12, "feet"),
  44176. weight: math.unit(1600, "lb"),
  44177. name: "Were",
  44178. image: {
  44179. source: "./media/characters/leanne-lycheborne/were.svg",
  44180. extra: 1485/1432,
  44181. bottom: 66/1551
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(6 + 1/12, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44195. {
  44196. side: {
  44197. height: math.unit(13, "feet"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/kira-tyler/side.svg",
  44201. extra: 693/393,
  44202. bottom: 58/751
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(13, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44216. {
  44217. front: {
  44218. height: math.unit(10.3, "feet"),
  44219. weight: math.unit(150, "lb"),
  44220. name: "Front",
  44221. image: {
  44222. source: "./media/characters/blaze/front.svg",
  44223. extra: 1378/1286,
  44224. bottom: 172/1550
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(10.3, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44238. {
  44239. side: {
  44240. height: math.unit(2, "meters"),
  44241. weight: math.unit(400, "kg"),
  44242. name: "Side",
  44243. image: {
  44244. source: "./media/characters/anu/side.svg",
  44245. extra: 506/394,
  44246. bottom: 18/524
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Humanoid",
  44253. height: math.unit(2, "meters")
  44254. },
  44255. {
  44256. name: "Normal",
  44257. height: math.unit(5, "meters"),
  44258. default: true
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(5 + 5/12, "feet"),
  44267. weight: math.unit(170, "lb"),
  44268. name: "Front",
  44269. image: {
  44270. source: "./media/characters/synx-the-lynx/front.svg",
  44271. extra: 1893/1745,
  44272. bottom: 17/1910
  44273. }
  44274. },
  44275. side: {
  44276. height: math.unit(5 + 5/12, "feet"),
  44277. weight: math.unit(170, "lb"),
  44278. name: "Side",
  44279. image: {
  44280. source: "./media/characters/synx-the-lynx/side.svg",
  44281. extra: 1884/1740,
  44282. bottom: 39/1923
  44283. }
  44284. },
  44285. back: {
  44286. height: math.unit(5 + 5/12, "feet"),
  44287. weight: math.unit(170, "lb"),
  44288. name: "Back",
  44289. image: {
  44290. source: "./media/characters/synx-the-lynx/back.svg",
  44291. extra: 1903/1755,
  44292. bottom: 14/1917
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(5 + 5/12, "feet"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44306. {
  44307. back: {
  44308. height: math.unit(15, "feet"),
  44309. name: "Back",
  44310. image: {
  44311. source: "./media/characters/nadezda-fex/back.svg",
  44312. extra: 1695/1481,
  44313. bottom: 25/1720
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Normal",
  44320. height: math.unit(15, "feet"),
  44321. default: true
  44322. },
  44323. {
  44324. name: "Macro",
  44325. height: math.unit(2.5, "miles")
  44326. },
  44327. {
  44328. name: "Goddess",
  44329. height: math.unit(2, "multiverses")
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(216, "cm"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/lev/front.svg",
  44341. extra: 1728/1670,
  44342. bottom: 82/1810
  44343. }
  44344. },
  44345. back: {
  44346. height: math.unit(216, "cm"),
  44347. name: "Back",
  44348. image: {
  44349. source: "./media/characters/lev/back.svg",
  44350. extra: 1738/1675,
  44351. bottom: 24/1762
  44352. }
  44353. },
  44354. dressed: {
  44355. height: math.unit(216, "cm"),
  44356. name: "Dressed",
  44357. image: {
  44358. source: "./media/characters/lev/dressed.svg",
  44359. extra: 1397/1351,
  44360. bottom: 73/1470
  44361. }
  44362. },
  44363. head: {
  44364. height: math.unit(0.51, "meter"),
  44365. name: "Head",
  44366. image: {
  44367. source: "./media/characters/lev/head.svg"
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(216, "cm"),
  44375. default: true
  44376. },
  44377. {
  44378. name: "Relatively Macro",
  44379. height: math.unit(80, "meters")
  44380. },
  44381. {
  44382. name: "Megamacro",
  44383. height: math.unit(21600, "meters")
  44384. },
  44385. {
  44386. name: "Megamacro+",
  44387. height: math.unit(64800, "meters")
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44393. {
  44394. front: {
  44395. height: math.unit(2, "meters"),
  44396. weight: math.unit(80, "kg"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/moka/front.svg",
  44400. extra: 1337/1255,
  44401. bottom: 58/1395
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Micro",
  44408. height: math.unit(15, "cm")
  44409. },
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(2, "meters"),
  44413. default: true
  44414. },
  44415. {
  44416. name: "Macro",
  44417. height: math.unit(20, "meters"),
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(9, "feet"),
  44426. weight: math.unit(240, "lb"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/kuzco/front.svg",
  44430. extra: 1593/1487,
  44431. bottom: 32/1625
  44432. }
  44433. },
  44434. side: {
  44435. height: math.unit(9, "feet"),
  44436. weight: math.unit(240, "lb"),
  44437. name: "Side",
  44438. image: {
  44439. source: "./media/characters/kuzco/side.svg",
  44440. extra: 1575/1485,
  44441. bottom: 30/1605
  44442. }
  44443. },
  44444. back: {
  44445. height: math.unit(9, "feet"),
  44446. weight: math.unit(240, "lb"),
  44447. name: "Back",
  44448. image: {
  44449. source: "./media/characters/kuzco/back.svg",
  44450. extra: 1603/1514,
  44451. bottom: 14/1617
  44452. }
  44453. },
  44454. },
  44455. [
  44456. {
  44457. name: "Normal",
  44458. height: math.unit(9, "feet"),
  44459. default: true
  44460. },
  44461. ]
  44462. ))
  44463. characterMakers.push(() => makeCharacter(
  44464. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44465. {
  44466. side: {
  44467. height: math.unit(2, "meters"),
  44468. weight: math.unit(300, "kg"),
  44469. name: "Side",
  44470. image: {
  44471. source: "./media/characters/ceruleus/side.svg",
  44472. extra: 1068/974,
  44473. bottom: 126/1194
  44474. }
  44475. },
  44476. },
  44477. [
  44478. {
  44479. name: "Normal",
  44480. height: math.unit(16, "meters"),
  44481. default: true
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(9, "feet"),
  44490. weight: math.unit(500, "kg"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/acouya/front.svg",
  44494. extra: 1660/1473,
  44495. bottom: 28/1688
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(9, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(5 + 6/12, "feet"),
  44512. weight: math.unit(195, "lb"),
  44513. name: "Front",
  44514. image: {
  44515. source: "./media/characters/vant/front.svg",
  44516. extra: 1396/1320,
  44517. bottom: 20/1416
  44518. }
  44519. },
  44520. back: {
  44521. height: math.unit(5 + 6/12, "feet"),
  44522. weight: math.unit(195, "lb"),
  44523. name: "Back",
  44524. image: {
  44525. source: "./media/characters/vant/back.svg",
  44526. extra: 1396/1320,
  44527. bottom: 20/1416
  44528. }
  44529. },
  44530. maw: {
  44531. height: math.unit(0.75, "feet"),
  44532. name: "Maw",
  44533. image: {
  44534. source: "./media/characters/vant/maw.svg"
  44535. }
  44536. },
  44537. paw: {
  44538. height: math.unit(1.07, "feet"),
  44539. name: "Paw",
  44540. image: {
  44541. source: "./media/characters/vant/paw.svg"
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Micro",
  44548. height: math.unit(0.25, "inches")
  44549. },
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(5 + 6/12, "feet"),
  44553. default: true
  44554. },
  44555. {
  44556. name: "Macro",
  44557. height: math.unit(75, "feet")
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44563. {
  44564. front: {
  44565. height: math.unit(30, "meters"),
  44566. weight: math.unit(363, "tons"),
  44567. name: "Front",
  44568. image: {
  44569. source: "./media/characters/ahra/front.svg",
  44570. extra: 1914/1814,
  44571. bottom: 46/1960
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Macro",
  44578. height: math.unit(30, "meters"),
  44579. default: true
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44585. {
  44586. undressed: {
  44587. height: math.unit(2, "m"),
  44588. weight: math.unit(250, "kg"),
  44589. name: "Undressed",
  44590. image: {
  44591. source: "./media/characters/coriander/undressed.svg",
  44592. extra: 1757/1606,
  44593. bottom: 107/1864
  44594. }
  44595. },
  44596. dressed: {
  44597. height: math.unit(2, "m"),
  44598. weight: math.unit(250, "kg"),
  44599. name: "Dressed",
  44600. image: {
  44601. source: "./media/characters/coriander/dressed.svg",
  44602. extra: 1757/1606,
  44603. bottom: 107/1864
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Normal",
  44610. height: math.unit(4, "meters"),
  44611. default: true
  44612. },
  44613. {
  44614. name: "XL",
  44615. height: math.unit(6, "meters")
  44616. },
  44617. {
  44618. name: "XXL",
  44619. height: math.unit(8, "meters")
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44625. {
  44626. front: {
  44627. height: math.unit(6, "feet"),
  44628. name: "Front",
  44629. image: {
  44630. source: "./media/characters/syrinx/front.svg",
  44631. extra: 1557/1259,
  44632. bottom: 171/1728
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Normal",
  44639. height: math.unit(6 + 3/12, "feet"),
  44640. default: true
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44646. {
  44647. front: {
  44648. height: math.unit(11 + 6/12, "feet"),
  44649. weight: math.unit(1.5, "tons"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/bor/front.svg",
  44653. extra: 1189/1109,
  44654. bottom: 170/1359
  44655. }
  44656. },
  44657. },
  44658. [
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(11 + 6/12, "feet"),
  44662. default: true
  44663. },
  44664. {
  44665. name: "Macro",
  44666. height: math.unit(32 + 9/12, "feet")
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44672. {
  44673. anthro: {
  44674. height: math.unit(9, "feet"),
  44675. weight: math.unit(2076, "lb"),
  44676. name: "Anthro",
  44677. image: {
  44678. source: "./media/characters/abacus/anthro.svg",
  44679. extra: 1540/1494,
  44680. bottom: 233/1773
  44681. }
  44682. },
  44683. pigeon: {
  44684. height: math.unit(1, "feet"),
  44685. name: "Pigeon",
  44686. image: {
  44687. source: "./media/characters/abacus/pigeon.svg",
  44688. extra: 528/525,
  44689. bottom: 46/574
  44690. }
  44691. },
  44692. },
  44693. [
  44694. {
  44695. name: "Normal",
  44696. height: math.unit(9, "feet"),
  44697. default: true
  44698. },
  44699. ]
  44700. ))
  44701. characterMakers.push(() => makeCharacter(
  44702. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44703. {
  44704. side: {
  44705. height: math.unit(6, "feet"),
  44706. name: "Side",
  44707. image: {
  44708. source: "./media/characters/delkhan/side.svg",
  44709. extra: 1884/1786,
  44710. bottom: 308/2192
  44711. }
  44712. },
  44713. head: {
  44714. height: math.unit(3.38, "feet"),
  44715. name: "Head",
  44716. image: {
  44717. source: "./media/characters/delkhan/head.svg"
  44718. }
  44719. },
  44720. },
  44721. [
  44722. {
  44723. name: "Normal",
  44724. height: math.unit(72, "feet"),
  44725. default: true
  44726. },
  44727. {
  44728. name: "Giant",
  44729. height: math.unit(172, "feet")
  44730. },
  44731. ]
  44732. ))
  44733. characterMakers.push(() => makeCharacter(
  44734. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44735. {
  44736. standing: {
  44737. height: math.unit(6, "feet"),
  44738. name: "Standing",
  44739. image: {
  44740. source: "./media/characters/euchidat/standing.svg",
  44741. extra: 1612/1553,
  44742. bottom: 116/1728
  44743. }
  44744. },
  44745. leaning: {
  44746. height: math.unit(6, "feet"),
  44747. name: "Leaning",
  44748. image: {
  44749. source: "./media/characters/euchidat/leaning.svg",
  44750. extra: 1719/1674,
  44751. bottom: 27/1746
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(175, "feet"),
  44759. default: true
  44760. },
  44761. {
  44762. name: "Megamacro",
  44763. height: math.unit(190, "miles")
  44764. },
  44765. {
  44766. name: "Gigamacro",
  44767. height: math.unit(190000, "miles")
  44768. },
  44769. ]
  44770. ))
  44771. characterMakers.push(() => makeCharacter(
  44772. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44773. {
  44774. front: {
  44775. height: math.unit(6, "feet"),
  44776. weight: math.unit(150, "lb"),
  44777. name: "Front",
  44778. image: {
  44779. source: "./media/characters/rebecca-stack/front.svg",
  44780. extra: 1256/1201,
  44781. bottom: 18/1274
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Normal",
  44788. height: math.unit(5 + 8/12, "feet"),
  44789. default: true
  44790. },
  44791. {
  44792. name: "Demolitionist",
  44793. height: math.unit(200, "feet")
  44794. },
  44795. {
  44796. name: "Out of Control",
  44797. height: math.unit(2, "miles")
  44798. },
  44799. {
  44800. name: "Giga",
  44801. height: math.unit(7200, "miles")
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(6, "feet"),
  44810. weight: math.unit(150, "lb"),
  44811. name: "Front",
  44812. image: {
  44813. source: "./media/characters/jenny-cartwright/front.svg",
  44814. extra: 1384/1376,
  44815. bottom: 58/1442
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Normal",
  44822. height: math.unit(6 + 7/12, "feet"),
  44823. default: true
  44824. },
  44825. {
  44826. name: "Librarian",
  44827. height: math.unit(55, "feet")
  44828. },
  44829. {
  44830. name: "Sightseer",
  44831. height: math.unit(50, "miles")
  44832. },
  44833. {
  44834. name: "Giga",
  44835. height: math.unit(30000, "miles")
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44841. {
  44842. nude: {
  44843. height: math.unit(8, "feet"),
  44844. weight: math.unit(225, "lb"),
  44845. name: "Nude",
  44846. image: {
  44847. source: "./media/characters/marvy/nude.svg",
  44848. extra: 1900/1683,
  44849. bottom: 89/1989
  44850. }
  44851. },
  44852. dressed: {
  44853. height: math.unit(8, "feet"),
  44854. weight: math.unit(225, "lb"),
  44855. name: "Dressed",
  44856. image: {
  44857. source: "./media/characters/marvy/dressed.svg",
  44858. extra: 1900/1683,
  44859. bottom: 89/1989
  44860. }
  44861. },
  44862. head: {
  44863. height: math.unit(2.85, "feet"),
  44864. name: "Head",
  44865. image: {
  44866. source: "./media/characters/marvy/head.svg"
  44867. }
  44868. },
  44869. },
  44870. [
  44871. {
  44872. name: "Normal",
  44873. height: math.unit(8, "feet"),
  44874. default: true
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44880. {
  44881. front: {
  44882. height: math.unit(8, "feet"),
  44883. weight: math.unit(250, "lb"),
  44884. name: "Front",
  44885. image: {
  44886. source: "./media/characters/leah/front.svg",
  44887. extra: 1257/1149,
  44888. bottom: 109/1366
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(8, "feet"),
  44896. default: true
  44897. },
  44898. {
  44899. name: "Minimacro",
  44900. height: math.unit(40, "feet")
  44901. },
  44902. {
  44903. name: "Macro",
  44904. height: math.unit(124, "feet")
  44905. },
  44906. {
  44907. name: "Megamacro",
  44908. height: math.unit(850, "feet")
  44909. },
  44910. ]
  44911. ))
  44912. //characters
  44913. function makeCharacters() {
  44914. const results = [];
  44915. characterMakers.forEach(character => {
  44916. results.push(character());
  44917. });
  44918. return results;
  44919. }