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ů.
 
 
 

50074 řádky
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. "amogus": {
  1908. name: "Amogus",
  1909. parents: ["deity"]
  1910. },
  1911. "ferret": {
  1912. name: "Ferret",
  1913. parents: ["mustelid"]
  1914. },
  1915. }
  1916. //species
  1917. function getSpeciesInfo(speciesList) {
  1918. let result = new Set();
  1919. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1920. result.add(entry)
  1921. });
  1922. return Array.from(result);
  1923. };
  1924. function getSpeciesInfoHelper(species) {
  1925. if (!speciesData[species]) {
  1926. console.warn(species + " doesn't exist");
  1927. return [];
  1928. }
  1929. if (speciesData[species].parents) {
  1930. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1931. } else {
  1932. return [species];
  1933. }
  1934. }
  1935. characterMakers.push(() => makeCharacter(
  1936. {
  1937. name: "Fen",
  1938. species: ["crux"],
  1939. description: {
  1940. title: "Bio",
  1941. text: "Very furry. Sheds on everything."
  1942. },
  1943. tags: [
  1944. "anthro",
  1945. "goo"
  1946. ]
  1947. },
  1948. {
  1949. front: {
  1950. height: math.unit(12, "feet"),
  1951. weight: math.unit(2400, "lb"),
  1952. name: "Front",
  1953. image: {
  1954. source: "./media/characters/fen/front.svg",
  1955. extra: 1804/1562,
  1956. bottom: 205/2009
  1957. }
  1958. },
  1959. diving: {
  1960. height: math.unit(4.9, "meters"),
  1961. weight: math.unit(2400, "lb"),
  1962. name: "Diving",
  1963. image: {
  1964. source: "./media/characters/fen/diving.svg"
  1965. }
  1966. },
  1967. goo: {
  1968. height: math.unit(12, "feet"),
  1969. weight: math.unit(3600, "lb"),
  1970. volume: math.unit(1000, "liters"),
  1971. capacity: math.unit(6, "people"),
  1972. name: "Goo",
  1973. image: {
  1974. source: "./media/characters/fen/goo.svg",
  1975. extra: 1307/1071,
  1976. bottom: 134/1441
  1977. }
  1978. },
  1979. maw: {
  1980. height: math.unit(5.03, "feet"),
  1981. name: "Maw",
  1982. image: {
  1983. source: "./media/characters/fen/maw.svg"
  1984. }
  1985. },
  1986. gooCeiling: {
  1987. height: math.unit(6.6, "feet"),
  1988. weight: math.unit(3000, "lb"),
  1989. volume: math.unit(1000, "liters"),
  1990. capacity: math.unit(6, "people"),
  1991. name: "Goo (Ceiling)",
  1992. image: {
  1993. source: "./media/characters/fen/goo-ceiling.svg"
  1994. }
  1995. },
  1996. back: {
  1997. height: math.unit(12, "feet"),
  1998. weight: math.unit(2400, "lb"),
  1999. name: "Back",
  2000. image: {
  2001. source: "./media/characters/fen/back.svg",
  2002. },
  2003. info: {
  2004. description: {
  2005. mode: "append",
  2006. text: "\n\nHe is not currently looking at you."
  2007. }
  2008. }
  2009. },
  2010. full: {
  2011. height: math.unit(1.6, "meter"),
  2012. weight: math.unit(3200, "lb"),
  2013. name: "Full",
  2014. image: {
  2015. source: "./media/characters/fen/full.svg",
  2016. extra: 1133/859,
  2017. bottom: 145/1278
  2018. },
  2019. info: {
  2020. description: {
  2021. mode: "append",
  2022. text: "\n\nMunch."
  2023. }
  2024. }
  2025. },
  2026. gooLounging: {
  2027. height: math.unit(4.53, "feet"),
  2028. weight: math.unit(3000, "lb"),
  2029. capacity: math.unit(6, "people"),
  2030. name: "Goo (Lounging)",
  2031. image: {
  2032. source: "./media/characters/fen/goo-lounging.svg",
  2033. bottom: 116 / 613
  2034. }
  2035. },
  2036. lounging: {
  2037. height: math.unit(10.52, "feet"),
  2038. weight: math.unit(2400, "lb"),
  2039. name: "Lounging",
  2040. image: {
  2041. source: "./media/characters/fen/lounging.svg"
  2042. }
  2043. },
  2044. },
  2045. [
  2046. {
  2047. name: "Small",
  2048. height: math.unit(2.2428, "meter")
  2049. },
  2050. {
  2051. name: "Normal",
  2052. height: math.unit(12, "feet"),
  2053. default: true,
  2054. },
  2055. {
  2056. name: "Big",
  2057. height: math.unit(20, "feet")
  2058. },
  2059. {
  2060. name: "Minimacro",
  2061. height: math.unit(40, "feet"),
  2062. info: {
  2063. description: {
  2064. mode: "append",
  2065. text: "\n\nTOO DAMN BIG"
  2066. }
  2067. }
  2068. },
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(100, "feet"),
  2072. info: {
  2073. description: {
  2074. mode: "append",
  2075. text: "\n\nTOO DAMN BIG"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(2, "miles")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(10, "earths")
  2086. },
  2087. ]
  2088. ))
  2089. characterMakers.push(() => makeCharacter(
  2090. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2091. {
  2092. front: {
  2093. height: math.unit(183, "cm"),
  2094. weight: math.unit(80, "kg"),
  2095. name: "Front",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/front.svg",
  2098. bottom: 0.01,
  2099. extra: 2154 / 2081
  2100. }
  2101. },
  2102. frontAlt: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Front (alt)",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2108. }
  2109. },
  2110. back: {
  2111. height: math.unit(183, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Back",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/back.svg"
  2116. }
  2117. },
  2118. kneeling: {
  2119. height: math.unit(125, "cm"),
  2120. weight: math.unit(80, "kg"),
  2121. name: "Kneeling",
  2122. image: {
  2123. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2124. extra: 1033 / 977,
  2125. bottom: 23.7 / 1057
  2126. }
  2127. },
  2128. maw: {
  2129. height: math.unit(183 / 5, "cm"),
  2130. name: "Maw",
  2131. image: {
  2132. source: "./media/characters/sofia-fluttertail/maw.svg"
  2133. }
  2134. },
  2135. mawcloseup: {
  2136. height: math.unit(183 / 5 * 0.41, "cm"),
  2137. name: "Maw (Closeup)",
  2138. image: {
  2139. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2140. }
  2141. },
  2142. paws: {
  2143. height: math.unit(1.17, "feet"),
  2144. name: "Paws",
  2145. image: {
  2146. source: "./media/characters/sofia-fluttertail/paws.svg",
  2147. extra: 851 / 851,
  2148. bottom: 17 / 868
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Normal",
  2155. height: math.unit(1.83, "meter")
  2156. },
  2157. {
  2158. name: "Size Thief",
  2159. height: math.unit(18, "feet")
  2160. },
  2161. {
  2162. name: "50 Foot Collie",
  2163. height: math.unit(50, "feet")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(96, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Megamerger",
  2172. height: math.unit(650, "feet")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(7, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/march/front.svg",
  2185. extra: 1992/1851,
  2186. bottom: 39/2031
  2187. }
  2188. },
  2189. foot: {
  2190. height: math.unit(0.9, "feet"),
  2191. name: "Foot",
  2192. image: {
  2193. source: "./media/characters/march/foot.svg"
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(7.9, "feet")
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(220, "meters")
  2205. },
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(2.98, "km"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(15963, "km")
  2214. },
  2215. {
  2216. name: "Teramacro",
  2217. height: math.unit(2980000000, "km")
  2218. },
  2219. {
  2220. name: "Examacro",
  2221. height: math.unit(250, "parsecs")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(6, "feet"),
  2230. weight: math.unit(60, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/noir/front.svg",
  2234. extra: 1,
  2235. bottom: 0.032
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(6.6, "feet")
  2243. },
  2244. {
  2245. name: "Macro",
  2246. height: math.unit(500, "feet")
  2247. },
  2248. {
  2249. name: "Megamacro",
  2250. height: math.unit(2.5, "km"),
  2251. default: true
  2252. },
  2253. {
  2254. name: "Gigamacro",
  2255. height: math.unit(22500, "km")
  2256. },
  2257. {
  2258. name: "Teramacro",
  2259. height: math.unit(2500000000, "km")
  2260. },
  2261. {
  2262. name: "Examacro",
  2263. height: math.unit(200, "parsecs")
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2269. {
  2270. front: {
  2271. height: math.unit(7, "feet"),
  2272. weight: math.unit(100, "kg"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/okuri/front.svg",
  2276. extra: 739/665,
  2277. bottom: 39/778
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/okuri/back.svg",
  2286. extra: 734/653,
  2287. bottom: 13/747
  2288. }
  2289. },
  2290. sitting: {
  2291. height: math.unit(2.95, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Sitting",
  2294. image: {
  2295. source: "./media/characters/okuri/sitting.svg",
  2296. extra: 370/318,
  2297. bottom: 99/469
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Smallest",
  2304. height: math.unit(5 + 2/12, "feet")
  2305. },
  2306. {
  2307. name: "Smaller",
  2308. height: math.unit(300, "feet")
  2309. },
  2310. {
  2311. name: "Small",
  2312. height: math.unit(1000, "feet")
  2313. },
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(1, "mile")
  2317. },
  2318. {
  2319. name: "Mega Macro (Small)",
  2320. height: math.unit(20, "km")
  2321. },
  2322. {
  2323. name: "Mega Macro (Large)",
  2324. height: math.unit(600, "km")
  2325. },
  2326. {
  2327. name: "Giga Macro",
  2328. height: math.unit(10000, "km")
  2329. },
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(577560, "km"),
  2333. default: true
  2334. },
  2335. {
  2336. name: "Large",
  2337. height: math.unit(4, "galaxies")
  2338. },
  2339. {
  2340. name: "Largest",
  2341. height: math.unit(15, "multiverses")
  2342. },
  2343. ]
  2344. ))
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(7, "feet"),
  2350. weight: math.unit(100, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/manny/front.svg",
  2354. extra: 1,
  2355. bottom: 0.06
  2356. }
  2357. },
  2358. back: {
  2359. height: math.unit(7, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Back",
  2362. image: {
  2363. source: "./media/characters/manny/back.svg",
  2364. extra: 1,
  2365. bottom: 0.014
  2366. }
  2367. },
  2368. },
  2369. [
  2370. {
  2371. name: "Normal",
  2372. height: math.unit(7, "feet"),
  2373. },
  2374. {
  2375. name: "Macro",
  2376. height: math.unit(78, "feet"),
  2377. default: true
  2378. },
  2379. {
  2380. name: "Macro+",
  2381. height: math.unit(300, "meters")
  2382. },
  2383. {
  2384. name: "Macro++",
  2385. height: math.unit(2400, "meters")
  2386. },
  2387. {
  2388. name: "Megamacro",
  2389. height: math.unit(5167, "meters")
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(41769, "miles")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/adake/front-1.svg"
  2406. }
  2407. },
  2408. frontAlt: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(100, "kg"),
  2411. name: "Front (Alt)",
  2412. image: {
  2413. source: "./media/characters/adake/front-2.svg",
  2414. extra: 1,
  2415. bottom: 0.01
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/adake/back.svg",
  2424. }
  2425. },
  2426. kneel: {
  2427. height: math.unit(5.385, "feet"),
  2428. weight: math.unit(100, "kg"),
  2429. name: "Kneeling",
  2430. image: {
  2431. source: "./media/characters/adake/kneel.svg",
  2432. bottom: 0.052
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7, "feet"),
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(78, "feet"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro+",
  2448. height: math.unit(300, "meters")
  2449. },
  2450. {
  2451. name: "Macro++",
  2452. height: math.unit(2400, "meters")
  2453. },
  2454. {
  2455. name: "Megamacro",
  2456. height: math.unit(5167, "meters")
  2457. },
  2458. {
  2459. name: "Gigamacro",
  2460. height: math.unit(41769, "miles")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(1.65, "meters"),
  2469. weight: math.unit(50, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/elijah/front.svg",
  2473. extra: 858 / 830,
  2474. bottom: 95.5 / 953.8559
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(1.65, "meters"),
  2479. weight: math.unit(50, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/elijah/back.svg",
  2483. extra: 895 / 850,
  2484. bottom: 5.3 / 897.956
  2485. }
  2486. },
  2487. frontNsfw: {
  2488. height: math.unit(1.65, "meters"),
  2489. weight: math.unit(50, "kg"),
  2490. name: "Front (NSFW)",
  2491. image: {
  2492. source: "./media/characters/elijah/front-nsfw.svg",
  2493. extra: 858 / 830,
  2494. bottom: 95.5 / 953.8559
  2495. }
  2496. },
  2497. backNsfw: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Back (NSFW)",
  2501. image: {
  2502. source: "./media/characters/elijah/back-nsfw.svg",
  2503. extra: 895 / 850,
  2504. bottom: 5.3 / 897.956
  2505. }
  2506. },
  2507. dick: {
  2508. height: math.unit(1, "feet"),
  2509. name: "Dick",
  2510. image: {
  2511. source: "./media/characters/elijah/dick.svg"
  2512. }
  2513. },
  2514. beakOpen: {
  2515. height: math.unit(1.25, "feet"),
  2516. name: "Beak (Open)",
  2517. image: {
  2518. source: "./media/characters/elijah/beak-open.svg"
  2519. }
  2520. },
  2521. beakShut: {
  2522. height: math.unit(1.25, "feet"),
  2523. name: "Beak (Shut)",
  2524. image: {
  2525. source: "./media/characters/elijah/beak-shut.svg"
  2526. }
  2527. },
  2528. footFlexing: {
  2529. height: math.unit(1.61, "feet"),
  2530. name: "Foot (Flexing)",
  2531. image: {
  2532. source: "./media/characters/elijah/foot-flexing.svg"
  2533. }
  2534. },
  2535. footStepping: {
  2536. height: math.unit(1.44, "feet"),
  2537. name: "Foot (Stepping)",
  2538. image: {
  2539. source: "./media/characters/elijah/foot-stepping.svg"
  2540. }
  2541. },
  2542. plantigradeLeg: {
  2543. height: math.unit(2.34, "feet"),
  2544. name: "Plantigrade Leg",
  2545. image: {
  2546. source: "./media/characters/elijah/plantigrade-leg.svg"
  2547. }
  2548. },
  2549. plantigradeFootLeft: {
  2550. height: math.unit(0.9, "feet"),
  2551. name: "Plantigrade Foot (Left)",
  2552. image: {
  2553. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2554. }
  2555. },
  2556. plantigradeFootRight: {
  2557. height: math.unit(0.9, "feet"),
  2558. name: "Plantigrade Foot (Right)",
  2559. image: {
  2560. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2561. }
  2562. },
  2563. },
  2564. [
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(1.65, "meters")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(55, "meters"),
  2572. default: true
  2573. },
  2574. {
  2575. name: "Macro+",
  2576. height: math.unit(105, "meters")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2582. {
  2583. front: {
  2584. height: math.unit(7 + 2/12, "feet"),
  2585. weight: math.unit(320, "kg"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/rai/front.svg",
  2589. extra: 1802/1696,
  2590. bottom: 68/1870
  2591. }
  2592. },
  2593. frontDressed: {
  2594. height: math.unit(7 + 2/12, "feet"),
  2595. weight: math.unit(320, "kg"),
  2596. name: "Front (Dressed)",
  2597. image: {
  2598. source: "./media/characters/rai/front-dressed.svg",
  2599. extra: 1802/1696,
  2600. bottom: 68/1870
  2601. }
  2602. },
  2603. side: {
  2604. height: math.unit(7 + 2/12, "feet"),
  2605. weight: math.unit(320, "kg"),
  2606. name: "Side",
  2607. image: {
  2608. source: "./media/characters/rai/side.svg",
  2609. extra: 1789/1710,
  2610. bottom: 115/1904
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/rai/back.svg",
  2619. extra: 1770/1707,
  2620. bottom: 28/1798
  2621. }
  2622. },
  2623. feral: {
  2624. height: math.unit(9.5, "feet"),
  2625. weight: math.unit(640, "kg"),
  2626. name: "Feral",
  2627. image: {
  2628. source: "./media/characters/rai/feral.svg",
  2629. extra: 945/553,
  2630. bottom: 176/1121
  2631. }
  2632. },
  2633. dragon: {
  2634. height: math.unit(23, "feet"),
  2635. weight: math.unit(50000, "lb"),
  2636. name: "Dragon",
  2637. image: {
  2638. source: "./media/characters/rai/dragon.svg",
  2639. extra: 2498 / 2030,
  2640. bottom: 85.2 / 2584
  2641. }
  2642. },
  2643. maw: {
  2644. height: math.unit(1.69, "feet"),
  2645. name: "Maw",
  2646. image: {
  2647. source: "./media/characters/rai/maw.svg"
  2648. }
  2649. },
  2650. },
  2651. [
  2652. {
  2653. name: "Normal",
  2654. height: math.unit(7 + 2/12, "feet")
  2655. },
  2656. {
  2657. name: "Big",
  2658. height: math.unit(11, "feet")
  2659. },
  2660. {
  2661. name: "Macro",
  2662. height: math.unit(302, "feet"),
  2663. default: true
  2664. },
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2669. {
  2670. frontDressed: {
  2671. height: math.unit(216, "feet"),
  2672. weight: math.unit(7000000, "lb"),
  2673. name: "Front (Dressed)",
  2674. image: {
  2675. source: "./media/characters/jazzy/front-dressed.svg",
  2676. extra: 2738 / 2651,
  2677. bottom: 41.8 / 2786
  2678. }
  2679. },
  2680. backDressed: {
  2681. height: math.unit(216, "feet"),
  2682. weight: math.unit(7000000, "lb"),
  2683. name: "Back (Dressed)",
  2684. image: {
  2685. source: "./media/characters/jazzy/back-dressed.svg",
  2686. extra: 2775 / 2673,
  2687. bottom: 36.8 / 2817
  2688. }
  2689. },
  2690. front: {
  2691. height: math.unit(216, "feet"),
  2692. weight: math.unit(7000000, "lb"),
  2693. name: "Front",
  2694. image: {
  2695. source: "./media/characters/jazzy/front.svg",
  2696. extra: 2738 / 2651,
  2697. bottom: 41.8 / 2786
  2698. }
  2699. },
  2700. back: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Back",
  2704. image: {
  2705. source: "./media/characters/jazzy/back.svg",
  2706. extra: 2775 / 2673,
  2707. bottom: 36.8 / 2817
  2708. }
  2709. },
  2710. maw: {
  2711. height: math.unit(20, "feet"),
  2712. name: "Maw",
  2713. image: {
  2714. source: "./media/characters/jazzy/maw.svg"
  2715. }
  2716. },
  2717. paws: {
  2718. height: math.unit(27.5, "feet"),
  2719. name: "Paws",
  2720. image: {
  2721. source: "./media/characters/jazzy/paws.svg"
  2722. }
  2723. },
  2724. eye: {
  2725. height: math.unit(4.4, "feet"),
  2726. name: "Eye",
  2727. image: {
  2728. source: "./media/characters/jazzy/eye.svg"
  2729. }
  2730. },
  2731. droneOffense: {
  2732. height: math.unit(9.5, "inches"),
  2733. name: "Drone (Offense)",
  2734. image: {
  2735. source: "./media/characters/jazzy/drone-offense.svg"
  2736. }
  2737. },
  2738. droneRecon: {
  2739. height: math.unit(9.5, "inches"),
  2740. name: "Drone (Recon)",
  2741. image: {
  2742. source: "./media/characters/jazzy/drone-recon.svg"
  2743. }
  2744. },
  2745. droneDefense: {
  2746. height: math.unit(9.5, "inches"),
  2747. name: "Drone (Defense)",
  2748. image: {
  2749. source: "./media/characters/jazzy/drone-defense.svg"
  2750. }
  2751. },
  2752. },
  2753. [
  2754. {
  2755. name: "Macro",
  2756. height: math.unit(216, "feet"),
  2757. default: true
  2758. },
  2759. ]
  2760. ))
  2761. characterMakers.push(() => makeCharacter(
  2762. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2763. {
  2764. front: {
  2765. height: math.unit(9 + 6/12, "feet"),
  2766. weight: math.unit(700, "lb"),
  2767. name: "Front",
  2768. image: {
  2769. source: "./media/characters/flamm/front.svg",
  2770. extra: 1751/1632,
  2771. bottom: 46/1797
  2772. }
  2773. },
  2774. buff: {
  2775. height: math.unit(9 + 6/12, "feet"),
  2776. weight: math.unit(950, "lb"),
  2777. name: "Buff",
  2778. image: {
  2779. source: "./media/characters/flamm/buff.svg",
  2780. extra: 3018/2874,
  2781. bottom: 221/3239
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(9.5, "feet")
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(200, "feet"),
  2793. default: true
  2794. },
  2795. ]
  2796. ))
  2797. characterMakers.push(() => makeCharacter(
  2798. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2799. {
  2800. front: {
  2801. height: math.unit(5 + 3/12, "feet"),
  2802. weight: math.unit(60, "kg"),
  2803. name: "Front",
  2804. image: {
  2805. source: "./media/characters/zephiro/front.svg",
  2806. extra: 2309 / 2162,
  2807. bottom: 0.069
  2808. }
  2809. },
  2810. side: {
  2811. height: math.unit(5 + 3/12, "feet"),
  2812. weight: math.unit(60, "kg"),
  2813. name: "Side",
  2814. image: {
  2815. source: "./media/characters/zephiro/side.svg",
  2816. extra: 2403 / 2279,
  2817. bottom: 0.015
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(5 + 3/12, "feet"),
  2822. weight: math.unit(60, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/zephiro/back.svg",
  2826. extra: 2373 / 2244,
  2827. bottom: 0.013
  2828. }
  2829. },
  2830. hand: {
  2831. height: math.unit(0.68, "feet"),
  2832. name: "Hand",
  2833. image: {
  2834. source: "./media/characters/zephiro/hand.svg"
  2835. }
  2836. },
  2837. paw: {
  2838. height: math.unit(1, "feet"),
  2839. name: "Paw",
  2840. image: {
  2841. source: "./media/characters/zephiro/paw.svg"
  2842. }
  2843. },
  2844. beans: {
  2845. height: math.unit(0.93, "feet"),
  2846. name: "Beans",
  2847. image: {
  2848. source: "./media/characters/zephiro/beans.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Micro",
  2855. height: math.unit(3, "inches")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(5 + 3 / 12, "feet"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Macro",
  2864. height: math.unit(118, "feet")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(5, "feet"),
  2873. weight: math.unit(90, "kg"),
  2874. name: "Front",
  2875. image: {
  2876. source: "./media/characters/fory/front.svg",
  2877. extra: 2862 / 2674,
  2878. bottom: 180 / 3043.8
  2879. }
  2880. },
  2881. back: {
  2882. height: math.unit(5, "feet"),
  2883. weight: math.unit(90, "kg"),
  2884. name: "Back",
  2885. image: {
  2886. source: "./media/characters/fory/back.svg",
  2887. extra: 2962 / 2791,
  2888. bottom: 106 / 3071.8
  2889. }
  2890. },
  2891. foot: {
  2892. height: math.unit(2.14, "feet"),
  2893. name: "Foot",
  2894. image: {
  2895. source: "./media/characters/fory/foot.svg"
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(5, "feet")
  2903. },
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(50, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(10, "miles")
  2912. },
  2913. {
  2914. name: "Gigamacro",
  2915. height: math.unit(5, "earths")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(7, "feet"),
  2924. weight: math.unit(90, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/kurrikage/front.svg",
  2928. extra: 1845/1733,
  2929. bottom: 119/1964
  2930. }
  2931. },
  2932. back: {
  2933. height: math.unit(7, "feet"),
  2934. weight: math.unit(90, "kg"),
  2935. name: "Back",
  2936. image: {
  2937. source: "./media/characters/kurrikage/back.svg",
  2938. extra: 1790/1677,
  2939. bottom: 61/1851
  2940. }
  2941. },
  2942. dressed: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Dressed",
  2946. image: {
  2947. source: "./media/characters/kurrikage/dressed.svg",
  2948. extra: 1845/1733,
  2949. bottom: 119/1964
  2950. }
  2951. },
  2952. foot: {
  2953. height: math.unit(1.5, "feet"),
  2954. name: "Foot",
  2955. image: {
  2956. source: "./media/characters/kurrikage/foot.svg"
  2957. }
  2958. },
  2959. staff: {
  2960. height: math.unit(6.7, "feet"),
  2961. name: "Staff",
  2962. image: {
  2963. source: "./media/characters/kurrikage/staff.svg"
  2964. }
  2965. },
  2966. peek: {
  2967. height: math.unit(1.05, "feet"),
  2968. name: "Peeking",
  2969. image: {
  2970. source: "./media/characters/kurrikage/peek.svg",
  2971. bottom: 0.08
  2972. }
  2973. },
  2974. },
  2975. [
  2976. {
  2977. name: "Normal",
  2978. height: math.unit(12, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Big",
  2983. height: math.unit(20, "feet")
  2984. },
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(500, "feet")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(20, "miles")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/shingo/front.svg",
  3004. extra: 1900/1825,
  3005. bottom: 82/1982
  3006. }
  3007. },
  3008. side: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Side",
  3012. image: {
  3013. source: "./media/characters/shingo/side.svg",
  3014. extra: 1930/1865,
  3015. bottom: 16/1946
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/shingo/back.svg",
  3024. extra: 1922/1852,
  3025. bottom: 16/1938
  3026. }
  3027. },
  3028. frontDressed: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(150, "lb"),
  3031. name: "Front-dressed",
  3032. image: {
  3033. source: "./media/characters/shingo/front-dressed.svg",
  3034. extra: 1900/1825,
  3035. bottom: 82/1982
  3036. }
  3037. },
  3038. paw: {
  3039. height: math.unit(1.29, "feet"),
  3040. name: "Paw",
  3041. image: {
  3042. source: "./media/characters/shingo/paw.svg"
  3043. }
  3044. },
  3045. hand: {
  3046. height: math.unit(1.07, "feet"),
  3047. name: "Hand",
  3048. image: {
  3049. source: "./media/characters/shingo/hand.svg"
  3050. }
  3051. },
  3052. frontAlt: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Alt)",
  3056. image: {
  3057. source: "./media/characters/shingo/front-alt.svg",
  3058. extra: 3511 / 3338,
  3059. bottom: 0.005
  3060. }
  3061. },
  3062. frontAlt2: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (Alt 2)",
  3066. image: {
  3067. source: "./media/characters/shingo/front-alt-2.svg",
  3068. extra: 706/681,
  3069. bottom: 11/717
  3070. }
  3071. },
  3072. pawAlt: {
  3073. height: math.unit(1, "feet"),
  3074. name: "Paw (Alt)",
  3075. image: {
  3076. source: "./media/characters/shingo/paw-alt.svg"
  3077. }
  3078. },
  3079. },
  3080. [
  3081. {
  3082. name: "Micro",
  3083. height: math.unit(4, "inches")
  3084. },
  3085. {
  3086. name: "Normal",
  3087. height: math.unit(6, "feet"),
  3088. default: true
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(108, "feet")
  3093. },
  3094. {
  3095. name: "Macro+",
  3096. height: math.unit(1500, "feet")
  3097. },
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3102. {
  3103. side: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/aigey/side.svg"
  3109. }
  3110. },
  3111. },
  3112. [
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(200, "feet"),
  3116. default: true
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(100, "miles")
  3121. },
  3122. ]
  3123. )
  3124. )
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(5 + 5 / 12, "feet"),
  3130. weight: math.unit(75, "kg"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/natasha/front.svg",
  3134. extra: 859 / 824,
  3135. bottom: 23 / 879.6
  3136. }
  3137. },
  3138. frontNsfw: {
  3139. height: math.unit(5 + 5 / 12, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Front (NSFW)",
  3142. image: {
  3143. source: "./media/characters/natasha/front-nsfw.svg",
  3144. extra: 859 / 824,
  3145. bottom: 23 / 879.6
  3146. }
  3147. },
  3148. frontErect: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front (Erect)",
  3152. image: {
  3153. source: "./media/characters/natasha/front-erect.svg",
  3154. extra: 859 / 824,
  3155. bottom: 23 / 879.6
  3156. }
  3157. },
  3158. back: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Back",
  3162. image: {
  3163. source: "./media/characters/natasha/back.svg",
  3164. extra: 887.9 / 852.6,
  3165. bottom: 9.7 / 896.4
  3166. }
  3167. },
  3168. backAlt: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back (Alt)",
  3172. image: {
  3173. source: "./media/characters/natasha/back-alt.svg",
  3174. extra: 1236.7 / 1192,
  3175. bottom: 22.3 / 1258.2
  3176. }
  3177. },
  3178. dick: {
  3179. height: math.unit(1.772, "feet"),
  3180. name: "Dick",
  3181. image: {
  3182. source: "./media/characters/natasha/dick.svg"
  3183. }
  3184. },
  3185. paw: {
  3186. height: math.unit(0.250, "meters"),
  3187. name: "Paw",
  3188. image: {
  3189. source: "./media/characters/natasha/paw.svg"
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(5 + 5 / 12, "feet")
  3197. },
  3198. {
  3199. name: "Large",
  3200. height: math.unit(12, "feet")
  3201. },
  3202. {
  3203. name: "Macro",
  3204. height: math.unit(100, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(260, "feet")
  3210. },
  3211. {
  3212. name: "Macro++",
  3213. height: math.unit(1, "mile")
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/malik/front.svg"
  3226. }
  3227. },
  3228. side: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/malik/side.svg",
  3234. extra: 1.1539
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Back",
  3241. image: {
  3242. source: "./media/characters/malik/back.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(156, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro+",
  3254. height: math.unit(1188, "feet")
  3255. },
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3260. {
  3261. front: {
  3262. height: math.unit(6, "feet"),
  3263. weight: math.unit(75, "kg"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/sefer/front.svg",
  3267. extra: 848 / 659,
  3268. bottom: 28.3 / 876.442
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/sefer/back.svg",
  3277. extra: 864 / 695,
  3278. bottom: 10 / 871
  3279. }
  3280. },
  3281. frontDressed: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Front (Dressed)",
  3285. image: {
  3286. source: "./media/characters/sefer/front-dressed.svg",
  3287. extra: 839 / 653,
  3288. bottom: 37.6 / 878
  3289. }
  3290. },
  3291. },
  3292. [
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(6, "feet"),
  3296. default: true
  3297. },
  3298. ]
  3299. ))
  3300. characterMakers.push(() => makeCharacter(
  3301. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3302. {
  3303. body: {
  3304. height: math.unit(2.2428, "meter"),
  3305. weight: math.unit(124.738, "kg"),
  3306. name: "Body",
  3307. image: {
  3308. extra: 1225 / 1050,
  3309. source: "./media/characters/north/front.svg"
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Micro",
  3316. height: math.unit(4, "inches")
  3317. },
  3318. {
  3319. name: "Macro",
  3320. height: math.unit(63, "meters")
  3321. },
  3322. {
  3323. name: "Megamacro",
  3324. height: math.unit(101, "miles"),
  3325. default: true
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3331. {
  3332. angled: {
  3333. height: math.unit(4, "meter"),
  3334. weight: math.unit(150, "kg"),
  3335. name: "Angled",
  3336. image: {
  3337. source: "./media/characters/talan/angled-sfw.svg",
  3338. bottom: 29 / 3734
  3339. }
  3340. },
  3341. angledNsfw: {
  3342. height: math.unit(4, "meter"),
  3343. weight: math.unit(150, "kg"),
  3344. name: "Angled (NSFW)",
  3345. image: {
  3346. source: "./media/characters/talan/angled-nsfw.svg",
  3347. bottom: 29 / 3734
  3348. }
  3349. },
  3350. frontNsfw: {
  3351. height: math.unit(4, "meter"),
  3352. weight: math.unit(150, "kg"),
  3353. name: "Front (NSFW)",
  3354. image: {
  3355. source: "./media/characters/talan/front-nsfw.svg",
  3356. bottom: 29 / 3734
  3357. }
  3358. },
  3359. sideNsfw: {
  3360. height: math.unit(4, "meter"),
  3361. weight: math.unit(150, "kg"),
  3362. name: "Side (NSFW)",
  3363. image: {
  3364. source: "./media/characters/talan/side-nsfw.svg",
  3365. bottom: 29 / 3734
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(4, "meter"),
  3370. weight: math.unit(150, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/talan/back.svg"
  3374. }
  3375. },
  3376. dickBottom: {
  3377. height: math.unit(0.621, "meter"),
  3378. name: "Dick (Bottom)",
  3379. image: {
  3380. source: "./media/characters/talan/dick-bottom.svg"
  3381. }
  3382. },
  3383. dickTop: {
  3384. height: math.unit(0.621, "meter"),
  3385. name: "Dick (Top)",
  3386. image: {
  3387. source: "./media/characters/talan/dick-top.svg"
  3388. }
  3389. },
  3390. dickSide: {
  3391. height: math.unit(0.305, "meter"),
  3392. name: "Dick (Side)",
  3393. image: {
  3394. source: "./media/characters/talan/dick-side.svg"
  3395. }
  3396. },
  3397. dickFront: {
  3398. height: math.unit(0.305, "meter"),
  3399. name: "Dick (Front)",
  3400. image: {
  3401. source: "./media/characters/talan/dick-front.svg"
  3402. }
  3403. },
  3404. },
  3405. [
  3406. {
  3407. name: "Normal",
  3408. height: math.unit(4, "meters")
  3409. },
  3410. {
  3411. name: "Macro",
  3412. height: math.unit(100, "meters")
  3413. },
  3414. {
  3415. name: "Megamacro",
  3416. height: math.unit(2, "miles"),
  3417. default: true
  3418. },
  3419. {
  3420. name: "Gigamacro",
  3421. height: math.unit(5000, "miles")
  3422. },
  3423. {
  3424. name: "Teramacro",
  3425. height: math.unit(100, "parsecs")
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front.svg"
  3438. }
  3439. },
  3440. frontAlt: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt.svg"
  3446. }
  3447. },
  3448. frontAlt2: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(90, "kg"),
  3451. name: "Front (alt 2)",
  3452. image: {
  3453. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(9, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Large",
  3465. height: math.unit(25, "feet")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(0.25, "miles")
  3470. },
  3471. {
  3472. name: "Megamacro",
  3473. height: math.unit(10, "miles")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3479. {
  3480. side: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(140, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/sosha/side.svg",
  3486. bottom: 0.042
  3487. }
  3488. },
  3489. },
  3490. [
  3491. {
  3492. name: "Normal",
  3493. height: math.unit(12, "feet"),
  3494. default: true
  3495. }
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3500. {
  3501. side: {
  3502. height: math.unit(5 + 5 / 12, "feet"),
  3503. weight: math.unit(170, "kg"),
  3504. name: "Side",
  3505. image: {
  3506. source: "./media/characters/runnola/side.svg",
  3507. extra: 741 / 448,
  3508. bottom: 0.05
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Small",
  3515. height: math.unit(3, "feet")
  3516. },
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(5 + 5 / 12, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Big",
  3524. height: math.unit(10, "feet")
  3525. },
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(50, "kg"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/kurribird/front.svg",
  3537. bottom: 0.015
  3538. }
  3539. },
  3540. frontAlt: {
  3541. height: math.unit(1.5, "meter"),
  3542. weight: math.unit(50, "kg"),
  3543. name: "Front (Alt)",
  3544. image: {
  3545. source: "./media/characters/kurribird/front-alt.svg",
  3546. extra: 1.45
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Normal",
  3553. height: math.unit(7, "feet")
  3554. },
  3555. {
  3556. name: "Big",
  3557. height: math.unit(12, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(1500, "feet")
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(2, "miles")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(80, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/elbial/front.svg",
  3579. extra: 1643 / 1556,
  3580. bottom: 60.2 / 1696
  3581. }
  3582. },
  3583. side: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Side",
  3587. image: {
  3588. source: "./media/characters/elbial/side.svg",
  3589. extra: 1601/1528,
  3590. bottom: 97/1698
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/elbial/back.svg",
  3599. extra: 1653/1569,
  3600. bottom: 20/1673
  3601. }
  3602. },
  3603. frontDressed: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front (Dressed)",
  3607. image: {
  3608. source: "./media/characters/elbial/front-dressed.svg",
  3609. extra: 1638/1569,
  3610. bottom: 70/1708
  3611. }
  3612. },
  3613. genitals: {
  3614. height: math.unit(2 / 3.367, "meter"),
  3615. name: "Genitals",
  3616. image: {
  3617. source: "./media/characters/elbial/genitals.svg"
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Large",
  3624. height: math.unit(100, "feet")
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(500, "feet"),
  3629. default: true
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(10, "miles")
  3634. },
  3635. {
  3636. name: "Gigamacro",
  3637. height: math.unit(25000, "miles")
  3638. },
  3639. {
  3640. name: "Full-Size",
  3641. height: math.unit(8000000, "gigaparsecs")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(60, "kg"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/noah/front.svg"
  3654. }
  3655. },
  3656. talons: {
  3657. height: math.unit(0.315, "meter"),
  3658. name: "Talons",
  3659. image: {
  3660. source: "./media/characters/noah/talons.svg"
  3661. }
  3662. }
  3663. },
  3664. [
  3665. {
  3666. name: "Large",
  3667. height: math.unit(50, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(750, "feet"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Megamacro",
  3676. height: math.unit(50, "miles")
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(100000, "miles")
  3681. },
  3682. {
  3683. name: "Full-Size",
  3684. height: math.unit(3000000000, "miles")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/natalya/front.svg"
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(2, "meter"),
  3701. weight: math.unit(80, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/natalya/back.svg"
  3705. }
  3706. }
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(150, "feet"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Megamacro",
  3716. height: math.unit(5, "miles")
  3717. },
  3718. {
  3719. name: "Full-Size",
  3720. height: math.unit(600, "kiloparsecs")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3726. {
  3727. front: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(50, "kg"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/erestrebah/front.svg",
  3733. extra: 1262/1162,
  3734. bottom: 96/1358
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/erestrebah/back.svg",
  3743. extra: 1257/1139,
  3744. bottom: 13/1270
  3745. }
  3746. },
  3747. wing: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(50, "kg"),
  3750. name: "Wing",
  3751. image: {
  3752. source: "./media/characters/erestrebah/wing.svg",
  3753. extra: 1262/1162,
  3754. bottom: 96/1358
  3755. }
  3756. },
  3757. mouth: {
  3758. height: math.unit(0.39, "feet"),
  3759. name: "Mouth",
  3760. image: {
  3761. source: "./media/characters/erestrebah/mouth.svg"
  3762. }
  3763. }
  3764. },
  3765. [
  3766. {
  3767. name: "Normal",
  3768. height: math.unit(10, "feet")
  3769. },
  3770. {
  3771. name: "Large",
  3772. height: math.unit(50, "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(300, "feet")
  3778. },
  3779. {
  3780. name: "Macro+",
  3781. height: math.unit(750, "feet")
  3782. },
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(3, "miles")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(2, "meter"),
  3794. weight: math.unit(80, "kg"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/jennifer/front.svg",
  3798. bottom: 0.11,
  3799. extra: 1.16
  3800. }
  3801. },
  3802. frontAlt: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(80, "kg"),
  3805. name: "Front (Alt)",
  3806. image: {
  3807. source: "./media/characters/jennifer/front-alt.svg"
  3808. }
  3809. }
  3810. },
  3811. [
  3812. {
  3813. name: "Canon Height",
  3814. height: math.unit(120, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(300, "feet")
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(20000, "feet")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(2, "meter"),
  3832. weight: math.unit(50, "kg"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/kalista/front.svg",
  3836. extra: 1314/1145,
  3837. bottom: 101/1415
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(50, "kg"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/kalista/back.svg",
  3846. extra: 1366 / 1156,
  3847. bottom: 33.9 / 1362.78
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Uncomfortably Small",
  3854. height: math.unit(10, "feet")
  3855. },
  3856. {
  3857. name: "Small",
  3858. height: math.unit(30, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(100, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(2000, "feet")
  3868. },
  3869. {
  3870. name: "True Form",
  3871. height: math.unit(8924, "miles")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/ggv/front.svg"
  3884. }
  3885. },
  3886. side: {
  3887. height: math.unit(2, "meter"),
  3888. weight: math.unit(120, "kg"),
  3889. name: "Side",
  3890. image: {
  3891. source: "./media/characters/ggv/side.svg"
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Extremely Puny",
  3898. height: math.unit(9 + 5 / 12, "feet")
  3899. },
  3900. {
  3901. name: "Horribly Small",
  3902. height: math.unit(47.7, "miles"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Reasonably Sized",
  3907. height: math.unit(25000, "parsecs")
  3908. },
  3909. {
  3910. name: "Slightly Uncompressed",
  3911. height: math.unit(7.77e31, "parsecs")
  3912. },
  3913. {
  3914. name: "Omniversal",
  3915. height: math.unit(1e300, "meters")
  3916. },
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/napalm/front.svg"
  3928. }
  3929. },
  3930. back: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(75, "lb"),
  3933. name: "Back",
  3934. image: {
  3935. source: "./media/characters/napalm/back.svg"
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Standard",
  3942. height: math.unit(55, "feet"),
  3943. default: true
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(7 + 5 / 6, "feet"),
  3952. weight: math.unit(325, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/asana/front.svg",
  3956. extra: 1133 / 1060,
  3957. bottom: 15.2 / 1148.6
  3958. }
  3959. },
  3960. back: {
  3961. height: math.unit(7 + 5 / 6, "feet"),
  3962. weight: math.unit(325, "lb"),
  3963. name: "Back",
  3964. image: {
  3965. source: "./media/characters/asana/back.svg",
  3966. extra: 1114 / 1043,
  3967. bottom: 5 / 1120
  3968. }
  3969. },
  3970. dressedDark: {
  3971. height: math.unit(7 + 5 / 6, "feet"),
  3972. weight: math.unit(325, "lb"),
  3973. name: "Dressed (Dark)",
  3974. image: {
  3975. source: "./media/characters/asana/dressed-dark.svg",
  3976. extra: 1133 / 1060,
  3977. bottom: 15.2 / 1148.6
  3978. }
  3979. },
  3980. dressedLight: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Dressed (Light)",
  3984. image: {
  3985. source: "./media/characters/asana/dressed-light.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Standard",
  3994. height: math.unit(7 + 5 / 6, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Large",
  3999. height: math.unit(10, "meters")
  4000. },
  4001. {
  4002. name: "Macro",
  4003. height: math.unit(2500, "meters")
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(5e6, "meters")
  4008. },
  4009. {
  4010. name: "Examacro",
  4011. height: math.unit(5e12, "lightyears")
  4012. },
  4013. {
  4014. name: "Max Size",
  4015. height: math.unit(1e31, "lightyears")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(60, "kg"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/ebony/front.svg",
  4028. bottom: 0.03,
  4029. extra: 1045 / 810 + 0.03
  4030. }
  4031. },
  4032. side: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(60, "kg"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/ebony/side.svg",
  4038. bottom: 0.03,
  4039. extra: 1045 / 810 + 0.03
  4040. }
  4041. },
  4042. back: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Back",
  4046. image: {
  4047. source: "./media/characters/ebony/back.svg",
  4048. bottom: 0.01,
  4049. extra: 1045 / 810 + 0.01
  4050. }
  4051. },
  4052. },
  4053. [
  4054. // TODO check why I did this lol
  4055. {
  4056. name: "Standard",
  4057. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Macro",
  4062. height: math.unit(200, "feet")
  4063. },
  4064. {
  4065. name: "Gigamacro",
  4066. height: math.unit(13000, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/mountain/front.svg",
  4079. extra: 972 / 955,
  4080. bottom: 64 / 1036.6
  4081. }
  4082. },
  4083. back: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Back",
  4087. image: {
  4088. source: "./media/characters/mountain/back.svg",
  4089. extra: 970 / 950,
  4090. bottom: 28.25 / 999
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Large",
  4097. height: math.unit(20, "meters")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(300, "meters")
  4102. },
  4103. {
  4104. name: "Gigamacro",
  4105. height: math.unit(10000, "km"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Examacro",
  4110. height: math.unit(10e9, "lightyears")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(8, "feet"),
  4119. weight: math.unit(500, "lb"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/rick/front.svg"
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(8, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(5, "km")
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/ona/front.svg"
  4147. }
  4148. },
  4149. frontAlt: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Front (Alt)",
  4153. image: {
  4154. source: "./media/characters/ona/front-alt.svg"
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(8, "feet"),
  4159. weight: math.unit(120, "lb"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/ona/back.svg"
  4163. }
  4164. },
  4165. foot: {
  4166. height: math.unit(1.1, "feet"),
  4167. name: "Foot",
  4168. image: {
  4169. source: "./media/characters/ona/foot.svg"
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(70, "km"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(681818, "miles")
  4182. },
  4183. {
  4184. name: "Examacro",
  4185. height: math.unit(3800000, "lightyears")
  4186. },
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(12, "feet"),
  4194. weight: math.unit(3000, "lb"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/mech/front.svg",
  4198. extra: 2900 / 2770,
  4199. bottom: 110 / 3010
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(12, "feet"),
  4204. weight: math.unit(3000, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/mech/back.svg",
  4208. extra: 3011 / 2890,
  4209. bottom: 94 / 3105
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(3.07, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/mech/maw.svg"
  4217. }
  4218. },
  4219. head: {
  4220. height: math.unit(2.82, "feet"),
  4221. name: "Head",
  4222. image: {
  4223. source: "./media/characters/mech/head.svg"
  4224. }
  4225. },
  4226. dick: {
  4227. height: math.unit(1.43, "feet"),
  4228. name: "Dick",
  4229. image: {
  4230. source: "./media/characters/mech/dick.svg"
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(12, "feet")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(300, "feet"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Macro+",
  4246. height: math.unit(1500, "feet")
  4247. },
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(1.3, "meter"),
  4255. weight: math.unit(30, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gregory/front.svg",
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(1.3, "meter"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(20, "meter")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2.8, "meter"),
  4279. weight: math.unit(200, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/elory/front.svg",
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(2.8, "meter"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(38, "meter")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(470, "feet"),
  4303. weight: math.unit(924, "tons"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/angelpatamon/front.svg",
  4307. }
  4308. }
  4309. },
  4310. [
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(470, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Deity Size I",
  4318. height: math.unit(28651.2, "km")
  4319. },
  4320. {
  4321. name: "Deity Size II",
  4322. height: math.unit(171907.2, "km")
  4323. }
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4328. {
  4329. side: {
  4330. height: math.unit(7.2, "meter"),
  4331. weight: math.unit(8.2, "tons"),
  4332. name: "Side",
  4333. image: {
  4334. source: "./media/characters/cryae/side.svg",
  4335. extra: 3500 / 1500
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Normal",
  4342. height: math.unit(7.2, "meter"),
  4343. default: true
  4344. }
  4345. ]
  4346. ))
  4347. characterMakers.push(() => makeCharacter(
  4348. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4349. {
  4350. front: {
  4351. height: math.unit(6, "feet"),
  4352. weight: math.unit(175, "lb"),
  4353. name: "Front",
  4354. image: {
  4355. source: "./media/characters/xera/front.svg",
  4356. extra: 2377 / 1972,
  4357. bottom: 75.5 / 2452
  4358. }
  4359. },
  4360. side: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(175, "lb"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/xera/side.svg",
  4366. extra: 2345 / 2019,
  4367. bottom: 39.7 / 2384
  4368. }
  4369. },
  4370. back: {
  4371. height: math.unit(6, "feet"),
  4372. weight: math.unit(175, "lb"),
  4373. name: "Back",
  4374. image: {
  4375. source: "./media/characters/xera/back.svg",
  4376. extra: 2095 / 1984,
  4377. bottom: 67 / 2166
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "Small",
  4384. height: math.unit(10, "feet")
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(500, "meters"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Macro+",
  4393. height: math.unit(10, "km")
  4394. },
  4395. {
  4396. name: "Gigamacro",
  4397. height: math.unit(25000, "km")
  4398. },
  4399. {
  4400. name: "Teramacro",
  4401. height: math.unit(3e6, "km")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(6, "feet"),
  4410. weight: math.unit(175, "lb"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/nebula/front.svg",
  4414. extra: 2566 / 2362,
  4415. bottom: 81 / 2644
  4416. }
  4417. }
  4418. },
  4419. [
  4420. {
  4421. name: "Small",
  4422. height: math.unit(4.5, "meters")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(1500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(150, "km")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(27000, "km")
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(225, "lb"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/abysgar/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Small",
  4454. height: math.unit(4.5, "meters")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(1250, "meters"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Megamacro",
  4463. height: math.unit(125, "km")
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(26000, "km")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(180, "lb"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/yakuz/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Small",
  4486. height: math.unit(5, "meters")
  4487. },
  4488. {
  4489. name: "Macro",
  4490. height: math.unit(1500, "meters"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Megamacro",
  4495. height: math.unit(200, "km")
  4496. },
  4497. {
  4498. name: "Gigamacro",
  4499. height: math.unit(100000, "km")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(175, "lb"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/mirova/front.svg",
  4512. extra: 3334 / 3071,
  4513. bottom: 42 / 3375.6
  4514. }
  4515. }
  4516. },
  4517. [
  4518. {
  4519. name: "Small",
  4520. height: math.unit(5, "meters")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(900, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Megamacro",
  4529. height: math.unit(135, "km")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(20000, "km")
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4539. {
  4540. side: {
  4541. height: math.unit(28.35, "feet"),
  4542. weight: math.unit(99.75, "tons"),
  4543. name: "Side",
  4544. image: {
  4545. source: "./media/characters/asana-mech/side.svg",
  4546. extra: 923 / 699,
  4547. bottom: 50 / 975
  4548. }
  4549. },
  4550. chaingun: {
  4551. height: math.unit(7, "feet"),
  4552. weight: math.unit(2400, "lb"),
  4553. name: "Chaingun",
  4554. image: {
  4555. source: "./media/characters/asana-mech/chaingun.svg"
  4556. }
  4557. },
  4558. laser: {
  4559. height: math.unit(7.12, "feet"),
  4560. weight: math.unit(2000, "lb"),
  4561. name: "Laser",
  4562. image: {
  4563. source: "./media/characters/asana-mech/laser.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(28.35, "feet"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(2500, "feet")
  4576. },
  4577. {
  4578. name: "Megamacro",
  4579. height: math.unit(25, "miles")
  4580. },
  4581. {
  4582. name: "Examacro",
  4583. height: math.unit(6e8, "lightyears")
  4584. },
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4589. {
  4590. front: {
  4591. height: math.unit(5, "meters"),
  4592. weight: math.unit(1000, "kg"),
  4593. name: "Front",
  4594. image: {
  4595. source: "./media/characters/asche/front.svg",
  4596. extra: 1258 / 1190,
  4597. bottom: 47 / 1305
  4598. }
  4599. },
  4600. frontUnderwear: {
  4601. height: math.unit(5, "meters"),
  4602. weight: math.unit(1000, "kg"),
  4603. name: "Front (Underwear)",
  4604. image: {
  4605. source: "./media/characters/asche/front-underwear.svg",
  4606. extra: 1258 / 1190,
  4607. bottom: 47 / 1305
  4608. }
  4609. },
  4610. frontDressed: {
  4611. height: math.unit(5, "meters"),
  4612. weight: math.unit(1000, "kg"),
  4613. name: "Front (Dressed)",
  4614. image: {
  4615. source: "./media/characters/asche/front-dressed.svg",
  4616. extra: 1258 / 1190,
  4617. bottom: 47 / 1305
  4618. }
  4619. },
  4620. frontArmor: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front (Armored)",
  4624. image: {
  4625. source: "./media/characters/asche/front-armored.svg",
  4626. extra: 1374 / 1308,
  4627. bottom: 23 / 1397
  4628. }
  4629. },
  4630. mp724: {
  4631. height: math.unit(0.96, "meters"),
  4632. weight: math.unit(38, "kg"),
  4633. name: "H&K MP724",
  4634. image: {
  4635. source: "./media/characters/asche/h&k-mp724.svg"
  4636. }
  4637. },
  4638. side: {
  4639. height: math.unit(5, "meters"),
  4640. weight: math.unit(1000, "kg"),
  4641. name: "Side",
  4642. image: {
  4643. source: "./media/characters/asche/side.svg",
  4644. extra: 1717 / 1609,
  4645. bottom: 0.005
  4646. }
  4647. },
  4648. back: {
  4649. height: math.unit(5, "meters"),
  4650. weight: math.unit(1000, "kg"),
  4651. name: "Back",
  4652. image: {
  4653. source: "./media/characters/asche/back.svg",
  4654. extra: 1570 / 1501
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "DEFCON 5",
  4661. height: math.unit(5, "meters")
  4662. },
  4663. {
  4664. name: "DEFCON 4",
  4665. height: math.unit(500, "meters"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "DEFCON 3",
  4670. height: math.unit(5, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 2",
  4674. height: math.unit(500, "km")
  4675. },
  4676. {
  4677. name: "DEFCON 1",
  4678. height: math.unit(500000, "km")
  4679. },
  4680. {
  4681. name: "DEFCON 0",
  4682. height: math.unit(3, "gigaparsecs")
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4688. {
  4689. front: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front",
  4693. image: {
  4694. source: "./media/characters/gale/front.svg"
  4695. }
  4696. },
  4697. frontAlt1: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 1)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-1.svg"
  4703. }
  4704. },
  4705. frontAlt2: {
  4706. height: math.unit(2, "meters"),
  4707. weight: math.unit(76, "kg"),
  4708. name: "Front (Alt 2)",
  4709. image: {
  4710. source: "./media/characters/gale/front-alt-2.svg"
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7, "feet")
  4718. },
  4719. {
  4720. name: "Macro",
  4721. height: math.unit(150, "feet"),
  4722. default: true
  4723. },
  4724. {
  4725. name: "Macro+",
  4726. height: math.unit(300, "feet")
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4732. {
  4733. front: {
  4734. height: math.unit(5 + 10/12, "feet"),
  4735. weight: math.unit(67, "kg"),
  4736. name: "Front",
  4737. image: {
  4738. source: "./media/characters/draylen/front.svg",
  4739. extra: 832/777,
  4740. bottom: 85/917
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(5 + 10/12, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(150, "feet"),
  4752. default: true
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/chez/front.svg"
  4765. }
  4766. },
  4767. side: {
  4768. height: math.unit(7 + 9 / 12, "feet"),
  4769. weight: math.unit(379, "lbs"),
  4770. name: "Side",
  4771. image: {
  4772. source: "./media/characters/chez/side.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(7 + 9 / 12, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "God King",
  4784. height: math.unit(9750000, "meters")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(275, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/kaylum/front.svg",
  4797. bottom: 0.01,
  4798. extra: 1166 / 1031
  4799. }
  4800. },
  4801. frontWingless: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(275, "lbs"),
  4804. name: "Front (Wingless)",
  4805. image: {
  4806. source: "./media/characters/kaylum/front-wingless.svg",
  4807. bottom: 0.01,
  4808. extra: 1117 / 1031
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(3.05, "meters")
  4816. },
  4817. {
  4818. name: "Master",
  4819. height: math.unit(5.5, "meters")
  4820. },
  4821. {
  4822. name: "Rampage",
  4823. height: math.unit(19, "meters")
  4824. },
  4825. {
  4826. name: "Macro Lite",
  4827. height: math.unit(37, "meters")
  4828. },
  4829. {
  4830. name: "Hyper Predator",
  4831. height: math.unit(61, "meters")
  4832. },
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(138, "meters"),
  4836. default: true
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5 + 5 / 12, "feet"),
  4845. weight: math.unit(120, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/geta/front.svg",
  4849. extra: 1003/933,
  4850. bottom: 21/1024
  4851. }
  4852. },
  4853. paw: {
  4854. height: math.unit(0.35, "feet"),
  4855. name: "Paw",
  4856. image: {
  4857. source: "./media/characters/geta/paw.svg"
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Micro",
  4864. height: math.unit(3, "inches"),
  4865. default: true
  4866. },
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(5 + 5 / 12, "feet")
  4870. }
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4875. {
  4876. front: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(300, "lbs"),
  4879. name: "Front",
  4880. image: {
  4881. source: "./media/characters/tyrnn/front.svg"
  4882. }
  4883. }
  4884. },
  4885. [
  4886. {
  4887. name: "Main Height",
  4888. height: math.unit(355, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Fave. Height",
  4893. height: math.unit(2400, "feet")
  4894. }
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(300, "lbs"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/appledectomy/front.svg"
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(2500, "feet")
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(50, "miles"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Gigamacro",
  4921. height: math.unit(5000, "miles")
  4922. },
  4923. {
  4924. name: "Teramacro",
  4925. height: math.unit(250000, "miles")
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(200, "lbs"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/vulpes/front.svg",
  4938. extra: 573 / 543,
  4939. bottom: 0.033
  4940. }
  4941. },
  4942. side: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(200, "lbs"),
  4945. name: "Side",
  4946. image: {
  4947. source: "./media/characters/vulpes/side.svg",
  4948. extra: 577 / 549,
  4949. bottom: 11 / 588
  4950. }
  4951. },
  4952. back: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(200, "lbs"),
  4955. name: "Back",
  4956. image: {
  4957. source: "./media/characters/vulpes/back.svg",
  4958. extra: 573 / 549,
  4959. bottom: 20 / 593
  4960. }
  4961. },
  4962. feet: {
  4963. height: math.unit(1.276, "feet"),
  4964. name: "Feet",
  4965. image: {
  4966. source: "./media/characters/vulpes/feet.svg"
  4967. }
  4968. },
  4969. maw: {
  4970. height: math.unit(1.18, "feet"),
  4971. name: "Maw",
  4972. image: {
  4973. source: "./media/characters/vulpes/maw.svg"
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Micro",
  4980. height: math.unit(2, "inches")
  4981. },
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(6.3, "feet")
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(850, "feet")
  4989. },
  4990. {
  4991. name: "Megamacro",
  4992. height: math.unit(7500, "feet"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Gigamacro",
  4997. height: math.unit(570000, "miles")
  4998. }
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/front.svg"
  5010. }
  5011. },
  5012. side: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Side",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/side.svg"
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(210, "lbs"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/back.svg"
  5026. }
  5027. },
  5028. feral: {
  5029. height: math.unit(9, "feet"),
  5030. weight: math.unit(700, "lbs"),
  5031. name: "Feral",
  5032. image: {
  5033. source: "./media/characters/rain-fallen/feral.svg"
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Meddling with Mortals",
  5040. height: math.unit(8 + 8/12, "feet")
  5041. },
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(5, "meter")
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(150, "meter"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(278e6, "meter")
  5054. },
  5055. {
  5056. name: "Gigamacro",
  5057. height: math.unit(2e9, "meter")
  5058. },
  5059. {
  5060. name: "Teramacro",
  5061. height: math.unit(8e12, "meter")
  5062. },
  5063. {
  5064. name: "Devourer",
  5065. height: math.unit(14, "zettameters")
  5066. },
  5067. {
  5068. name: "Scarlet King",
  5069. height: math.unit(18, "yottameters")
  5070. },
  5071. {
  5072. name: "Void",
  5073. height: math.unit(1e88, "yottameters")
  5074. }
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5079. {
  5080. standing: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(180, "lbs"),
  5083. name: "Standing",
  5084. image: {
  5085. source: "./media/characters/zaakira/standing.svg",
  5086. extra: 1599/1504,
  5087. bottom: 39/1638
  5088. }
  5089. },
  5090. laying: {
  5091. height: math.unit(3, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Laying",
  5094. image: {
  5095. source: "./media/characters/zaakira/laying.svg"
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(12, "feet")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(279, "feet"),
  5107. default: true
  5108. }
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5113. {
  5114. femSfw: {
  5115. height: math.unit(8, "feet"),
  5116. weight: math.unit(350, "lb"),
  5117. name: "Fem",
  5118. image: {
  5119. source: "./media/characters/sigvald/fem-sfw.svg",
  5120. extra: 182 / 164,
  5121. bottom: 8.7 / 190.5
  5122. }
  5123. },
  5124. femNsfw: {
  5125. height: math.unit(8, "feet"),
  5126. weight: math.unit(350, "lb"),
  5127. name: "Fem (NSFW)",
  5128. image: {
  5129. source: "./media/characters/sigvald/fem-nsfw.svg",
  5130. extra: 182 / 164,
  5131. bottom: 8.7 / 190.5
  5132. }
  5133. },
  5134. maleNsfw: {
  5135. height: math.unit(8, "feet"),
  5136. weight: math.unit(350, "lb"),
  5137. name: "Male (NSFW)",
  5138. image: {
  5139. source: "./media/characters/sigvald/male-nsfw.svg",
  5140. extra: 182 / 164,
  5141. bottom: 8.7 / 190.5
  5142. }
  5143. },
  5144. hermNsfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Herm (NSFW)",
  5148. image: {
  5149. source: "./media/characters/sigvald/herm-nsfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. dick: {
  5155. height: math.unit(2.36, "feet"),
  5156. name: "Dick",
  5157. image: {
  5158. source: "./media/characters/sigvald/dick.svg"
  5159. }
  5160. },
  5161. eye: {
  5162. height: math.unit(0.31, "feet"),
  5163. name: "Eye",
  5164. image: {
  5165. source: "./media/characters/sigvald/eye.svg"
  5166. }
  5167. },
  5168. mouth: {
  5169. height: math.unit(0.92, "feet"),
  5170. name: "Mouth",
  5171. image: {
  5172. source: "./media/characters/sigvald/mouth.svg"
  5173. }
  5174. },
  5175. paws: {
  5176. height: math.unit(2.2, "feet"),
  5177. name: "Paws",
  5178. image: {
  5179. source: "./media/characters/sigvald/paws.svg"
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(8, "feet")
  5187. },
  5188. {
  5189. name: "Large",
  5190. height: math.unit(12, "feet")
  5191. },
  5192. {
  5193. name: "Larger",
  5194. height: math.unit(20, "feet")
  5195. },
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(150, "feet")
  5199. },
  5200. {
  5201. name: "Macro+",
  5202. height: math.unit(200, "feet"),
  5203. default: true
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5209. {
  5210. side: {
  5211. height: math.unit(12, "feet"),
  5212. weight: math.unit(2000, "kg"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/scott/side.svg",
  5216. extra: 754 / 724,
  5217. bottom: 0.069
  5218. }
  5219. },
  5220. upright: {
  5221. height: math.unit(12, "feet"),
  5222. weight: math.unit(2000, "kg"),
  5223. name: "Upright",
  5224. image: {
  5225. source: "./media/characters/scott/upright.svg",
  5226. extra: 3881 / 3722,
  5227. bottom: 0.05
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(12, "feet"),
  5235. default: true
  5236. },
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5241. {
  5242. side: {
  5243. height: math.unit(8, "meters"),
  5244. weight: math.unit(84755, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/tobias/side.svg",
  5248. extra: 1474 / 1096,
  5249. bottom: 38.9 / 1513.1235
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(8, "meters"),
  5257. default: true
  5258. },
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5263. {
  5264. front: {
  5265. height: math.unit(5.5, "feet"),
  5266. weight: math.unit(400, "lbs"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/kieran/front.svg",
  5270. extra: 2694 / 2364,
  5271. bottom: 217 / 2908
  5272. }
  5273. },
  5274. side: {
  5275. height: math.unit(5.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/kieran/side.svg",
  5280. extra: 875 / 777,
  5281. bottom: 84.6 / 959
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Normal",
  5288. height: math.unit(5.5, "feet"),
  5289. default: true
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5295. {
  5296. side: {
  5297. height: math.unit(2, "meters"),
  5298. weight: math.unit(70, "kg"),
  5299. name: "Side",
  5300. image: {
  5301. source: "./media/characters/sanya/side.svg",
  5302. bottom: 0.02,
  5303. extra: 1.02
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Small",
  5310. height: math.unit(2, "meters")
  5311. },
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(3, "meters")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(16, "meters"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(2, "meters"),
  5328. weight: math.unit(120, "kg"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/miranda/front.svg",
  5332. extra: 195 / 185,
  5333. bottom: 10.9 / 206.5
  5334. }
  5335. },
  5336. back: {
  5337. height: math.unit(2, "meters"),
  5338. weight: math.unit(120, "kg"),
  5339. name: "Back",
  5340. image: {
  5341. source: "./media/characters/miranda/back.svg",
  5342. extra: 201 / 193,
  5343. bottom: 2.3 / 203.7
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(10, "feet"),
  5351. default: true
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "James", species: ["deer"], tags: ["anthro"] },
  5357. {
  5358. side: {
  5359. height: math.unit(2, "meters"),
  5360. weight: math.unit(100, "kg"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/james/front.svg",
  5364. extra: 10 / 8.5
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(8.5, "feet"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5378. {
  5379. side: {
  5380. height: math.unit(9.5, "feet"),
  5381. weight: math.unit(2500, "lbs"),
  5382. name: "Side",
  5383. image: {
  5384. source: "./media/characters/heather/side.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(9.5, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(6.5, "feet"),
  5401. weight: math.unit(400, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/lukas/side.svg",
  5405. extra: 7.25 / 6.5
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(6.5, "feet"),
  5413. default: true
  5414. }
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5419. {
  5420. side: {
  5421. height: math.unit(5, "feet"),
  5422. weight: math.unit(3000, "lbs"),
  5423. name: "Side",
  5424. image: {
  5425. source: "./media/characters/louise/side.svg"
  5426. }
  5427. },
  5428. },
  5429. [
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(5, "feet"),
  5433. default: true
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5439. {
  5440. side: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(150, "lbs"),
  5443. name: "Side",
  5444. image: {
  5445. source: "./media/characters/ramona/side.svg",
  5446. extra: 871/854,
  5447. bottom: 41/912
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(5.3, "meters"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(20, "stories")
  5460. },
  5461. {
  5462. name: "Macro+",
  5463. height: math.unit(50, "stories")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. standing: {
  5471. height: math.unit(5.75, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Standing",
  5474. image: {
  5475. source: "./media/characters/deerpuff/standing.svg",
  5476. extra: 682 / 624
  5477. }
  5478. },
  5479. sitting: {
  5480. height: math.unit(5.75 / 1.79, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Sitting",
  5483. image: {
  5484. source: "./media/characters/deerpuff/sitting.svg",
  5485. bottom: 44 / 400,
  5486. extra: 1
  5487. }
  5488. },
  5489. taurLaying: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(400, "lbs"),
  5492. name: "Taur (Laying)",
  5493. image: {
  5494. source: "./media/characters/deerpuff/taur-laying.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Puffball",
  5501. height: math.unit(6, "inches")
  5502. },
  5503. {
  5504. name: "Normalpuff",
  5505. height: math.unit(5.75, "feet")
  5506. },
  5507. {
  5508. name: "Macropuff",
  5509. height: math.unit(1500, "feet"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Megapuff",
  5514. height: math.unit(500, "miles")
  5515. },
  5516. {
  5517. name: "Gigapuff",
  5518. height: math.unit(250000, "miles")
  5519. },
  5520. {
  5521. name: "Omegapuff",
  5522. height: math.unit(1000, "lightyears")
  5523. },
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5528. {
  5529. stomping: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Stomping",
  5533. image: {
  5534. source: "./media/characters/vivian/stomping.svg"
  5535. }
  5536. },
  5537. sitting: {
  5538. height: math.unit(6 / 1.75, "feet"),
  5539. weight: math.unit(170, "lbs"),
  5540. name: "Sitting",
  5541. image: {
  5542. source: "./media/characters/vivian/sitting.svg",
  5543. bottom: 1 / 6.4,
  5544. extra: 1,
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(7, "feet"),
  5552. default: true
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(10, "stories")
  5557. },
  5558. {
  5559. name: "Macro+",
  5560. height: math.unit(30, "stories")
  5561. },
  5562. {
  5563. name: "Megamacro",
  5564. height: math.unit(10, "miles")
  5565. },
  5566. {
  5567. name: "Megamacro+",
  5568. height: math.unit(2750000, "meters")
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(160, "lbs"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/prince/front.svg",
  5581. extra: 3400 / 3000
  5582. }
  5583. },
  5584. jumping: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(160, "lbs"),
  5587. name: "Jumping",
  5588. image: {
  5589. source: "./media/characters/prince/jump.svg",
  5590. extra: 2555 / 2134
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "Normal",
  5597. height: math.unit(7.75, "feet"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "Not cute",
  5602. height: math.unit(17, "feet")
  5603. },
  5604. {
  5605. name: "I said NOT",
  5606. height: math.unit(91, "feet")
  5607. },
  5608. {
  5609. name: "Please stop",
  5610. height: math.unit(560, "feet")
  5611. },
  5612. {
  5613. name: "What have you done",
  5614. height: math.unit(2200, "feet")
  5615. },
  5616. {
  5617. name: "Deer God",
  5618. height: math.unit(3.6, "miles")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5624. {
  5625. standing: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(300, "lbs"),
  5628. name: "Standing",
  5629. image: {
  5630. source: "./media/characters/psymon/standing.svg",
  5631. extra: 1888 / 1810,
  5632. bottom: 0.05
  5633. }
  5634. },
  5635. slithering: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(300, "lbs"),
  5638. name: "Slithering",
  5639. image: {
  5640. source: "./media/characters/psymon/slithering.svg",
  5641. extra: 1330 / 1224
  5642. }
  5643. },
  5644. slitheringAlt: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(300, "lbs"),
  5647. name: "Slithering (Alt)",
  5648. image: {
  5649. source: "./media/characters/psymon/slithering-alt.svg",
  5650. extra: 1330 / 1224
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(11.25, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Large",
  5662. height: math.unit(27, "feet")
  5663. },
  5664. {
  5665. name: "Giant",
  5666. height: math.unit(87, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(365, "feet")
  5671. },
  5672. {
  5673. name: "Megamacro",
  5674. height: math.unit(3, "miles")
  5675. },
  5676. {
  5677. name: "World Serpent",
  5678. height: math.unit(8000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(180, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/daimos/front.svg",
  5691. extra: 4160 / 3897,
  5692. bottom: 0.021
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(8, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "Big Dog",
  5704. height: math.unit(22, "feet")
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(127, "feet")
  5709. },
  5710. {
  5711. name: "Megamacro",
  5712. height: math.unit(3600, "feet")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5718. {
  5719. side: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(180, "lbs"),
  5722. name: "Side",
  5723. image: {
  5724. source: "./media/characters/blake/side.svg",
  5725. extra: 1212 / 1120,
  5726. bottom: 0.05
  5727. }
  5728. },
  5729. crouched: {
  5730. height: math.unit(6 * 0.57, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Crouched",
  5733. image: {
  5734. source: "./media/characters/blake/crouched.svg",
  5735. extra: 840 / 587,
  5736. bottom: 0.04
  5737. }
  5738. },
  5739. bent: {
  5740. height: math.unit(6 * 0.75, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Bent",
  5743. image: {
  5744. source: "./media/characters/blake/bent.svg",
  5745. extra: 592 / 544,
  5746. bottom: 0.035
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(8 + 1 / 6, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Big Backside",
  5758. height: math.unit(37, "feet")
  5759. },
  5760. {
  5761. name: "Subway Shredder",
  5762. height: math.unit(72, "feet")
  5763. },
  5764. {
  5765. name: "City Carver",
  5766. height: math.unit(1675, "feet")
  5767. },
  5768. {
  5769. name: "Tectonic Tweaker",
  5770. height: math.unit(2300, "miles")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(180, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/guisetto/front.svg",
  5783. extra: 856 / 817,
  5784. bottom: 0.06
  5785. }
  5786. },
  5787. airborne: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(180, "lbs"),
  5790. name: "Airborne",
  5791. image: {
  5792. source: "./media/characters/guisetto/airborne.svg",
  5793. extra: 584 / 525
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(10 + 11 / 12, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Large",
  5805. height: math.unit(35, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(475, "feet")
  5810. },
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(180, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/luxor/front.svg",
  5822. extra: 2940 / 2152
  5823. }
  5824. },
  5825. back: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(180, "lbs"),
  5828. name: "Back",
  5829. image: {
  5830. source: "./media/characters/luxor/back.svg",
  5831. extra: 1083 / 960
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(5 + 5 / 6, "feet"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Lamp",
  5843. height: math.unit(50, "feet")
  5844. },
  5845. {
  5846. name: "Lämp",
  5847. height: math.unit(300, "feet")
  5848. },
  5849. {
  5850. name: "The sun is a lamp",
  5851. height: math.unit(250000, "miles")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5857. {
  5858. front: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(50, "lbs"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/huoyan/front.svg"
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(180, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/huoyan/side.svg"
  5872. }
  5873. },
  5874. },
  5875. [
  5876. {
  5877. name: "Chef",
  5878. height: math.unit(9, "feet")
  5879. },
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(65, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(780, "feet")
  5888. },
  5889. {
  5890. name: "Flaming Mountain",
  5891. height: math.unit(4.8, "miles")
  5892. },
  5893. {
  5894. name: "Celestial",
  5895. height: math.unit(765000, "miles")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(5 + 3 / 4, "feet"),
  5904. weight: math.unit(120, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/tails/front.svg"
  5908. }
  5909. }
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(5 + 3 / 4, "feet"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(4, "feet"),
  5924. weight: math.unit(50, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/rainy/front.svg"
  5928. }
  5929. }
  5930. },
  5931. [
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(800, "feet"),
  5935. default: true
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(150, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/rainier/front.svg"
  5948. }
  5949. }
  5950. },
  5951. [
  5952. {
  5953. name: "Micro",
  5954. height: math.unit(2, "mm"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(8 + 4/12, "feet"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/andy-renard/front.svg",
  5967. extra: 1839/1726,
  5968. bottom: 134/1973
  5969. }
  5970. },
  5971. back: {
  5972. height: math.unit(8 + 4/12, "feet"),
  5973. name: "Back",
  5974. image: {
  5975. source: "./media/characters/andy-renard/back.svg",
  5976. extra: 1838/1710,
  5977. bottom: 105/1943
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Tall",
  5984. height: math.unit(8 + 4/12, "feet")
  5985. },
  5986. {
  5987. name: "Mini Macro",
  5988. height: math.unit(15, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Macro",
  5993. height: math.unit(100, "feet")
  5994. },
  5995. {
  5996. name: "Mega Macro",
  5997. height: math.unit(1000, "feet")
  5998. },
  5999. {
  6000. name: "Giga Macro",
  6001. height: math.unit(10, "miles")
  6002. },
  6003. {
  6004. name: "God Macro",
  6005. height: math.unit(1, "multiverse")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(210, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/cimmaron/front-sfw.svg",
  6018. extra: 701 / 676,
  6019. bottom: 0.046
  6020. }
  6021. },
  6022. back: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(210, "lbs"),
  6025. name: "Back",
  6026. image: {
  6027. source: "./media/characters/cimmaron/back-sfw.svg",
  6028. extra: 701 / 676,
  6029. bottom: 0.046
  6030. }
  6031. },
  6032. frontNsfw: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(210, "lbs"),
  6035. name: "Front (NSFW)",
  6036. image: {
  6037. source: "./media/characters/cimmaron/front-nsfw.svg",
  6038. extra: 701 / 676,
  6039. bottom: 0.046
  6040. }
  6041. },
  6042. backNsfw: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(210, "lbs"),
  6045. name: "Back (NSFW)",
  6046. image: {
  6047. source: "./media/characters/cimmaron/back-nsfw.svg",
  6048. extra: 701 / 676,
  6049. bottom: 0.046
  6050. }
  6051. },
  6052. dick: {
  6053. height: math.unit(1.714, "feet"),
  6054. name: "Dick",
  6055. image: {
  6056. source: "./media/characters/cimmaron/dick.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. },
  6066. {
  6067. name: "Macro Mayor",
  6068. height: math.unit(350, "meters")
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6074. {
  6075. front: {
  6076. height: math.unit(6, "feet"),
  6077. weight: math.unit(200, "lbs"),
  6078. name: "Front",
  6079. image: {
  6080. source: "./media/characters/akari/front.svg",
  6081. extra: 962 / 901,
  6082. bottom: 0.04
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Micro",
  6089. height: math.unit(5, "inches"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(7, "feet")
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(140, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/cynosura/front.svg",
  6107. extra: 896 / 847
  6108. }
  6109. },
  6110. back: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(140, "lbs"),
  6113. name: "Back",
  6114. image: {
  6115. source: "./media/characters/cynosura/back.svg",
  6116. extra: 1365 / 1250
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(4, "inches")
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(5.75, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Tall",
  6132. height: math.unit(10, "feet")
  6133. },
  6134. {
  6135. name: "Big",
  6136. height: math.unit(20, "feet")
  6137. },
  6138. {
  6139. name: "Macro",
  6140. height: math.unit(50, "feet")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(13 + 2/12, "feet"),
  6149. weight: math.unit(800, "kg"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/gin/front.svg",
  6153. extra: 1312/1191,
  6154. bottom: 45/1357
  6155. }
  6156. },
  6157. mouth: {
  6158. height: math.unit(2.39 * 1.8, "feet"),
  6159. name: "Mouth",
  6160. image: {
  6161. source: "./media/characters/gin/mouth.svg"
  6162. }
  6163. },
  6164. hand: {
  6165. height: math.unit(1.57 * 2.19, "feet"),
  6166. name: "Hand",
  6167. image: {
  6168. source: "./media/characters/gin/hand.svg"
  6169. }
  6170. },
  6171. foot: {
  6172. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6173. name: "Foot",
  6174. image: {
  6175. source: "./media/characters/gin/foot.svg"
  6176. }
  6177. },
  6178. sole: {
  6179. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6180. name: "Sole",
  6181. image: {
  6182. source: "./media/characters/gin/sole.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Very Small",
  6189. height: math.unit(13 + 2 / 12, "feet")
  6190. },
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(600, "miles")
  6194. },
  6195. {
  6196. name: "Regular",
  6197. height: math.unit(20, "earths"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(2.2, "solarradii")
  6203. },
  6204. {
  6205. name: "Teramacro",
  6206. height: math.unit(1.2, "galaxies")
  6207. },
  6208. {
  6209. name: "Omegamacro",
  6210. height: math.unit(200, "universes")
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(6 + 1 / 6, "feet"),
  6219. weight: math.unit(178, "lbs"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/guy/front.svg"
  6223. }
  6224. }
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6 + 1 / 6, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Large",
  6234. height: math.unit(25 + 7 / 12, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(60 + 9 / 12, "feet")
  6239. },
  6240. {
  6241. name: "Macro+",
  6242. height: math.unit(246, "feet")
  6243. },
  6244. {
  6245. name: "Macro++",
  6246. height: math.unit(878, "feet")
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(9, "feet"),
  6255. weight: math.unit(800, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/tiberius/front.svg",
  6259. extra: 2295 / 2071
  6260. }
  6261. },
  6262. back: {
  6263. height: math.unit(9, "feet"),
  6264. weight: math.unit(800, "lbs"),
  6265. name: "Back",
  6266. image: {
  6267. source: "./media/characters/tiberius/back.svg",
  6268. extra: 2373 / 2160
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(9, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(600, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/surgo/front.svg",
  6289. extra: 3591 / 2227
  6290. }
  6291. },
  6292. back: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(600, "lbs"),
  6295. name: "Back",
  6296. image: {
  6297. source: "./media/characters/surgo/back.svg",
  6298. extra: 3557 / 2228
  6299. }
  6300. },
  6301. laying: {
  6302. height: math.unit(6 * 0.85, "feet"),
  6303. weight: math.unit(600, "lbs"),
  6304. name: "Laying",
  6305. image: {
  6306. source: "./media/characters/surgo/laying.svg"
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6320. {
  6321. side: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(150, "lbs"),
  6324. name: "Side",
  6325. image: {
  6326. source: "./media/characters/cibus/side.svg",
  6327. extra: 800 / 400
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(6, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6341. {
  6342. front: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/nibbles/front.svg"
  6348. }
  6349. },
  6350. side: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(240, "lbs"),
  6353. name: "Side",
  6354. image: {
  6355. source: "./media/characters/nibbles/side.svg"
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(9, "feet"),
  6363. default: true
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6369. {
  6370. side: {
  6371. height: math.unit(5 + 1 / 6, "feet"),
  6372. weight: math.unit(130, "lbs"),
  6373. name: "Side",
  6374. image: {
  6375. source: "./media/characters/rikky/side.svg",
  6376. extra: 851 / 801
  6377. }
  6378. },
  6379. },
  6380. [
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(5 + 1 / 6, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(152, "feet"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(7, "miles")
  6393. }
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6398. {
  6399. side: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Side",
  6403. image: {
  6404. source: "./media/characters/malfressa/side.svg"
  6405. }
  6406. },
  6407. walking: {
  6408. height: math.unit(370, "cm"),
  6409. weight: math.unit(350, "lbs"),
  6410. name: "Walking",
  6411. image: {
  6412. source: "./media/characters/malfressa/walking.svg"
  6413. }
  6414. },
  6415. feral: {
  6416. height: math.unit(2500, "cm"),
  6417. weight: math.unit(100000, "lbs"),
  6418. name: "Feral",
  6419. image: {
  6420. source: "./media/characters/malfressa/feral.svg",
  6421. extra: 2108 / 837,
  6422. bottom: 0.02
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Normal",
  6429. height: math.unit(370, "cm")
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(300, "meters"),
  6434. default: true
  6435. }
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(60, "kg"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/jaro/front.svg",
  6447. extra: 845/817,
  6448. bottom: 45/890
  6449. }
  6450. },
  6451. back: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(60, "kg"),
  6454. name: "Back",
  6455. image: {
  6456. source: "./media/characters/jaro/back.svg",
  6457. extra: 847/817,
  6458. bottom: 34/881
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(7, "inches")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(5.5, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Minimacro",
  6474. height: math.unit(20, "feet")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(200, "meters")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(195, "lb"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/rogue/front.svg"
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(90, "feet"),
  6498. default: true
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6504. {
  6505. standing: {
  6506. height: math.unit(5 + 8 / 12, "feet"),
  6507. weight: math.unit(140, "lb"),
  6508. name: "Standing",
  6509. image: {
  6510. source: "./media/characters/piper/standing.svg",
  6511. extra: 1440/1284,
  6512. bottom: 66/1506
  6513. }
  6514. },
  6515. running: {
  6516. height: math.unit(5 + 8 / 12, "feet"),
  6517. weight: math.unit(140, "lb"),
  6518. name: "Running",
  6519. image: {
  6520. source: "./media/characters/piper/running.svg",
  6521. extra: 3948/3655,
  6522. bottom: 0/3948
  6523. }
  6524. },
  6525. sole: {
  6526. height: math.unit(0.81, "feet"),
  6527. weight: math.unit(2, "kg"),
  6528. name: "Sole",
  6529. image: {
  6530. source: "./media/characters/piper/sole.svg"
  6531. }
  6532. },
  6533. nipple: {
  6534. height: math.unit(0.25, "feet"),
  6535. weight: math.unit(1.5, "lb"),
  6536. name: "Nipple",
  6537. image: {
  6538. source: "./media/characters/piper/nipple.svg"
  6539. }
  6540. },
  6541. head: {
  6542. height: math.unit(1.1, "feet"),
  6543. name: "Head",
  6544. image: {
  6545. source: "./media/characters/piper/head.svg"
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Micro",
  6552. height: math.unit(2, "inches")
  6553. },
  6554. {
  6555. name: "Normal",
  6556. height: math.unit(5 + 8 / 12, "feet")
  6557. },
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(250, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(7, "miles")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6571. {
  6572. front: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(220, "lb"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/gemini/front.svg"
  6578. }
  6579. },
  6580. back: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(220, "lb"),
  6583. name: "Back",
  6584. image: {
  6585. source: "./media/characters/gemini/back.svg"
  6586. }
  6587. },
  6588. kneeling: {
  6589. height: math.unit(6 / 1.5, "feet"),
  6590. weight: math.unit(220, "lb"),
  6591. name: "Kneeling",
  6592. image: {
  6593. source: "./media/characters/gemini/kneeling.svg",
  6594. bottom: 0.02
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(300, "meters"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Megamacro",
  6606. height: math.unit(6900, "meters")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6612. {
  6613. anthro: {
  6614. height: math.unit(2.35, "meters"),
  6615. weight: math.unit(73, "kg"),
  6616. name: "Anthro",
  6617. image: {
  6618. source: "./media/characters/alicia/anthro.svg",
  6619. extra: 2571 / 2385,
  6620. bottom: 75 / 2648
  6621. }
  6622. },
  6623. paw: {
  6624. height: math.unit(1.32, "feet"),
  6625. name: "Paw",
  6626. image: {
  6627. source: "./media/characters/alicia/paw.svg"
  6628. }
  6629. },
  6630. feral: {
  6631. height: math.unit(1.69, "meters"),
  6632. weight: math.unit(73, "kg"),
  6633. name: "Feral",
  6634. image: {
  6635. source: "./media/characters/alicia/feral.svg",
  6636. extra: 2123 / 1715,
  6637. bottom: 222 / 2349
  6638. }
  6639. },
  6640. },
  6641. [
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(2.35, "meters")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(60, "meters"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(10000, "kilometers")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(7, "feet"),
  6662. weight: math.unit(250, "lbs"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/archy/front.svg"
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Micro",
  6672. height: math.unit(1, "inch")
  6673. },
  6674. {
  6675. name: "Shorty",
  6676. height: math.unit(5, "feet")
  6677. },
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(7, "feet")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(600, "meters"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Megamacro",
  6689. height: math.unit(1, "mile")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(1.65, "meters"),
  6698. weight: math.unit(74, "kg"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/berri/front.svg",
  6702. extra: 857 / 837,
  6703. bottom: 18 / 877
  6704. }
  6705. },
  6706. bum: {
  6707. height: math.unit(1.46, "feet"),
  6708. name: "Bum",
  6709. image: {
  6710. source: "./media/characters/berri/bum.svg"
  6711. }
  6712. },
  6713. mouth: {
  6714. height: math.unit(0.44, "feet"),
  6715. name: "Mouth",
  6716. image: {
  6717. source: "./media/characters/berri/mouth.svg"
  6718. }
  6719. },
  6720. paw: {
  6721. height: math.unit(0.826, "feet"),
  6722. name: "Paw",
  6723. image: {
  6724. source: "./media/characters/berri/paw.svg"
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(1.65, "meters")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(60, "m"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Megamacro",
  6740. height: math.unit(9.213, "km")
  6741. },
  6742. {
  6743. name: "Planet Eater",
  6744. height: math.unit(489, "megameters")
  6745. },
  6746. {
  6747. name: "Teramacro",
  6748. height: math.unit(2471635000000, "meters")
  6749. },
  6750. {
  6751. name: "Examacro",
  6752. height: math.unit(8.0624e+26, "meters")
  6753. }
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(1.72, "meters"),
  6761. weight: math.unit(68, "kg"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/lexi/front.svg"
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Very Smol",
  6771. height: math.unit(10, "mm")
  6772. },
  6773. {
  6774. name: "Micro",
  6775. height: math.unit(6.8, "cm"),
  6776. default: true
  6777. },
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(1.72, "m")
  6781. }
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(1.69, "meters"),
  6789. weight: math.unit(68, "kg"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/martin/front.svg",
  6793. extra: 596 / 581
  6794. }
  6795. }
  6796. },
  6797. [
  6798. {
  6799. name: "Micro",
  6800. height: math.unit(6.85, "cm"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Normal",
  6805. height: math.unit(1.69, "m")
  6806. }
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(1.69, "meters"),
  6814. weight: math.unit(68, "kg"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/juno/front.svg"
  6818. }
  6819. }
  6820. },
  6821. [
  6822. {
  6823. name: "Micro",
  6824. height: math.unit(7, "cm")
  6825. },
  6826. {
  6827. name: "Normal",
  6828. height: math.unit(1.89, "m")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(353, "meters"),
  6833. default: true
  6834. }
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(1.93, "meters"),
  6842. weight: math.unit(83, "kg"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/samantha/front.svg"
  6846. }
  6847. },
  6848. frontClothed: {
  6849. height: math.unit(1.93, "meters"),
  6850. weight: math.unit(83, "kg"),
  6851. name: "Front (Clothed)",
  6852. image: {
  6853. source: "./media/characters/samantha/front-clothed.svg"
  6854. }
  6855. },
  6856. back: {
  6857. height: math.unit(1.93, "meters"),
  6858. weight: math.unit(83, "kg"),
  6859. name: "Back",
  6860. image: {
  6861. source: "./media/characters/samantha/back.svg"
  6862. }
  6863. },
  6864. },
  6865. [
  6866. {
  6867. name: "Normal",
  6868. height: math.unit(1.93, "m")
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(74, "meters"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Macro+",
  6877. height: math.unit(223, "meters"),
  6878. },
  6879. {
  6880. name: "Megamacro",
  6881. height: math.unit(8381, "meters"),
  6882. },
  6883. {
  6884. name: "Megamacro+",
  6885. height: math.unit(12000, "kilometers")
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(1.92, "meters"),
  6894. weight: math.unit(80, "kg"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/dr-clay/front.svg"
  6898. }
  6899. },
  6900. frontClothed: {
  6901. height: math.unit(1.92, "meters"),
  6902. weight: math.unit(80, "kg"),
  6903. name: "Front (Clothed)",
  6904. image: {
  6905. source: "./media/characters/dr-clay/front-clothed.svg"
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(1.92, "m")
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(214, "meters"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Macro+",
  6921. height: math.unit(12.237, "meters"),
  6922. },
  6923. {
  6924. name: "Megamacro",
  6925. height: math.unit(557, "megameters"),
  6926. },
  6927. {
  6928. name: "Unimaginable",
  6929. height: math.unit(120e9, "lightyears")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(2, "meters"),
  6938. weight: math.unit(80, "kg"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6942. }
  6943. }
  6944. },
  6945. [
  6946. {
  6947. name: "Teramacro",
  6948. height: math.unit(500000, "lightyears"),
  6949. default: true
  6950. },
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6955. {
  6956. crux: {
  6957. height: math.unit(2, "meters"),
  6958. weight: math.unit(150, "kg"),
  6959. name: "Crux",
  6960. image: {
  6961. source: "./media/characters/vemus/crux.svg",
  6962. extra: 1074/936,
  6963. bottom: 23/1097
  6964. }
  6965. },
  6966. skunkTanuki: {
  6967. height: math.unit(2, "meters"),
  6968. weight: math.unit(150, "kg"),
  6969. name: "Skunk-Tanuki",
  6970. image: {
  6971. source: "./media/characters/vemus/skunk-tanuki.svg",
  6972. extra: 926/893,
  6973. bottom: 20/946
  6974. }
  6975. },
  6976. },
  6977. [
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(3.75, "meters"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Big",
  6985. height: math.unit(8, "meters")
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(100, "meters")
  6990. },
  6991. {
  6992. name: "Macro+",
  6993. height: math.unit(1500, "meters")
  6994. },
  6995. {
  6996. name: "Stellar",
  6997. height: math.unit(14e8, "meters")
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(2, "meters"),
  7006. weight: math.unit(70, "kg"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/beherit/front.svg",
  7010. extra: 1234/1109,
  7011. bottom: 55/1289
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(6, "feet")
  7019. },
  7020. {
  7021. name: "Lorg",
  7022. height: math.unit(25, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Lorger",
  7027. height: math.unit(75, "feet")
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(200, "meters")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(150, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/everett/front.svg",
  7044. extra: 1017/866,
  7045. bottom: 86/1103
  7046. }
  7047. },
  7048. paw: {
  7049. height: math.unit(2 / 3.6, "meters"),
  7050. name: "Paw",
  7051. image: {
  7052. source: "./media/characters/everett/paw.svg"
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(15, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Lorg",
  7064. height: math.unit(70, "feet"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Lorger",
  7069. height: math.unit(250, "feet")
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(500, "meters")
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(2, "meters"),
  7082. weight: math.unit(86, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/rose/front.svg",
  7086. extra: 1785/1636,
  7087. bottom: 30/1815
  7088. },
  7089. form: "liom",
  7090. default: true
  7091. },
  7092. frontSporty: {
  7093. height: math.unit(2, "meters"),
  7094. weight: math.unit(86, "kg"),
  7095. name: "Front (Sporty)",
  7096. image: {
  7097. source: "./media/characters/rose/front-sporty.svg",
  7098. extra: 350/335,
  7099. bottom: 10/360
  7100. },
  7101. form: "liom"
  7102. },
  7103. frontAlt: {
  7104. height: math.unit(1.6, "meters"),
  7105. weight: math.unit(86, "kg"),
  7106. name: "Front (Alt)",
  7107. image: {
  7108. source: "./media/characters/rose/front-alt.svg",
  7109. extra: 299/283,
  7110. bottom: 3/302
  7111. },
  7112. form: "liom"
  7113. },
  7114. plush: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(86/3, "kg"),
  7117. name: "Plush",
  7118. image: {
  7119. source: "./media/characters/rose/plush.svg",
  7120. extra: 361/337,
  7121. bottom: 11/372
  7122. },
  7123. form: "plush",
  7124. default: true
  7125. },
  7126. fae: {
  7127. height: math.unit(4, "cm"),
  7128. weight: math.unit(10, "grams"),
  7129. name: "Fae",
  7130. image: {
  7131. source: "./media/characters/rose/fae.svg",
  7132. extra: 737/577,
  7133. bottom: 356/1093
  7134. },
  7135. form: "fae",
  7136. default: true
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "True Micro",
  7142. height: math.unit(9, "cm"),
  7143. form: "liom"
  7144. },
  7145. {
  7146. name: "Micro",
  7147. height: math.unit(16, "cm"),
  7148. form: "liom"
  7149. },
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(1.85, "meters"),
  7153. default: true,
  7154. form: "liom"
  7155. },
  7156. {
  7157. name: "Mini-Macro",
  7158. height: math.unit(5, "meters"),
  7159. form: "liom"
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(15, "meters"),
  7164. form: "liom"
  7165. },
  7166. {
  7167. name: "True Macro",
  7168. height: math.unit(40, "meters"),
  7169. form: "liom"
  7170. },
  7171. {
  7172. name: "City Scale",
  7173. height: math.unit(1, "km"),
  7174. form: "liom"
  7175. },
  7176. {
  7177. name: "Plushie",
  7178. height: math.unit(9, "cm"),
  7179. form: "plush",
  7180. default: true
  7181. },
  7182. {
  7183. name: "Fae",
  7184. height: math.unit(4, "cm"),
  7185. form: "fae",
  7186. default: true
  7187. },
  7188. ],
  7189. {
  7190. "liom": {
  7191. name: "Liom",
  7192. default: true
  7193. },
  7194. "plush": {
  7195. name: "Plush"
  7196. },
  7197. "fae": {
  7198. name: "Fae Fox"
  7199. }
  7200. }
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(2, "meters"),
  7207. weight: math.unit(350, "lbs"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/regal/front.svg"
  7211. }
  7212. },
  7213. back: {
  7214. height: math.unit(2, "meters"),
  7215. weight: math.unit(350, "lbs"),
  7216. name: "Back",
  7217. image: {
  7218. source: "./media/characters/regal/back.svg"
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(350, "feet"),
  7226. default: true
  7227. }
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(4 + 11 / 12, "feet"),
  7235. weight: math.unit(100, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/opal/front.svg"
  7239. }
  7240. },
  7241. frontAlt: {
  7242. height: math.unit(4 + 11 / 12, "feet"),
  7243. weight: math.unit(100, "lbs"),
  7244. name: "Front (Alt)",
  7245. image: {
  7246. source: "./media/characters/opal/front-alt.svg"
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Small",
  7253. height: math.unit(4 + 11 / 12, "feet")
  7254. },
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(20, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(120, "feet")
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(80, "miles")
  7267. },
  7268. {
  7269. name: "True Size",
  7270. height: math.unit(100000, "lightyears")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(200, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/vector-wuff/front.svg"
  7283. }
  7284. }
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(2.8, "meters")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(450, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(15, "kilometers")
  7299. }
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(256, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/dannik/front.svg"
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(69.57, "meters"),
  7318. default: true
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(120, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/azura-saharah/front.svg"
  7331. }
  7332. },
  7333. back: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(120, "lbs"),
  7336. name: "Back",
  7337. image: {
  7338. source: "./media/characters/azura-saharah/back.svg"
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(100, "feet"),
  7346. default: true
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7352. {
  7353. side: {
  7354. height: math.unit(5 + 4 / 12, "feet"),
  7355. weight: math.unit(163, "lbs"),
  7356. name: "Side",
  7357. image: {
  7358. source: "./media/characters/kennedy/side.svg"
  7359. }
  7360. }
  7361. },
  7362. [
  7363. {
  7364. name: "Standard Doggo",
  7365. height: math.unit(5 + 4 / 12, "feet")
  7366. },
  7367. {
  7368. name: "Big Doggo",
  7369. height: math.unit(25 + 3 / 12, "feet"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(5 + 5/12, "feet"),
  7379. weight: math.unit(100, "lbs"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/odios-de-lunar/front.svg",
  7383. extra: 1468/1323,
  7384. bottom: 22/1490
  7385. }
  7386. }
  7387. },
  7388. [
  7389. {
  7390. name: "Micro",
  7391. height: math.unit(3, "inches")
  7392. },
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(5.5, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(100, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7406. {
  7407. back: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(220, "lbs"),
  7410. name: "Back",
  7411. image: {
  7412. source: "./media/characters/mandake/back.svg"
  7413. }
  7414. }
  7415. },
  7416. [
  7417. {
  7418. name: "Normal",
  7419. height: math.unit(7, "feet"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Macro",
  7424. height: math.unit(78, "feet")
  7425. },
  7426. {
  7427. name: "Macro+",
  7428. height: math.unit(300, "meters")
  7429. },
  7430. {
  7431. name: "Macro++",
  7432. height: math.unit(2400, "feet")
  7433. },
  7434. {
  7435. name: "Megamacro",
  7436. height: math.unit(5167, "meters")
  7437. },
  7438. {
  7439. name: "Gigamacro",
  7440. height: math.unit(41769, "miles")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(120, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/yozey/front.svg"
  7453. }
  7454. },
  7455. frontAlt: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(120, "lbs"),
  7458. name: "Front (Alt)",
  7459. image: {
  7460. source: "./media/characters/yozey/front-alt.svg"
  7461. }
  7462. },
  7463. side: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(120, "lbs"),
  7466. name: "Side",
  7467. image: {
  7468. source: "./media/characters/yozey/side.svg"
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(3, "inches"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(6, "feet")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(6, "feet"),
  7489. weight: math.unit(103, "lbs"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/valeska-voss/front.svg"
  7493. }
  7494. }
  7495. },
  7496. [
  7497. {
  7498. name: "Mini-Sized Sub",
  7499. height: math.unit(3.1, "inches")
  7500. },
  7501. {
  7502. name: "Mid-Sized Sub",
  7503. height: math.unit(6.2, "inches")
  7504. },
  7505. {
  7506. name: "Full-Sized Sub",
  7507. height: math.unit(9.3, "inches")
  7508. },
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(5 + 2 / 12, "foot"),
  7512. default: true
  7513. },
  7514. ]
  7515. ))
  7516. characterMakers.push(() => makeCharacter(
  7517. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7518. {
  7519. front: {
  7520. height: math.unit(6, "feet"),
  7521. weight: math.unit(160, "lbs"),
  7522. name: "Front",
  7523. image: {
  7524. source: "./media/characters/gene-zeta/front.svg",
  7525. extra: 3006 / 2826,
  7526. bottom: 182 / 3188
  7527. }
  7528. }
  7529. },
  7530. [
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(6, "inches")
  7534. },
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(5 + 11 / 12, "foot"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Macro",
  7542. height: math.unit(140, "feet")
  7543. },
  7544. {
  7545. name: "Supercharged",
  7546. height: math.unit(2500, "feet")
  7547. },
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(350, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/razinox/front.svg",
  7559. extra: 1686 / 1548,
  7560. bottom: 28.2 / 1868
  7561. }
  7562. },
  7563. back: {
  7564. height: math.unit(6, "feet"),
  7565. weight: math.unit(350, "lbs"),
  7566. name: "Back",
  7567. image: {
  7568. source: "./media/characters/razinox/back.svg",
  7569. extra: 1660 / 1590,
  7570. bottom: 15 / 1665
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(10 + 8 / 12, "foot")
  7578. },
  7579. {
  7580. name: "Minimacro",
  7581. height: math.unit(15, "foot")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(60, "foot"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Megamacro",
  7590. height: math.unit(5, "miles")
  7591. },
  7592. {
  7593. name: "Gigamacro",
  7594. height: math.unit(6000, "miles")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(150, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/cobalt/front.svg"
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(8 + 1 / 12, "foot")
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(111, "foot"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Supracosmic",
  7622. height: math.unit(1e42, "feet")
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(5, "inches"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/amanda/front.svg",
  7634. extra: 926/791,
  7635. bottom: 38/964
  7636. }
  7637. },
  7638. back: {
  7639. height: math.unit(5, "inches"),
  7640. name: "Back",
  7641. image: {
  7642. source: "./media/characters/amanda/back.svg",
  7643. extra: 909/805,
  7644. bottom: 43/952
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Micro",
  7651. height: math.unit(5, "inches"),
  7652. default: true
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(2.75, "meters"),
  7661. weight: math.unit(1200, "lb"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/teal/front.svg",
  7665. extra: 2463 / 2320,
  7666. bottom: 166 / 2629
  7667. }
  7668. },
  7669. back: {
  7670. height: math.unit(2.75, "meters"),
  7671. weight: math.unit(1200, "lb"),
  7672. name: "Back",
  7673. image: {
  7674. source: "./media/characters/teal/back.svg",
  7675. extra: 2580 / 2489,
  7676. bottom: 151 / 2731
  7677. }
  7678. },
  7679. sitting: {
  7680. height: math.unit(1.9, "meters"),
  7681. weight: math.unit(1200, "lb"),
  7682. name: "Sitting",
  7683. image: {
  7684. source: "./media/characters/teal/sitting.svg",
  7685. extra: 623 / 590,
  7686. bottom: 121 / 744
  7687. }
  7688. },
  7689. standing: {
  7690. height: math.unit(2.75, "meters"),
  7691. weight: math.unit(1200, "lb"),
  7692. name: "Standing",
  7693. image: {
  7694. source: "./media/characters/teal/standing.svg",
  7695. extra: 923 / 893,
  7696. bottom: 60 / 983
  7697. }
  7698. },
  7699. stretching: {
  7700. height: math.unit(3.65, "meters"),
  7701. weight: math.unit(1200, "lb"),
  7702. name: "Stretching",
  7703. image: {
  7704. source: "./media/characters/teal/stretching.svg",
  7705. extra: 1276 / 1244,
  7706. bottom: 0 / 1276
  7707. }
  7708. },
  7709. legged: {
  7710. height: math.unit(1.3, "meters"),
  7711. weight: math.unit(100, "lb"),
  7712. name: "Legged",
  7713. image: {
  7714. source: "./media/characters/teal/legged.svg",
  7715. extra: 462 / 437,
  7716. bottom: 24 / 486
  7717. }
  7718. },
  7719. naga: {
  7720. height: math.unit(5.4, "meters"),
  7721. weight: math.unit(4000, "lb"),
  7722. name: "Naga",
  7723. image: {
  7724. source: "./media/characters/teal/naga.svg",
  7725. extra: 1902 / 1858,
  7726. bottom: 0 / 1902
  7727. }
  7728. },
  7729. hand: {
  7730. height: math.unit(0.52, "meters"),
  7731. name: "Hand",
  7732. image: {
  7733. source: "./media/characters/teal/hand.svg"
  7734. }
  7735. },
  7736. maw: {
  7737. height: math.unit(0.43, "meters"),
  7738. name: "Maw",
  7739. image: {
  7740. source: "./media/characters/teal/maw.svg"
  7741. }
  7742. },
  7743. slit: {
  7744. height: math.unit(0.25, "meters"),
  7745. name: "Slit",
  7746. image: {
  7747. source: "./media/characters/teal/slit.svg"
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(2.75, "meters"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(300, "feet")
  7760. },
  7761. {
  7762. name: "Macro+",
  7763. height: math.unit(2000, "feet")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7769. {
  7770. frontCat: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(180, "lbs"),
  7773. name: "Front (Cat)",
  7774. image: {
  7775. source: "./media/characters/ravin-amulet/front-cat.svg"
  7776. }
  7777. },
  7778. frontCatAlt: {
  7779. height: math.unit(6, "feet"),
  7780. weight: math.unit(180, "lbs"),
  7781. name: "Front (Alt, Cat)",
  7782. image: {
  7783. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7784. }
  7785. },
  7786. frontWerewolf: {
  7787. height: math.unit(6 * 1.2, "feet"),
  7788. weight: math.unit(225, "lbs"),
  7789. name: "Front (Werewolf)",
  7790. image: {
  7791. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7792. }
  7793. },
  7794. backWerewolf: {
  7795. height: math.unit(6 * 1.2, "feet"),
  7796. weight: math.unit(225, "lbs"),
  7797. name: "Back (Werewolf)",
  7798. image: {
  7799. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Nano",
  7806. height: math.unit(1, "micrometer")
  7807. },
  7808. {
  7809. name: "Micro",
  7810. height: math.unit(1, "inch")
  7811. },
  7812. {
  7813. name: "Normal",
  7814. height: math.unit(6, "feet"),
  7815. default: true
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(60, "feet")
  7820. }
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(165, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/fluoresce/front.svg"
  7832. }
  7833. }
  7834. },
  7835. [
  7836. {
  7837. name: "Micro",
  7838. height: math.unit(6, "cm")
  7839. },
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(5 + 7 / 12, "feet"),
  7843. default: true
  7844. },
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(56, "feet")
  7848. },
  7849. {
  7850. name: "Megamacro",
  7851. height: math.unit(1.9, "miles")
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(9 + 6 / 12, "feet"),
  7860. weight: math.unit(523, "lbs"),
  7861. name: "Side",
  7862. image: {
  7863. source: "./media/characters/aurora/side.svg"
  7864. }
  7865. }
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(9 + 6 / 12, "feet")
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(96, "feet"),
  7875. default: true
  7876. },
  7877. {
  7878. name: "Macro+",
  7879. height: math.unit(243, "feet")
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7885. {
  7886. front: {
  7887. height: math.unit(194, "cm"),
  7888. weight: math.unit(90, "kg"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/ranek/front.svg",
  7892. extra: 1862/1791,
  7893. bottom: 80/1942
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(194, "cm"),
  7898. weight: math.unit(90, "kg"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/ranek/back.svg",
  7902. extra: 1853/1787,
  7903. bottom: 74/1927
  7904. }
  7905. },
  7906. feral: {
  7907. height: math.unit(30, "cm"),
  7908. weight: math.unit(1.6, "lbs"),
  7909. name: "Feral",
  7910. image: {
  7911. source: "./media/characters/ranek/feral.svg",
  7912. extra: 990/631,
  7913. bottom: 29/1019
  7914. }
  7915. },
  7916. },
  7917. [
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(194, "cm"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(100, "meters")
  7926. },
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(5 + 6 / 12, "feet"),
  7934. weight: math.unit(153, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/andrew-cooper/front.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Nano",
  7944. height: math.unit(1, "mm")
  7945. },
  7946. {
  7947. name: "Micro",
  7948. height: math.unit(2, "inches")
  7949. },
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(5 + 6 / 12, "feet"),
  7953. default: true
  7954. }
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(180, "lbs"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/akane-sato/front.svg",
  7966. extra: 1219 / 1140
  7967. }
  7968. },
  7969. back: {
  7970. height: math.unit(6, "feet"),
  7971. weight: math.unit(180, "lbs"),
  7972. name: "Back",
  7973. image: {
  7974. source: "./media/characters/akane-sato/back.svg",
  7975. extra: 1219 / 1170
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(2.5, "meters")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(250, "meters"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(25, "km")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(65, "kg"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/rook/front.svg",
  8004. extra: 960 / 950
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(8.8, "feet")
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(88, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Megamacro",
  8020. height: math.unit(8, "miles")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(12 + 2 / 12, "feet"),
  8029. weight: math.unit(808, "lbs"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/prodigy/front.svg"
  8033. }
  8034. }
  8035. },
  8036. [
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(12 + 2 / 12, "feet"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(143, "feet")
  8045. },
  8046. {
  8047. name: "Macro+",
  8048. height: math.unit(400, "feet")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(225, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/daniel/front.svg"
  8061. }
  8062. },
  8063. leaning: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(225, "lbs"),
  8066. name: "Leaning",
  8067. image: {
  8068. source: "./media/characters/daniel/leaning.svg"
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Macro",
  8075. height: math.unit(1000, "feet"),
  8076. default: true
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(6, "feet"),
  8085. weight: math.unit(88, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/chiros/front.svg",
  8089. extra: 306 / 226
  8090. }
  8091. },
  8092. side: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(88, "lbs"),
  8095. name: "Side",
  8096. image: {
  8097. source: "./media/characters/chiros/side.svg",
  8098. extra: 306 / 226
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(6, "cm"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(100, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/selka/front.svg",
  8119. extra: 947 / 887
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(5, "cm"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(8 + 3 / 12, "feet"),
  8136. weight: math.unit(424, "lbs"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/verin/front.svg",
  8140. extra: 1845 / 1550
  8141. }
  8142. },
  8143. frontArmored: {
  8144. height: math.unit(8 + 3 / 12, "feet"),
  8145. weight: math.unit(424, "lbs"),
  8146. name: "Front (Armored)",
  8147. image: {
  8148. source: "./media/characters/verin/front-armor.svg",
  8149. extra: 1845 / 1550,
  8150. bottom: 0.01
  8151. }
  8152. },
  8153. back: {
  8154. height: math.unit(8 + 3 / 12, "feet"),
  8155. weight: math.unit(424, "lbs"),
  8156. name: "Back",
  8157. image: {
  8158. source: "./media/characters/verin/back.svg",
  8159. bottom: 0.1,
  8160. extra: 1
  8161. }
  8162. },
  8163. foot: {
  8164. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8165. name: "Foot",
  8166. image: {
  8167. source: "./media/characters/verin/foot.svg"
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(8 + 3 / 12, "feet")
  8175. },
  8176. {
  8177. name: "Minimacro",
  8178. height: math.unit(21, "feet"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(626, "feet")
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(2.718, "meters"),
  8192. weight: math.unit(150, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/sovrim-terraquian/front.svg",
  8196. extra: 1752/1689,
  8197. bottom: 36/1788
  8198. }
  8199. },
  8200. back: {
  8201. height: math.unit(2.718, "meters"),
  8202. weight: math.unit(150, "lbs"),
  8203. name: "Back",
  8204. image: {
  8205. source: "./media/characters/sovrim-terraquian/back.svg",
  8206. extra: 1698/1657,
  8207. bottom: 58/1756
  8208. }
  8209. },
  8210. tongue: {
  8211. height: math.unit(2.865, "feet"),
  8212. name: "Tongue",
  8213. image: {
  8214. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8215. }
  8216. },
  8217. hand: {
  8218. height: math.unit(1.61, "feet"),
  8219. name: "Hand",
  8220. image: {
  8221. source: "./media/characters/sovrim-terraquian/hand.svg"
  8222. }
  8223. },
  8224. foot: {
  8225. height: math.unit(1.05, "feet"),
  8226. name: "Foot",
  8227. image: {
  8228. source: "./media/characters/sovrim-terraquian/foot.svg"
  8229. }
  8230. },
  8231. footAlt: {
  8232. height: math.unit(0.88, "feet"),
  8233. name: "Foot (Alt)",
  8234. image: {
  8235. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "inches")
  8243. },
  8244. {
  8245. name: "Small",
  8246. height: math.unit(1, "meter")
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(Math.E, "meters"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(20, "meters")
  8256. },
  8257. {
  8258. name: "Macro+",
  8259. height: math.unit(400, "meters")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(7, "feet"),
  8268. weight: math.unit(489, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/reece-silvermane/front.svg",
  8272. bottom: 0.02,
  8273. extra: 1
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Macro",
  8280. height: math.unit(1.5, "miles"),
  8281. default: true
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(6, "feet"),
  8290. weight: math.unit(78, "kg"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/kane/front.svg",
  8294. extra: 978 / 899
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(2.1, "m"),
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(1, "km"),
  8306. default: true
  8307. },
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(200, "kg"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/tegon/front.svg",
  8319. bottom: 0.01,
  8320. extra: 1
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Micro",
  8327. height: math.unit(1, "inch")
  8328. },
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(6 + 3 / 12, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(300, "feet")
  8337. },
  8338. {
  8339. name: "Megamacro",
  8340. height: math.unit(69, "miles")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8346. {
  8347. side: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(2304, "lbs"),
  8350. name: "Side",
  8351. image: {
  8352. source: "./media/characters/arcturax/side.svg",
  8353. extra: 790 / 376,
  8354. bottom: 0.01
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(2, "inch")
  8362. },
  8363. {
  8364. name: "Normal",
  8365. height: math.unit(6, "feet")
  8366. },
  8367. {
  8368. name: "Macro",
  8369. height: math.unit(39, "feet"),
  8370. default: true
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(7, "miles")
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(50, "lbs"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/sentri/front.svg",
  8387. extra: 1750 / 1570,
  8388. bottom: 0.025
  8389. }
  8390. },
  8391. frontAlt: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(50, "lbs"),
  8394. name: "Front (Alt)",
  8395. image: {
  8396. source: "./media/characters/sentri/front-alt.svg",
  8397. extra: 1750 / 1570,
  8398. bottom: 0.025
  8399. }
  8400. },
  8401. },
  8402. [
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(15, "feet"),
  8406. default: true
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(2500, "feet")
  8411. }
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(5 + 8 / 12, "feet"),
  8419. weight: math.unit(130, "lbs"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/corvin/front.svg",
  8423. extra: 1803 / 1629
  8424. }
  8425. },
  8426. frontShirt: {
  8427. height: math.unit(5 + 8 / 12, "feet"),
  8428. weight: math.unit(130, "lbs"),
  8429. name: "Front (Shirt)",
  8430. image: {
  8431. source: "./media/characters/corvin/front-shirt.svg",
  8432. extra: 1803 / 1629
  8433. }
  8434. },
  8435. frontPoncho: {
  8436. height: math.unit(5 + 8 / 12, "feet"),
  8437. weight: math.unit(130, "lbs"),
  8438. name: "Front (Poncho)",
  8439. image: {
  8440. source: "./media/characters/corvin/front-poncho.svg",
  8441. extra: 1803 / 1629
  8442. }
  8443. },
  8444. side: {
  8445. height: math.unit(5 + 8 / 12, "feet"),
  8446. weight: math.unit(130, "lbs"),
  8447. name: "Side",
  8448. image: {
  8449. source: "./media/characters/corvin/side.svg",
  8450. extra: 1012 / 945
  8451. }
  8452. },
  8453. back: {
  8454. height: math.unit(5 + 8 / 12, "feet"),
  8455. weight: math.unit(130, "lbs"),
  8456. name: "Back",
  8457. image: {
  8458. source: "./media/characters/corvin/back.svg",
  8459. extra: 1803 / 1629
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(3, "inches")
  8467. },
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 8 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(300, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Megamacro",
  8479. height: math.unit(500, "miles")
  8480. }
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(135, "lbs"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/q/front.svg",
  8492. extra: 854 / 752,
  8493. bottom: 0.005
  8494. }
  8495. },
  8496. back: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(130, "lbs"),
  8499. name: "Back",
  8500. image: {
  8501. source: "./media/characters/q/back.svg",
  8502. extra: 854 / 752
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(90, "feet"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Extra Macro",
  8514. height: math.unit(300, "feet"),
  8515. },
  8516. {
  8517. name: "BIG WALF",
  8518. height: math.unit(750, "feet"),
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(150, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/carley/front.svg",
  8531. extra: 3927 / 3540,
  8532. bottom: 29.2 / 735
  8533. }
  8534. }
  8535. },
  8536. [
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(6 + 3 / 12, "feet")
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(185, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(8, "miles"),
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(3, "feet"),
  8557. weight: math.unit(28, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/citrine/front.svg"
  8561. }
  8562. }
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(3, "feet"),
  8568. default: true
  8569. }
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8574. {
  8575. front: {
  8576. height: math.unit(14, "feet"),
  8577. weight: math.unit(1450, "kg"),
  8578. capacity: math.unit(15, "people"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/aura-starwind/front.svg",
  8582. extra: 1440/1327,
  8583. bottom: 11/1451
  8584. }
  8585. },
  8586. side: {
  8587. height: math.unit(14, "feet"),
  8588. weight: math.unit(1450, "kg"),
  8589. capacity: math.unit(15, "people"),
  8590. name: "Side",
  8591. image: {
  8592. source: "./media/characters/aura-starwind/side.svg",
  8593. extra: 1654 / 1497
  8594. }
  8595. },
  8596. taur: {
  8597. height: math.unit(18, "feet"),
  8598. weight: math.unit(5500, "kg"),
  8599. capacity: math.unit(50, "people"),
  8600. name: "Taur",
  8601. image: {
  8602. source: "./media/characters/aura-starwind/taur.svg",
  8603. extra: 1760 / 1650
  8604. }
  8605. },
  8606. feral: {
  8607. height: math.unit(46, "feet"),
  8608. weight: math.unit(25000, "kg"),
  8609. capacity: math.unit(120, "people"),
  8610. name: "Feral",
  8611. image: {
  8612. source: "./media/characters/aura-starwind/feral.svg"
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(14, "feet"),
  8620. default: true
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(50, "meters")
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(5000, "meters")
  8629. },
  8630. {
  8631. name: "Gigamacro",
  8632. height: math.unit(100000, "kilometers")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(2 + 7 / 12, "feet"),
  8641. weight: math.unit(32, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/rivet/front.svg",
  8645. extra: 1716 / 1658,
  8646. bottom: 0.03
  8647. }
  8648. },
  8649. foot: {
  8650. height: math.unit(0.551, "feet"),
  8651. name: "Rivet's Foot",
  8652. image: {
  8653. source: "./media/characters/rivet/foot.svg"
  8654. },
  8655. rename: true
  8656. }
  8657. },
  8658. [
  8659. {
  8660. name: "Micro",
  8661. height: math.unit(1.5, "inches"),
  8662. },
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(2 + 7 / 12, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(85, "feet")
  8671. },
  8672. {
  8673. name: "Megamacro",
  8674. height: math.unit(2.2, "km")
  8675. }
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(5 + 9 / 12, "feet"),
  8683. weight: math.unit(150, "lbs"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/coffee/front.svg",
  8687. extra: 3666 / 3032,
  8688. bottom: 0.04
  8689. }
  8690. },
  8691. foot: {
  8692. height: math.unit(1.29, "feet"),
  8693. name: "Foot",
  8694. image: {
  8695. source: "./media/characters/coffee/foot.svg"
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(2, "inches"),
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(800, "feet")
  8712. },
  8713. {
  8714. name: "Megamacro",
  8715. height: math.unit(25, "miles")
  8716. }
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(200, "lbs"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/chari-gal/front.svg",
  8728. extra: 1568 / 1385,
  8729. bottom: 0.047
  8730. }
  8731. },
  8732. gigantamax: {
  8733. height: math.unit(6 * 16, "feet"),
  8734. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8735. name: "Gigantamax",
  8736. image: {
  8737. source: "./media/characters/chari-gal/gigantamax.svg",
  8738. extra: 1124 / 888,
  8739. bottom: 0.03
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(5 + 7 / 12, "feet")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(200, "feet"),
  8751. default: true
  8752. }
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lbs"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/nova/front.svg",
  8764. extra: 5000 / 4722,
  8765. bottom: 0.02
  8766. }
  8767. }
  8768. },
  8769. [
  8770. {
  8771. name: "Micro-",
  8772. height: math.unit(0.8, "inches")
  8773. },
  8774. {
  8775. name: "Micro",
  8776. height: math.unit(2, "inches"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(3 + 1 / 12, "feet"),
  8786. weight: math.unit(21.7, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/argent/front.svg",
  8790. extra: 1471 / 1331,
  8791. bottom: 100.8 / 1575.5
  8792. }
  8793. }
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(2, "inches")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(3 + 1 / 12, "feet"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(120, "feet")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8813. {
  8814. lamp: {
  8815. height: math.unit(7 * 1559 / 989, "feet"),
  8816. name: "Magic Lamp",
  8817. image: {
  8818. source: "./media/characters/mira-al-cul/lamp.svg",
  8819. extra: 1617 / 1559
  8820. }
  8821. },
  8822. front: {
  8823. height: math.unit(7, "feet"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/mira-al-cul/front.svg",
  8827. extra: 1044 / 990
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Heavily Restricted",
  8834. height: math.unit(7 * 1559 / 989, "feet")
  8835. },
  8836. {
  8837. name: "Freshly Freed",
  8838. height: math.unit(50 * 1559 / 989, "feet")
  8839. },
  8840. {
  8841. name: "World Encompassing",
  8842. height: math.unit(10000 * 1559 / 989, "miles")
  8843. },
  8844. {
  8845. name: "Galactic",
  8846. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8847. },
  8848. {
  8849. name: "Palmed Universe",
  8850. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Multiversal Matriarch",
  8855. height: math.unit(8.87e10, "yottameters")
  8856. },
  8857. {
  8858. name: "Void Mother",
  8859. height: math.unit(3.14e110, "yottaparsecs")
  8860. },
  8861. {
  8862. name: "Toying with Transcendence",
  8863. height: math.unit(1e307, "meters")
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8869. {
  8870. front: {
  8871. height: math.unit(17 + 1 / 12, "feet"),
  8872. weight: math.unit(476.2 * 5, "lbs"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/kuro-shi-uchū/front.svg",
  8876. extra: 2329 / 1835,
  8877. bottom: 0.02
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(2, "inches")
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(12, "meters")
  8889. },
  8890. {
  8891. name: "Planetary",
  8892. height: math.unit(0.00929, "AU"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Universal",
  8897. height: math.unit(20, "gigaparsecs")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(5 + 2 / 12, "feet"),
  8906. weight: math.unit(120, "lbs"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/katherine/front.svg",
  8910. extra: 2075 / 1969
  8911. }
  8912. },
  8913. dress: {
  8914. height: math.unit(5 + 2 / 12, "feet"),
  8915. weight: math.unit(120, "lbs"),
  8916. name: "Dress",
  8917. image: {
  8918. source: "./media/characters/katherine/dress.svg",
  8919. extra: 2258 / 2064
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Micro",
  8926. height: math.unit(1, "inches"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(5 + 2 / 12, "feet")
  8932. },
  8933. {
  8934. name: "Macro",
  8935. height: math.unit(100, "meters")
  8936. },
  8937. {
  8938. name: "Megamacro",
  8939. height: math.unit(80, "miles")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(7 + 8 / 12, "feet"),
  8948. weight: math.unit(250, "lbs"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/yevis/front.svg",
  8952. extra: 1938 / 1755
  8953. }
  8954. }
  8955. },
  8956. [
  8957. {
  8958. name: "Mortal",
  8959. height: math.unit(7 + 8 / 12, "feet")
  8960. },
  8961. {
  8962. name: "Battle",
  8963. height: math.unit(25 + 11 / 12, "feet")
  8964. },
  8965. {
  8966. name: "Wrath",
  8967. height: math.unit(1654 + 11 / 12, "feet")
  8968. },
  8969. {
  8970. name: "Planet Destroyer",
  8971. height: math.unit(12000, "miles")
  8972. },
  8973. {
  8974. name: "Galaxy Conqueror",
  8975. height: math.unit(1.45, "zettameters"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Universal War",
  8980. height: math.unit(184, "gigaparsecs")
  8981. },
  8982. {
  8983. name: "Eternity War",
  8984. height: math.unit(1.98e55, "yottaparsecs")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 8 / 12, "feet"),
  8993. weight: math.unit(63, "kg"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/xavier/front.svg",
  8997. extra: 944 / 883
  8998. }
  8999. },
  9000. frontStretch: {
  9001. height: math.unit(5 + 8 / 12, "feet"),
  9002. weight: math.unit(63, "kg"),
  9003. name: "Stretching",
  9004. image: {
  9005. source: "./media/characters/xavier/front-stretch.svg",
  9006. extra: 962 / 820
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(5 + 8 / 12, "feet")
  9014. },
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(100, "meters"),
  9018. default: true
  9019. },
  9020. {
  9021. name: "McLargeHuge",
  9022. height: math.unit(10, "miles")
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(5 + 5 / 12, "feet"),
  9031. weight: math.unit(150, "lb"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/joshii/front.svg",
  9035. extra: 765 / 653,
  9036. bottom: 51 / 816
  9037. }
  9038. },
  9039. foot: {
  9040. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9041. name: "Foot",
  9042. image: {
  9043. source: "./media/characters/joshii/foot.svg"
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Micro",
  9050. height: math.unit(2, "inches"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(5 + 5 / 12, "feet")
  9056. },
  9057. {
  9058. name: "Macro",
  9059. height: math.unit(785, "feet")
  9060. },
  9061. {
  9062. name: "Megamacro",
  9063. height: math.unit(24.5, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(150, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/goddess-elizabeth/front.svg",
  9076. extra: 1800 / 1525,
  9077. bottom: 0.005
  9078. }
  9079. },
  9080. foot: {
  9081. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9082. name: "Foot",
  9083. image: {
  9084. source: "./media/characters/goddess-elizabeth/foot.svg"
  9085. }
  9086. },
  9087. mouth: {
  9088. height: math.unit(6, "feet"),
  9089. name: "Mouth",
  9090. image: {
  9091. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Micro",
  9098. height: math.unit(12, "feet")
  9099. },
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(80, "miles"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(15000, "parsecs")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. weight: math.unit(144, "lb"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/kara/front.svg"
  9120. }
  9121. },
  9122. feet: {
  9123. height: math.unit(6 / 6.765, "feet"),
  9124. name: "Kara's Feet",
  9125. rename: true,
  9126. image: {
  9127. source: "./media/characters/kara/feet.svg"
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(5 + 9 / 12, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(174, "feet"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(18, "feet"),
  9148. weight: math.unit(4050, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/tyrone/front.svg",
  9152. extra: 2405 / 2270,
  9153. bottom: 182 / 2587
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(18, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(300, "feet")
  9166. },
  9167. {
  9168. name: "Megamacro",
  9169. height: math.unit(15, "km")
  9170. },
  9171. {
  9172. name: "Gigamacro",
  9173. height: math.unit(500, "km")
  9174. },
  9175. {
  9176. name: "Teramacro",
  9177. height: math.unit(0.5, "gigameters")
  9178. },
  9179. {
  9180. name: "Omnimacro",
  9181. height: math.unit(1e252, "yottauniverse")
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(7 + 8 / 12, "feet"),
  9190. weight: math.unit(120, "lb"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/danny/front.svg",
  9194. extra: 1490 / 1350
  9195. }
  9196. },
  9197. back: {
  9198. height: math.unit(7 + 8 / 12, "feet"),
  9199. weight: math.unit(120, "lb"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/danny/back.svg",
  9203. extra: 1490 / 1350
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(7 + 8 / 12, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(3.5, "inches"),
  9220. weight: math.unit(19, "grams"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/mallow/front.svg",
  9224. extra: 471 / 431
  9225. }
  9226. },
  9227. back: {
  9228. height: math.unit(3.5, "inches"),
  9229. weight: math.unit(19, "grams"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/mallow/back.svg",
  9233. extra: 471 / 431
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(3.5, "inches"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9247. {
  9248. front: {
  9249. height: math.unit(9, "feet"),
  9250. weight: math.unit(230, "kg"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/starry-aqua/front.svg"
  9254. }
  9255. },
  9256. back: {
  9257. height: math.unit(9, "feet"),
  9258. weight: math.unit(230, "kg"),
  9259. name: "Back",
  9260. image: {
  9261. source: "./media/characters/starry-aqua/back.svg"
  9262. }
  9263. },
  9264. hand: {
  9265. height: math.unit(9 * 0.1168, "feet"),
  9266. name: "Hand",
  9267. image: {
  9268. source: "./media/characters/starry-aqua/hand.svg"
  9269. }
  9270. },
  9271. foot: {
  9272. height: math.unit(9 * 0.18, "feet"),
  9273. name: "Foot",
  9274. image: {
  9275. source: "./media/characters/starry-aqua/foot.svg"
  9276. }
  9277. }
  9278. },
  9279. [
  9280. {
  9281. name: "Micro",
  9282. height: math.unit(3, "inches")
  9283. },
  9284. {
  9285. name: "Normal",
  9286. height: math.unit(9, "feet")
  9287. },
  9288. {
  9289. name: "Macro",
  9290. height: math.unit(300, "feet"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Megamacro",
  9295. height: math.unit(3200, "feet")
  9296. }
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9301. {
  9302. front: {
  9303. height: math.unit(15, "feet"),
  9304. weight: math.unit(5026, "lb"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/luka-towers/front.svg",
  9308. extra: 1269/1133,
  9309. bottom: 51/1320
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(15, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Minimacro",
  9321. height: math.unit(25, "feet")
  9322. },
  9323. {
  9324. name: "Macro",
  9325. height: math.unit(320, "feet")
  9326. },
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(35000, "feet")
  9330. },
  9331. {
  9332. name: "Gigamacro",
  9333. height: math.unit(4000, "miles")
  9334. },
  9335. {
  9336. name: "Teramacro",
  9337. height: math.unit(15000, "miles")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(6, "feet"),
  9346. weight: math.unit(150, "lb"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/natalie-nightring/front.svg",
  9350. extra: 1,
  9351. bottom: 0.06
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Uh Oh",
  9358. height: math.unit(0.1, "mm")
  9359. },
  9360. {
  9361. name: "Small",
  9362. height: math.unit(3, "inches")
  9363. },
  9364. {
  9365. name: "Human Scale",
  9366. height: math.unit(6, "feet")
  9367. },
  9368. {
  9369. name: "Librarian",
  9370. height: math.unit(50, "feet"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Immense",
  9375. height: math.unit(200, "miles")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(180, "lbs"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/danni-rosie/front.svg",
  9388. extra: 1260 / 1128,
  9389. bottom: 0.022
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(2, "inches"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. weight: math.unit(220, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/samantha-kruse/front.svg",
  9410. extra: (985 / 935),
  9411. bottom: 0.03
  9412. }
  9413. },
  9414. frontUndressed: {
  9415. height: math.unit(5 + 9 / 12, "feet"),
  9416. weight: math.unit(220, "lb"),
  9417. name: "Front (Undressed)",
  9418. image: {
  9419. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9420. extra: (973 / 923),
  9421. bottom: 0.025
  9422. }
  9423. },
  9424. fat: {
  9425. height: math.unit(5 + 9 / 12, "feet"),
  9426. weight: math.unit(900, "lb"),
  9427. name: "Front (Fat)",
  9428. image: {
  9429. source: "./media/characters/samantha-kruse/fat.svg",
  9430. extra: 2688 / 2561
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(5 + 9 / 12, "feet"),
  9438. default: true
  9439. }
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9444. {
  9445. back: {
  9446. height: math.unit(5 + 4 / 12, "feet"),
  9447. weight: math.unit(4963, "lb"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/amelia-rosie/back.svg",
  9451. extra: 1113 / 963,
  9452. bottom: 0.01
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Level 0",
  9459. height: math.unit(5 + 4 / 12, "feet")
  9460. },
  9461. {
  9462. name: "Level 1",
  9463. height: math.unit(164597, "feet"),
  9464. default: true
  9465. },
  9466. {
  9467. name: "Level 2",
  9468. height: math.unit(956243, "miles")
  9469. },
  9470. {
  9471. name: "Level 3",
  9472. height: math.unit(29421709423, "miles")
  9473. },
  9474. {
  9475. name: "Level 4",
  9476. height: math.unit(154, "lightyears")
  9477. },
  9478. {
  9479. name: "Level 5",
  9480. height: math.unit(4738272, "lightyears")
  9481. },
  9482. {
  9483. name: "Level 6",
  9484. height: math.unit(145787152896, "lightyears")
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9490. {
  9491. front: {
  9492. height: math.unit(5 + 11 / 12, "feet"),
  9493. weight: math.unit(65, "kg"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/rook-kitara/front.svg",
  9497. extra: 1347 / 1274,
  9498. bottom: 0.005
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Totally Unfair",
  9505. height: math.unit(1.8, "mm")
  9506. },
  9507. {
  9508. name: "Lap Rookie",
  9509. height: math.unit(1.4, "feet")
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(5 + 11 / 12, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "How Did This Happen",
  9518. height: math.unit(80, "miles")
  9519. }
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(7, "feet"),
  9527. weight: math.unit(300, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/pisces/front.svg",
  9531. extra: 2255 / 2115,
  9532. bottom: 0.03
  9533. }
  9534. },
  9535. back: {
  9536. height: math.unit(7, "feet"),
  9537. weight: math.unit(300, "lb"),
  9538. name: "Back",
  9539. image: {
  9540. source: "./media/characters/pisces/back.svg",
  9541. extra: 2146 / 2055,
  9542. bottom: 0.04
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(7, "feet"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Swimming Pool",
  9554. height: math.unit(12.2, "meters")
  9555. },
  9556. {
  9557. name: "Olympic Swimming Pool",
  9558. height: math.unit(56.3, "meters")
  9559. },
  9560. {
  9561. name: "Lake Superior",
  9562. height: math.unit(93900, "meters")
  9563. },
  9564. {
  9565. name: "Mediterranean Sea",
  9566. height: math.unit(644457, "meters")
  9567. },
  9568. {
  9569. name: "World's Oceans",
  9570. height: math.unit(4567491, "meters")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(2.3, "meters"),
  9579. weight: math.unit(120, "kg"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/zelas/front.svg"
  9583. }
  9584. },
  9585. side: {
  9586. height: math.unit(2.3, "meters"),
  9587. weight: math.unit(120, "kg"),
  9588. name: "Side",
  9589. image: {
  9590. source: "./media/characters/zelas/side.svg"
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(2.3, "meters"),
  9595. weight: math.unit(120, "kg"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/zelas/back.svg"
  9599. }
  9600. },
  9601. foot: {
  9602. height: math.unit(1.116, "feet"),
  9603. name: "Foot",
  9604. image: {
  9605. source: "./media/characters/zelas/foot.svg"
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(2.3, "meters")
  9613. },
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(30, "meters"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(1, "inch"),
  9626. weight: math.unit(0.21, "grams"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/talbot/front.svg",
  9630. extra: 594 / 544
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(1, "inch"),
  9638. default: true
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9644. {
  9645. front: {
  9646. height: math.unit(3 + 3 / 12, "feet"),
  9647. weight: math.unit(51.8, "lb"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/fliss/front.svg",
  9651. extra: 840 / 640
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Teeny Tiny",
  9658. height: math.unit(1, "mm")
  9659. },
  9660. {
  9661. name: "Small",
  9662. height: math.unit(1, "inch"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Standard Sylveon",
  9667. height: math.unit(3 + 3 / 12, "feet")
  9668. },
  9669. {
  9670. name: "Large Nuisance",
  9671. height: math.unit(33, "feet")
  9672. },
  9673. {
  9674. name: "City Filler",
  9675. height: math.unit(3000, "feet")
  9676. },
  9677. {
  9678. name: "New Horizon",
  9679. height: math.unit(6000, "miles")
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(5, "cm"),
  9688. weight: math.unit(1.94, "g"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/fleta/front.svg",
  9692. extra: 835 / 803
  9693. }
  9694. },
  9695. back: {
  9696. height: math.unit(5, "cm"),
  9697. weight: math.unit(1.94, "g"),
  9698. name: "Back",
  9699. image: {
  9700. source: "./media/characters/fleta/back.svg",
  9701. extra: 835 / 803
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(5, "cm"),
  9709. default: true
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(225, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/dominic/front.svg",
  9722. extra: 1770 / 1620,
  9723. bottom: 0.025
  9724. }
  9725. },
  9726. back: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(225, "lb"),
  9729. name: "Back",
  9730. image: {
  9731. source: "./media/characters/dominic/back.svg",
  9732. extra: 1745 / 1620,
  9733. bottom: 0.065
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Nano",
  9740. height: math.unit(0.1, "mm")
  9741. },
  9742. {
  9743. name: "Micro-",
  9744. height: math.unit(1, "mm")
  9745. },
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(4, "inches")
  9749. },
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(6 + 4 / 12, "feet"),
  9753. default: true
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(115, "feet")
  9758. },
  9759. {
  9760. name: "Macro+",
  9761. height: math.unit(955, "feet")
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(8990, "feet")
  9766. },
  9767. {
  9768. name: "Gigmacro",
  9769. height: math.unit(9310, "miles")
  9770. },
  9771. {
  9772. name: "Teramacro",
  9773. height: math.unit(1567005010, "miles")
  9774. },
  9775. {
  9776. name: "Examacro",
  9777. height: math.unit(1425, "parsecs")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(400, "feet"),
  9786. weight: math.unit(44444444, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/major-colonel/front.svg"
  9790. }
  9791. },
  9792. back: {
  9793. height: math.unit(400, "feet"),
  9794. weight: math.unit(44444444, "lb"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/major-colonel/back.svg"
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(400, "feet"),
  9805. default: true
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9811. {
  9812. catFront: {
  9813. height: math.unit(6, "feet"),
  9814. weight: math.unit(120, "lb"),
  9815. name: "Front (Cat Side)",
  9816. image: {
  9817. source: "./media/characters/axel-lycan/cat-front.svg",
  9818. extra: 430 / 402,
  9819. bottom: 43 / 472.35
  9820. }
  9821. },
  9822. catBack: {
  9823. height: math.unit(6, "feet"),
  9824. weight: math.unit(120, "lb"),
  9825. name: "Back (Cat Side)",
  9826. image: {
  9827. source: "./media/characters/axel-lycan/cat-back.svg",
  9828. extra: 447 / 419,
  9829. bottom: 23.3 / 469
  9830. }
  9831. },
  9832. wolfFront: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(120, "lb"),
  9835. name: "Front (Wolf Side)",
  9836. image: {
  9837. source: "./media/characters/axel-lycan/wolf-front.svg",
  9838. extra: 485 / 456,
  9839. bottom: 19 / 504
  9840. }
  9841. },
  9842. wolfBack: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Back (Wolf Side)",
  9846. image: {
  9847. source: "./media/characters/axel-lycan/wolf-back.svg",
  9848. extra: 475 / 438,
  9849. bottom: 39.2 / 514
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(1, "km"),
  9857. default: true
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9863. {
  9864. front: {
  9865. height: math.unit(5 + 9 / 12, "feet"),
  9866. weight: math.unit(175, "lb"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/vanrel-hyena/front.svg",
  9870. extra: 1086 / 1010,
  9871. bottom: 0.04
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(5 + 9 / 12, "feet"),
  9879. default: true
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(103, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/abbott-absol/front.svg",
  9892. extra: 2010 / 1842
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Megamicro",
  9899. height: math.unit(0.1, "mm")
  9900. },
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(1, "inch")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(6, "feet"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(264, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/hector/front.svg",
  9921. extra: 2280 / 2130,
  9922. bottom: 0.07
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(12.25, "foot"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(160, "feet")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(150, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/sal/front.svg",
  9947. extra: 1846 / 1699,
  9948. bottom: 0.04
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Megamacro",
  9955. height: math.unit(10, "miles"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9962. {
  9963. front: {
  9964. height: math.unit(3, "meters"),
  9965. weight: math.unit(450, "kg"),
  9966. name: "front",
  9967. image: {
  9968. source: "./media/characters/ranger/front.svg",
  9969. extra: 2401 / 2243,
  9970. bottom: 0.05
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Normal",
  9977. height: math.unit(3, "meters"),
  9978. default: true
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(14, "feet"),
  9987. weight: math.unit(800, "kg"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/theresa/front.svg",
  9991. extra: 3575 / 3346,
  9992. bottom: 0.03
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(14, "feet"),
  10000. default: true
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(3, "kg"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/ine/front.svg",
  10013. extra: 678 / 539,
  10014. bottom: 0.023
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(2.265, "feet"),
  10022. default: true
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(5, "feet"),
  10031. weight: math.unit(30, "kg"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/vial/front.svg",
  10035. extra: 1365 / 1277,
  10036. bottom: 0.04
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(5, "feet"),
  10044. default: true
  10045. },
  10046. ]
  10047. ))
  10048. characterMakers.push(() => makeCharacter(
  10049. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10050. {
  10051. side: {
  10052. height: math.unit(3.4, "meters"),
  10053. weight: math.unit(1000, "lb"),
  10054. name: "Side",
  10055. image: {
  10056. source: "./media/characters/rovoska/side.svg",
  10057. extra: 4403 / 1515
  10058. }
  10059. },
  10060. },
  10061. [
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(3.4, "meters"),
  10065. default: true
  10066. },
  10067. ]
  10068. ))
  10069. characterMakers.push(() => makeCharacter(
  10070. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10071. {
  10072. front: {
  10073. height: math.unit(8, "feet"),
  10074. weight: math.unit(315, "lb"),
  10075. name: "Front",
  10076. image: {
  10077. source: "./media/characters/gunner-rotthbauer/front.svg"
  10078. }
  10079. },
  10080. back: {
  10081. height: math.unit(8, "feet"),
  10082. weight: math.unit(315, "lb"),
  10083. name: "Back",
  10084. image: {
  10085. source: "./media/characters/gunner-rotthbauer/back.svg"
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Micro",
  10092. height: math.unit(3.5, "inches")
  10093. },
  10094. {
  10095. name: "Normal",
  10096. height: math.unit(8, "feet"),
  10097. default: true
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(250, "feet")
  10102. },
  10103. {
  10104. name: "Megamacro",
  10105. height: math.unit(1, "AU")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(5 + 5 / 12, "feet"),
  10114. weight: math.unit(140, "lb"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/allatia/front.svg",
  10118. extra: 1227 / 1180,
  10119. bottom: 0.027
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(5 + 5 / 12, "feet")
  10127. },
  10128. {
  10129. name: "Macro",
  10130. height: math.unit(250, "feet"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(8, "miles")
  10136. }
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(120, "lb"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/tene/front.svg",
  10148. extra: 814/750,
  10149. bottom: 36/850
  10150. }
  10151. },
  10152. stomping: {
  10153. height: math.unit(2.025, "meters"),
  10154. weight: math.unit(120, "lb"),
  10155. name: "Stomping",
  10156. image: {
  10157. source: "./media/characters/tene/stomping.svg",
  10158. extra: 885/821,
  10159. bottom: 15/900
  10160. }
  10161. },
  10162. sitting: {
  10163. height: math.unit(1, "meter"),
  10164. weight: math.unit(120, "lb"),
  10165. name: "Sitting",
  10166. image: {
  10167. source: "./media/characters/tene/sitting.svg",
  10168. extra: 396/366,
  10169. bottom: 79/475
  10170. }
  10171. },
  10172. smiling: {
  10173. height: math.unit(1.2, "feet"),
  10174. name: "Smiling",
  10175. image: {
  10176. source: "./media/characters/tene/smiling.svg",
  10177. extra: 1364/1071,
  10178. bottom: 0/1364
  10179. }
  10180. },
  10181. smug: {
  10182. height: math.unit(1.3, "feet"),
  10183. name: "Smug",
  10184. image: {
  10185. source: "./media/characters/tene/smug.svg",
  10186. extra: 1323/1082,
  10187. bottom: 0/1323
  10188. }
  10189. },
  10190. feral: {
  10191. height: math.unit(3.9, "feet"),
  10192. weight: math.unit(250, "lb"),
  10193. name: "Feral",
  10194. image: {
  10195. source: "./media/characters/tene/feral.svg",
  10196. extra: 717 / 458,
  10197. bottom: 0.179
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(6, "feet")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(300, "feet"),
  10209. default: true
  10210. },
  10211. {
  10212. name: "Megamacro",
  10213. height: math.unit(5, "miles")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10219. {
  10220. side: {
  10221. height: math.unit(6, "feet"),
  10222. name: "Side",
  10223. image: {
  10224. source: "./media/characters/evander/side.svg",
  10225. extra: 877 / 477
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(0.83, "meters"),
  10233. default: true
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10239. {
  10240. front: {
  10241. height: math.unit(12, "feet"),
  10242. weight: math.unit(1000, "lb"),
  10243. name: "Front",
  10244. image: {
  10245. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10246. extra: 1762 / 1611
  10247. }
  10248. },
  10249. back: {
  10250. height: math.unit(12, "feet"),
  10251. weight: math.unit(1000, "lb"),
  10252. name: "Back",
  10253. image: {
  10254. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10255. extra: 1762 / 1611
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(12, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Kaiju",
  10267. height: math.unit(150, "feet")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/zero-alurus/front.svg"
  10280. }
  10281. },
  10282. back: {
  10283. height: math.unit(6, "feet"),
  10284. weight: math.unit(150, "lb"),
  10285. name: "Back",
  10286. image: {
  10287. source: "./media/characters/zero-alurus/back.svg"
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(5 + 10 / 12, "feet")
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(60, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Macro+",
  10303. height: math.unit(450, "feet")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10309. {
  10310. front: {
  10311. height: math.unit(6, "feet"),
  10312. weight: math.unit(200, "lb"),
  10313. name: "Front",
  10314. image: {
  10315. source: "./media/characters/mega-shi/front.svg",
  10316. extra: 1279 / 1250,
  10317. bottom: 0.02
  10318. }
  10319. },
  10320. back: {
  10321. height: math.unit(6, "feet"),
  10322. weight: math.unit(200, "lb"),
  10323. name: "Back",
  10324. image: {
  10325. source: "./media/characters/mega-shi/back.svg",
  10326. extra: 1279 / 1250,
  10327. bottom: 0.02
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(16 + 6 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Third Dimension",
  10338. height: math.unit(40, "meters")
  10339. },
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(660, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Megamacro",
  10347. height: math.unit(10, "miles")
  10348. },
  10349. {
  10350. name: "Planetary Launch",
  10351. height: math.unit(500, "miles")
  10352. },
  10353. {
  10354. name: "Interstellar",
  10355. height: math.unit(1e9, "miles")
  10356. },
  10357. {
  10358. name: "Leaving the Universe",
  10359. height: math.unit(1, "gigaparsec")
  10360. },
  10361. {
  10362. name: "Travelling Universes",
  10363. height: math.unit(30e15, "parsecs")
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(5 + 4/12, "feet"),
  10372. weight: math.unit(120, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/odyssey/front.svg",
  10376. extra: 1747/1571,
  10377. bottom: 47/1794
  10378. }
  10379. },
  10380. side: {
  10381. height: math.unit(5.1, "feet"),
  10382. weight: math.unit(120, "lb"),
  10383. name: "Side",
  10384. image: {
  10385. source: "./media/characters/odyssey/side.svg",
  10386. extra: 1847/1619,
  10387. bottom: 47/1894
  10388. }
  10389. },
  10390. lounging: {
  10391. height: math.unit(1.464, "feet"),
  10392. weight: math.unit(120, "lb"),
  10393. name: "Lounging",
  10394. image: {
  10395. source: "./media/characters/odyssey/lounging.svg",
  10396. extra: 1235/837,
  10397. bottom: 551/1786
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(5 + 4 / 12, "feet")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(1, "km")
  10409. },
  10410. {
  10411. name: "Megamacro",
  10412. height: math.unit(3000, "km")
  10413. },
  10414. {
  10415. name: "Gigamacro",
  10416. height: math.unit(1, "AU"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Omniversal",
  10421. height: math.unit(100e14, "lightyears")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(300, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/mekuto/front.svg",
  10434. extra: 921 / 832,
  10435. bottom: 0.03
  10436. }
  10437. },
  10438. hand: {
  10439. height: math.unit(6 / 10.24, "feet"),
  10440. name: "Hand",
  10441. image: {
  10442. source: "./media/characters/mekuto/hand.svg"
  10443. }
  10444. },
  10445. foot: {
  10446. height: math.unit(6 / 5.05, "feet"),
  10447. name: "Foot",
  10448. image: {
  10449. source: "./media/characters/mekuto/foot.svg"
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Minimicro",
  10456. height: math.unit(0.2, "inches")
  10457. },
  10458. {
  10459. name: "Micro",
  10460. height: math.unit(1.5, "inches")
  10461. },
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(5 + 11 / 12, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Minimacro",
  10469. height: math.unit(17 + 9 / 12, "feet")
  10470. },
  10471. {
  10472. name: "Macro",
  10473. height: math.unit(177.5, "feet")
  10474. },
  10475. {
  10476. name: "Megamacro",
  10477. height: math.unit(152, "miles")
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6.5, "inches"),
  10486. weight: math.unit(13, "oz"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/dafydd-tomos/front.svg",
  10490. extra: 2990 / 2603,
  10491. bottom: 0.03
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Micro",
  10498. height: math.unit(6.5, "inches"),
  10499. default: true
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(150, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/splinter/front.svg",
  10512. extra: 2990 / 2882,
  10513. bottom: 0.04
  10514. }
  10515. },
  10516. back: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(150, "lb"),
  10519. name: "Back",
  10520. image: {
  10521. source: "./media/characters/splinter/back.svg",
  10522. extra: 2990 / 2882,
  10523. bottom: 0.04
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Normal",
  10530. height: math.unit(6, "feet")
  10531. },
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(230, "meters"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(4 + 10 / 12, "feet"),
  10544. weight: math.unit(480, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/snow-gabumon/front.svg",
  10548. extra: 1140 / 963,
  10549. bottom: 0.058
  10550. }
  10551. },
  10552. back: {
  10553. height: math.unit(4 + 10 / 12, "feet"),
  10554. weight: math.unit(480, "lb"),
  10555. name: "Back",
  10556. image: {
  10557. source: "./media/characters/snow-gabumon/back.svg",
  10558. extra: 1115 / 962,
  10559. bottom: 0.041
  10560. }
  10561. },
  10562. frontUndresed: {
  10563. height: math.unit(4 + 10 / 12, "feet"),
  10564. weight: math.unit(480, "lb"),
  10565. name: "Front (Undressed)",
  10566. image: {
  10567. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10568. extra: 1061 / 960,
  10569. bottom: 0.045
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Micro",
  10576. height: math.unit(1, "inch")
  10577. },
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(4 + 10 / 12, "feet"),
  10581. default: true
  10582. },
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(200, "feet")
  10586. },
  10587. {
  10588. name: "Megamacro",
  10589. height: math.unit(120, "miles")
  10590. },
  10591. {
  10592. name: "Gigamacro",
  10593. height: math.unit(9800, "miles")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(1.7, "meters"),
  10602. weight: math.unit(140, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/moody/front.svg",
  10606. extra: 3226 / 3007,
  10607. bottom: 0.087
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Micro",
  10614. height: math.unit(1, "mm")
  10615. },
  10616. {
  10617. name: "Normal",
  10618. height: math.unit(1.7, "meters"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Macro",
  10623. height: math.unit(80, "meters")
  10624. },
  10625. {
  10626. name: "Macro+",
  10627. height: math.unit(500, "meters")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(150, "lb"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/zyas/front.svg",
  10640. extra: 1180 / 1120,
  10641. bottom: 0.045
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Normal",
  10648. height: math.unit(10, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(500, "feet")
  10654. },
  10655. {
  10656. name: "Megamacro",
  10657. height: math.unit(5, "miles")
  10658. },
  10659. {
  10660. name: "Teramacro",
  10661. height: math.unit(150000, "miles")
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(150, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/cuon/front.svg",
  10674. extra: 1390 / 1320,
  10675. bottom: 0.008
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Micro",
  10682. height: math.unit(3, "inches")
  10683. },
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(18 + 9 / 12, "feet"),
  10687. default: true
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(360, "feet")
  10692. },
  10693. {
  10694. name: "Megamacro",
  10695. height: math.unit(360, "miles")
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10701. {
  10702. front: {
  10703. height: math.unit(2.4, "meters"),
  10704. weight: math.unit(70, "kg"),
  10705. name: "Front",
  10706. image: {
  10707. source: "./media/characters/nyanuxk/front.svg",
  10708. extra: 1172 / 1084,
  10709. bottom: 0.065
  10710. }
  10711. },
  10712. side: {
  10713. height: math.unit(2.4, "meters"),
  10714. weight: math.unit(70, "kg"),
  10715. name: "Side",
  10716. image: {
  10717. source: "./media/characters/nyanuxk/side.svg",
  10718. extra: 1190 / 1132,
  10719. bottom: 0.007
  10720. }
  10721. },
  10722. back: {
  10723. height: math.unit(2.4, "meters"),
  10724. weight: math.unit(70, "kg"),
  10725. name: "Back",
  10726. image: {
  10727. source: "./media/characters/nyanuxk/back.svg",
  10728. extra: 1200 / 1141,
  10729. bottom: 0.015
  10730. }
  10731. },
  10732. foot: {
  10733. height: math.unit(0.52, "meters"),
  10734. name: "Foot",
  10735. image: {
  10736. source: "./media/characters/nyanuxk/foot.svg"
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Micro",
  10743. height: math.unit(2, "cm")
  10744. },
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(2.4, "meters"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Smaller Macro",
  10752. height: math.unit(120, "meters")
  10753. },
  10754. {
  10755. name: "Bigger Macro",
  10756. height: math.unit(1.2, "km")
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(15, "kilometers")
  10761. },
  10762. {
  10763. name: "Gigamacro",
  10764. height: math.unit(2000, "km")
  10765. },
  10766. {
  10767. name: "Teramacro",
  10768. height: math.unit(500000, "km")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10774. {
  10775. side: {
  10776. height: math.unit(6, "feet"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/ailbhe/side.svg",
  10780. extra: 757 / 464,
  10781. bottom: 0.041
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(1.07, "meters"),
  10789. default: true
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(120, "kg"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/zevulfius/front.svg",
  10802. extra: 965 / 903
  10803. }
  10804. },
  10805. side: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(120, "kg"),
  10808. name: "Side",
  10809. image: {
  10810. source: "./media/characters/zevulfius/side.svg",
  10811. extra: 939 / 900
  10812. }
  10813. },
  10814. back: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(120, "kg"),
  10817. name: "Back",
  10818. image: {
  10819. source: "./media/characters/zevulfius/back.svg",
  10820. extra: 918 / 854,
  10821. bottom: 0.005
  10822. }
  10823. },
  10824. foot: {
  10825. height: math.unit(6 / 3.72, "feet"),
  10826. name: "Foot",
  10827. image: {
  10828. source: "./media/characters/zevulfius/foot.svg"
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Macro",
  10835. height: math.unit(750, "meters")
  10836. },
  10837. {
  10838. name: "Megamacro",
  10839. height: math.unit(20, "km"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Gigamacro",
  10844. height: math.unit(2000, "km")
  10845. },
  10846. {
  10847. name: "Teramacro",
  10848. height: math.unit(250000, "km")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(100, "feet"),
  10857. weight: math.unit(350, "kg"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/rikes/front.svg",
  10861. extra: 1565 / 1483,
  10862. bottom: 0.017
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Macro",
  10869. height: math.unit(100, "feet"),
  10870. default: true
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(8, "feet"),
  10879. weight: math.unit(356, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/adam-silver-mane/front.svg",
  10883. extra: 1036/937,
  10884. bottom: 63/1099
  10885. }
  10886. },
  10887. side: {
  10888. height: math.unit(8, "feet"),
  10889. weight: math.unit(356, "lb"),
  10890. name: "Side",
  10891. image: {
  10892. source: "./media/characters/adam-silver-mane/side.svg",
  10893. extra: 997/901,
  10894. bottom: 59/1056
  10895. }
  10896. },
  10897. frontNsfw: {
  10898. height: math.unit(8, "feet"),
  10899. weight: math.unit(356, "lb"),
  10900. name: "Front (NSFW)",
  10901. image: {
  10902. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10903. extra: 1036/937,
  10904. bottom: 63/1099
  10905. }
  10906. },
  10907. sideNsfw: {
  10908. height: math.unit(8, "feet"),
  10909. weight: math.unit(356, "lb"),
  10910. name: "Side (NSFW)",
  10911. image: {
  10912. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10913. extra: 997/901,
  10914. bottom: 59/1056
  10915. }
  10916. },
  10917. dick: {
  10918. height: math.unit(2.1, "feet"),
  10919. name: "Dick",
  10920. image: {
  10921. source: "./media/characters/adam-silver-mane/dick.svg"
  10922. }
  10923. },
  10924. taur: {
  10925. height: math.unit(16, "feet"),
  10926. weight: math.unit(1500, "kg"),
  10927. name: "Taur",
  10928. image: {
  10929. source: "./media/characters/adam-silver-mane/taur.svg",
  10930. extra: 1713 / 1571,
  10931. bottom: 0.01
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(8, "feet")
  10939. },
  10940. {
  10941. name: "Minimacro",
  10942. height: math.unit(80, "feet")
  10943. },
  10944. {
  10945. name: "MDA",
  10946. height: math.unit(80, "meters")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(800, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Megamacro",
  10955. height: math.unit(8000, "feet")
  10956. },
  10957. {
  10958. name: "Gigamacro",
  10959. height: math.unit(800, "miles")
  10960. },
  10961. {
  10962. name: "Teramacro",
  10963. height: math.unit(80000, "miles")
  10964. },
  10965. {
  10966. name: "Celestial",
  10967. height: math.unit(8e6, "miles")
  10968. },
  10969. {
  10970. name: "Star Dragon",
  10971. height: math.unit(800000, "parsecs")
  10972. },
  10973. {
  10974. name: "Godly",
  10975. height: math.unit(800, "teraparsecs")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/ky'owin/front.svg",
  10988. extra: 3888 / 3068,
  10989. bottom: 0.015
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(6 + 8 / 12, "feet")
  10997. },
  10998. {
  10999. name: "Large",
  11000. height: math.unit(68, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(132, "feet")
  11005. },
  11006. {
  11007. name: "Macro+",
  11008. height: math.unit(340, "feet")
  11009. },
  11010. {
  11011. name: "Macro++",
  11012. height: math.unit(680, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(1, "mile")
  11018. },
  11019. {
  11020. name: "Megamacro+",
  11021. height: math.unit(10, "miles")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(4, "feet"),
  11030. weight: math.unit(50, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/mal/front.svg",
  11034. extra: 785 / 724,
  11035. bottom: 0.07
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Micro",
  11042. height: math.unit(4, "inches")
  11043. },
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(4, "feet"),
  11047. default: true
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(200, "feet")
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(150, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/jordan-deware/front.svg",
  11064. extra: 1191 / 1012
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Nano",
  11071. height: math.unit(0.01, "mm")
  11072. },
  11073. {
  11074. name: "Minimicro",
  11075. height: math.unit(1, "mm")
  11076. },
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(0.5, "inches")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(4, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Minimacro",
  11088. height: math.unit(40, "meters")
  11089. },
  11090. {
  11091. name: "Small Macro",
  11092. height: math.unit(400, "meters")
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(4, "miles")
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(40, "miles")
  11101. },
  11102. {
  11103. name: "Megamacro+",
  11104. height: math.unit(400, "miles")
  11105. },
  11106. {
  11107. name: "Gigamacro",
  11108. height: math.unit(400000, "miles")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11114. {
  11115. side: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Side",
  11119. image: {
  11120. source: "./media/characters/kimiko/side.svg",
  11121. extra: 600 / 358
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(15, "feet"),
  11129. default: true
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(220, "feet")
  11134. },
  11135. {
  11136. name: "Macro+",
  11137. height: math.unit(1450, "feet")
  11138. },
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(11500, "feet")
  11142. },
  11143. {
  11144. name: "Gigamacro",
  11145. height: math.unit(9500, "miles")
  11146. },
  11147. {
  11148. name: "Teramacro",
  11149. height: math.unit(2208005005, "miles")
  11150. },
  11151. {
  11152. name: "Examacro",
  11153. height: math.unit(2750, "parsecs")
  11154. },
  11155. {
  11156. name: "Zettamacro",
  11157. height: math.unit(101500, "parsecs")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(70, "kg"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/andrew-sleepy/front.svg"
  11170. }
  11171. },
  11172. side: {
  11173. height: math.unit(6, "feet"),
  11174. weight: math.unit(70, "kg"),
  11175. name: "Side",
  11176. image: {
  11177. source: "./media/characters/andrew-sleepy/side.svg"
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(1, "mm"),
  11185. default: true
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(150, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/judio/front.svg",
  11198. extra: 1258 / 1110
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(5 + 6 / 12, "feet")
  11206. },
  11207. {
  11208. name: "Macro",
  11209. height: math.unit(1000, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(10, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11220. {
  11221. frontDressed: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(68, "kg"),
  11224. name: "Front (Dressed)",
  11225. image: {
  11226. source: "./media/characters/nomaxice/front-dressed.svg",
  11227. extra: 1137/824,
  11228. bottom: 74/1211
  11229. }
  11230. },
  11231. frontShorts: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(68, "kg"),
  11234. name: "Front (Shorts)",
  11235. image: {
  11236. source: "./media/characters/nomaxice/front-shorts.svg",
  11237. extra: 1137/824,
  11238. bottom: 74/1211
  11239. }
  11240. },
  11241. back: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(68, "kg"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/nomaxice/back.svg",
  11247. extra: 822/786,
  11248. bottom: 39/861
  11249. }
  11250. },
  11251. hand: {
  11252. height: math.unit(0.565, "feet"),
  11253. name: "Hand",
  11254. image: {
  11255. source: "./media/characters/nomaxice/hand.svg"
  11256. }
  11257. },
  11258. foot: {
  11259. height: math.unit(1, "feet"),
  11260. name: "Foot",
  11261. image: {
  11262. source: "./media/characters/nomaxice/foot.svg"
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(8, "cm")
  11270. },
  11271. {
  11272. name: "Norm",
  11273. height: math.unit(1.82, "m")
  11274. },
  11275. {
  11276. name: "Norm+",
  11277. height: math.unit(8.8, "feet"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Big",
  11282. height: math.unit(8, "meters")
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(18, "meters")
  11287. },
  11288. {
  11289. name: "Macro+",
  11290. height: math.unit(88, "meters")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(12, "feet"),
  11299. weight: math.unit(1.5, "tons"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/dydros/front.svg",
  11303. extra: 863 / 800,
  11304. bottom: 0.015
  11305. }
  11306. },
  11307. back: {
  11308. height: math.unit(12, "feet"),
  11309. weight: math.unit(1.5, "tons"),
  11310. name: "Back",
  11311. image: {
  11312. source: "./media/characters/dydros/back.svg",
  11313. extra: 900 / 843,
  11314. bottom: 0.005
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(12, "feet"),
  11322. default: true
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(6, "feet"),
  11331. weight: math.unit(100, "kg"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/riggi/front.svg",
  11335. extra: 5787 / 5303
  11336. }
  11337. },
  11338. hyper: {
  11339. height: math.unit(6 * 5 / 3, "feet"),
  11340. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11341. name: "Hyper",
  11342. image: {
  11343. source: "./media/characters/riggi/hyper.svg",
  11344. extra: 3595 / 3485
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Small Macro",
  11351. height: math.unit(50, "feet")
  11352. },
  11353. {
  11354. name: "Default",
  11355. height: math.unit(200, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Loom",
  11360. height: math.unit(10000, "feet")
  11361. },
  11362. {
  11363. name: "Cruising Altitude",
  11364. height: math.unit(30000, "feet")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(100, "miles")
  11369. },
  11370. {
  11371. name: "Continent Sized",
  11372. height: math.unit(2800, "miles")
  11373. },
  11374. {
  11375. name: "Earth Sized",
  11376. height: math.unit(8000, "miles")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(250, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/alexi/front.svg",
  11389. extra: 3483 / 3291,
  11390. bottom: 0.04
  11391. }
  11392. },
  11393. back: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(250, "lb"),
  11396. name: "Back",
  11397. image: {
  11398. source: "./media/characters/alexi/back.svg",
  11399. extra: 3533 / 3356,
  11400. bottom: 0.021
  11401. }
  11402. },
  11403. frontTransforming: {
  11404. height: math.unit(8.58, "feet"),
  11405. weight: math.unit(1300, "lb"),
  11406. name: "Transforming",
  11407. image: {
  11408. source: "./media/characters/alexi/front-transforming.svg",
  11409. extra: 437 / 409,
  11410. bottom: 19 / 458.66
  11411. }
  11412. },
  11413. frontTransformed: {
  11414. height: math.unit(12.5, "feet"),
  11415. weight: math.unit(4000, "lb"),
  11416. name: "Transformed",
  11417. image: {
  11418. source: "./media/characters/alexi/front-transformed.svg",
  11419. extra: 639 / 614,
  11420. bottom: 30.55 / 671
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(14, "feet"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Minimacro",
  11432. height: math.unit(30, "meters")
  11433. },
  11434. {
  11435. name: "Macro",
  11436. height: math.unit(500, "meters")
  11437. },
  11438. {
  11439. name: "Megamacro",
  11440. height: math.unit(9000, "km")
  11441. },
  11442. {
  11443. name: "Teramacro",
  11444. height: math.unit(384000, "km")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/kayroo/front.svg",
  11457. extra: 1153 / 1038,
  11458. bottom: 0.06
  11459. }
  11460. },
  11461. foot: {
  11462. height: math.unit(6, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Foot",
  11465. image: {
  11466. source: "./media/characters/kayroo/foot.svg"
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(8, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Minimacro",
  11478. height: math.unit(250, "feet")
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(2800, "feet")
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(5200, "feet")
  11487. },
  11488. {
  11489. name: "Gigamacro",
  11490. height: math.unit(27000, "feet")
  11491. },
  11492. {
  11493. name: "Omega",
  11494. height: math.unit(45000, "feet")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(18, "feet"),
  11503. weight: math.unit(5800, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/rhys/front.svg",
  11507. extra: 3386 / 3090,
  11508. bottom: 0.07
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(18, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Working Size",
  11520. height: math.unit(200, "feet")
  11521. },
  11522. {
  11523. name: "Demolition Size",
  11524. height: math.unit(2000, "feet")
  11525. },
  11526. {
  11527. name: "Maximum Licensed Size",
  11528. height: math.unit(5, "miles")
  11529. },
  11530. {
  11531. name: "Maximum Observed Size",
  11532. height: math.unit(10, "yottameters")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(250, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/toto/front.svg",
  11545. extra: 527 / 479,
  11546. bottom: 0.05
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Micro",
  11553. height: math.unit(3, "feet")
  11554. },
  11555. {
  11556. name: "Normal",
  11557. height: math.unit(10, "feet")
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(150, "feet"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Megamacro",
  11566. height: math.unit(1200, "feet")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "King", species: ["lion"], tags: ["anthro"] },
  11572. {
  11573. back: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Back",
  11577. image: {
  11578. source: "./media/characters/king/back.svg"
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Micro",
  11585. height: math.unit(2, "inches")
  11586. },
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(8, "feet")
  11590. },
  11591. {
  11592. name: "Macro",
  11593. height: math.unit(200, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Megamacro",
  11598. height: math.unit(50, "miles")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(11, "feet"),
  11607. weight: math.unit(1400, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/cordite/front.svg",
  11611. extra: 1919/1827,
  11612. bottom: 40/1959
  11613. }
  11614. },
  11615. side: {
  11616. height: math.unit(11, "feet"),
  11617. weight: math.unit(1400, "lb"),
  11618. name: "Side",
  11619. image: {
  11620. source: "./media/characters/cordite/side.svg",
  11621. extra: 1908/1793,
  11622. bottom: 38/1946
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(11, "feet"),
  11627. weight: math.unit(1400, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/cordite/back.svg",
  11631. extra: 1938/1837,
  11632. bottom: 10/1948
  11633. }
  11634. },
  11635. feral: {
  11636. height: math.unit(2, "feet"),
  11637. weight: math.unit(90, "lb"),
  11638. name: "Feral",
  11639. image: {
  11640. source: "./media/characters/cordite/feral.svg",
  11641. extra: 1260 / 755,
  11642. bottom: 0.05
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(11, "feet"),
  11650. default: true
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(150, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/pianostrong/front.svg",
  11663. extra: 6577 / 6254,
  11664. bottom: 0.02
  11665. }
  11666. },
  11667. side: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(150, "lb"),
  11670. name: "Side",
  11671. image: {
  11672. source: "./media/characters/pianostrong/side.svg",
  11673. extra: 6106 / 5730
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/pianostrong/back.svg",
  11682. extra: 6085 / 5733,
  11683. bottom: 0.01
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(100, "feet")
  11691. },
  11692. {
  11693. name: "Macro+",
  11694. height: math.unit(300, "feet"),
  11695. default: true
  11696. },
  11697. {
  11698. name: "Macro++",
  11699. height: math.unit(1000, "feet")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11705. {
  11706. front: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/kona/front.svg",
  11712. extra: 2960 / 2629,
  11713. bottom: 0.005
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(11 + 8 / 12, "feet")
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(850, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Macro+",
  11729. height: math.unit(1.5, "km"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Megamacro",
  11734. height: math.unit(80, "miles")
  11735. },
  11736. {
  11737. name: "Gigamacro",
  11738. height: math.unit(3500, "miles")
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11744. {
  11745. side: {
  11746. height: math.unit(1.9, "meters"),
  11747. weight: math.unit(326, "kg"),
  11748. name: "Side",
  11749. image: {
  11750. source: "./media/characters/levi/side.svg",
  11751. extra: 1704 / 1334,
  11752. bottom: 0.02
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(1.9, "meters"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(20, "meters")
  11765. },
  11766. {
  11767. name: "Macro+",
  11768. height: math.unit(200, "meters")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(2, "km")
  11773. },
  11774. {
  11775. name: "Megamacro+",
  11776. height: math.unit(20, "km")
  11777. },
  11778. {
  11779. name: "Gigamacro",
  11780. height: math.unit(2500, "km")
  11781. },
  11782. {
  11783. name: "Gigamacro+",
  11784. height: math.unit(120000, "km")
  11785. },
  11786. {
  11787. name: "Teramacro",
  11788. height: math.unit(7.77e6, "km")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(6 + 4/12, "feet"),
  11797. weight: math.unit(190, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/bmc/front.svg",
  11801. extra: 1626/1472,
  11802. bottom: 79/1705
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(6 + 4/12, "feet"),
  11807. weight: math.unit(190, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/bmc/back.svg",
  11811. extra: 1640/1479,
  11812. bottom: 45/1685
  11813. }
  11814. },
  11815. frontArmor: {
  11816. height: math.unit(6 + 4/12, "feet"),
  11817. weight: math.unit(190, "lb"),
  11818. name: "Front-armor",
  11819. image: {
  11820. source: "./media/characters/bmc/front-armor.svg",
  11821. extra: 1538/1468,
  11822. bottom: 79/1617
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Human-sized",
  11829. height: math.unit(6 + 4 / 12, "feet")
  11830. },
  11831. {
  11832. name: "Interactive Size",
  11833. height: math.unit(25, "feet")
  11834. },
  11835. {
  11836. name: "Small",
  11837. height: math.unit(250, "feet")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(1250, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Good Day",
  11846. height: math.unit(88, "miles")
  11847. },
  11848. {
  11849. name: "Largest Measured Size",
  11850. height: math.unit(105.960, "galaxies")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(20, "feet"),
  11859. weight: math.unit(2016, "kg"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/sven-the-kaiju/front.svg",
  11863. extra: 1277/1250,
  11864. bottom: 35/1312
  11865. }
  11866. },
  11867. mouth: {
  11868. height: math.unit(1.85, "feet"),
  11869. name: "Mouth",
  11870. image: {
  11871. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Fairy",
  11878. height: math.unit(6, "inches")
  11879. },
  11880. {
  11881. name: "Normal",
  11882. height: math.unit(20, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Rampage",
  11887. height: math.unit(200, "feet")
  11888. },
  11889. {
  11890. name: "Archfey Forest Guardian",
  11891. height: math.unit(1, "mile")
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11897. {
  11898. front: {
  11899. height: math.unit(4, "meters"),
  11900. weight: math.unit(2, "tons"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/marik/front.svg",
  11904. extra: 1057 / 1003,
  11905. bottom: 0.08
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(4, "meters"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(20, "meters")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(50, "km")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(100, "km")
  11926. },
  11927. {
  11928. name: "Alpha Macro",
  11929. height: math.unit(7.88e7, "yottameters")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(110, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/mel/front.svg",
  11942. extra: 736 / 617,
  11943. bottom: 0.017
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Pico",
  11950. height: math.unit(3, "pm")
  11951. },
  11952. {
  11953. name: "Nano",
  11954. height: math.unit(3, "nm")
  11955. },
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(0.3, "mm"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Micro+",
  11963. height: math.unit(3, "mm")
  11964. },
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(5 + 10.5 / 12, "feet")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11973. {
  11974. kaiju: {
  11975. height: math.unit(1.75, "meters"),
  11976. weight: math.unit(55, "kg"),
  11977. name: "Kaiju",
  11978. image: {
  11979. source: "./media/characters/lykonous/kaiju.svg",
  11980. extra: 1055 / 946,
  11981. bottom: 0.135
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(2.5, "meters"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Kaiju Dragon",
  11993. height: math.unit(60, "meters")
  11994. },
  11995. {
  11996. name: "Mega Kaiju",
  11997. height: math.unit(120, "km")
  11998. },
  11999. {
  12000. name: "Giga Kaiju",
  12001. height: math.unit(200, "megameters")
  12002. },
  12003. {
  12004. name: "Terra Kaiju",
  12005. height: math.unit(400, "gigameters")
  12006. },
  12007. {
  12008. name: "Kaiju Dragon God",
  12009. height: math.unit(13000, "exaparsecs")
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(150, "lb"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/blü/front.svg",
  12022. extra: 1883 / 1564,
  12023. bottom: 0.031
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(13, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Big Boi",
  12035. height: math.unit(150, "meters")
  12036. },
  12037. {
  12038. name: "Mini Stomper",
  12039. height: math.unit(300, "meters")
  12040. },
  12041. {
  12042. name: "Macro",
  12043. height: math.unit(1000, "meters")
  12044. },
  12045. {
  12046. name: "Megamacro",
  12047. height: math.unit(11000, "meters")
  12048. },
  12049. {
  12050. name: "Gigamacro",
  12051. height: math.unit(11000, "km")
  12052. },
  12053. {
  12054. name: "Teramacro",
  12055. height: math.unit(420000, "km")
  12056. },
  12057. {
  12058. name: "Examacro",
  12059. height: math.unit(120, "parsecs")
  12060. },
  12061. {
  12062. name: "God Tho",
  12063. height: math.unit(98000000000, "parsecs")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12069. {
  12070. taurFront: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(200, "lb"),
  12073. name: "Taur (Front)",
  12074. image: {
  12075. source: "./media/characters/scales/taur-front.svg",
  12076. extra: 1,
  12077. bottom: 0.05
  12078. }
  12079. },
  12080. taurBack: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(200, "lb"),
  12083. name: "Taur (Back)",
  12084. image: {
  12085. source: "./media/characters/scales/taur-back.svg",
  12086. extra: 1,
  12087. bottom: 0.08
  12088. }
  12089. },
  12090. anthro: {
  12091. height: math.unit(6 * 7 / 12, "feet"),
  12092. weight: math.unit(100, "lb"),
  12093. name: "Anthro",
  12094. image: {
  12095. source: "./media/characters/scales/anthro.svg",
  12096. extra: 1,
  12097. bottom: 0.06
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(12, "feet"),
  12105. default: true
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/koragos/front.svg",
  12118. extra: 841 / 794,
  12119. bottom: 0.035
  12120. }
  12121. },
  12122. back: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Back",
  12126. image: {
  12127. source: "./media/characters/koragos/back.svg",
  12128. extra: 841 / 810,
  12129. bottom: 0.022
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(6 + 11 / 12, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(490, "feet")
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(10, "miles")
  12146. },
  12147. {
  12148. name: "Gigamacro",
  12149. height: math.unit(50, "miles")
  12150. },
  12151. ]
  12152. ))
  12153. characterMakers.push(() => makeCharacter(
  12154. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12155. {
  12156. front: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(250, "lb"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/xylrem/front.svg",
  12162. extra: 3323 / 3050,
  12163. bottom: 0.065
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Micro",
  12170. height: math.unit(4, "feet")
  12171. },
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(16, "feet"),
  12175. default: true
  12176. },
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(2720, "feet")
  12180. },
  12181. {
  12182. name: "Megamacro",
  12183. height: math.unit(25000, "miles")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(8, "feet"),
  12192. weight: math.unit(250, "kg"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/ikideru/front.svg",
  12196. extra: 930 / 870,
  12197. bottom: 0.087
  12198. }
  12199. },
  12200. back: {
  12201. height: math.unit(8, "feet"),
  12202. weight: math.unit(250, "kg"),
  12203. name: "Back",
  12204. image: {
  12205. source: "./media/characters/ikideru/back.svg",
  12206. extra: 919 / 852,
  12207. bottom: 0.055
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Rare",
  12214. height: math.unit(8, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Playful Loom",
  12219. height: math.unit(80, "feet")
  12220. },
  12221. {
  12222. name: "City Leaner",
  12223. height: math.unit(230, "feet")
  12224. },
  12225. {
  12226. name: "Megamacro",
  12227. height: math.unit(2500, "feet")
  12228. },
  12229. {
  12230. name: "Gigamacro",
  12231. height: math.unit(26400, "feet")
  12232. },
  12233. {
  12234. name: "Tectonic Shifter",
  12235. height: math.unit(1.7, "megameters")
  12236. },
  12237. {
  12238. name: "Planet Carer",
  12239. height: math.unit(21, "megameters")
  12240. },
  12241. {
  12242. name: "God",
  12243. height: math.unit(11157.22, "parsecs")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(120, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/neo/front.svg"
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Micro",
  12262. height: math.unit(2, "inches"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Human Size",
  12267. height: math.unit(5 + 8 / 12, "feet")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(13 + 10 / 12, "feet"),
  12276. weight: math.unit(5320, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/chauncey-chantz/front.svg",
  12280. extra: 1587 / 1435,
  12281. bottom: 0.02
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(13 + 10 / 12, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(45, "feet")
  12294. },
  12295. {
  12296. name: "Megamacro",
  12297. height: math.unit(250, "miles")
  12298. },
  12299. {
  12300. name: "Planetary",
  12301. height: math.unit(10000, "miles")
  12302. },
  12303. {
  12304. name: "Galactic",
  12305. height: math.unit(40000, "parsecs")
  12306. },
  12307. {
  12308. name: "Universal",
  12309. height: math.unit(1, "yottameter")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/epifox/front.svg",
  12322. extra: 1,
  12323. bottom: 0.075
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Micro",
  12330. height: math.unit(6, "inches")
  12331. },
  12332. {
  12333. name: "Normal",
  12334. height: math.unit(12, "feet"),
  12335. default: true
  12336. },
  12337. {
  12338. name: "Macro",
  12339. height: math.unit(3810, "feet")
  12340. },
  12341. {
  12342. name: "Megamacro",
  12343. height: math.unit(500, "miles")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(1.8796, "m"),
  12352. weight: math.unit(230, "lb"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/colin-t/front.svg",
  12356. extra: 1272 / 1193,
  12357. bottom: 0.07
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Micro",
  12364. height: math.unit(0.571, "meters")
  12365. },
  12366. {
  12367. name: "Normal",
  12368. height: math.unit(1.8796, "meters"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Tall",
  12373. height: math.unit(4, "meters")
  12374. },
  12375. {
  12376. name: "Macro",
  12377. height: math.unit(67.241, "meters")
  12378. },
  12379. {
  12380. name: "Megamacro",
  12381. height: math.unit(371.856, "meters")
  12382. },
  12383. {
  12384. name: "Planetary",
  12385. height: math.unit(12631.5689, "km")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(1.85, "meters"),
  12394. weight: math.unit(80, "kg"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/matvei/front.svg",
  12398. extra: 614 / 594,
  12399. bottom: 0.01
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Normal",
  12406. height: math.unit(1.85, "meters"),
  12407. default: true
  12408. },
  12409. ]
  12410. ))
  12411. characterMakers.push(() => makeCharacter(
  12412. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12413. {
  12414. front: {
  12415. height: math.unit(5 + 9 / 12, "feet"),
  12416. weight: math.unit(70, "lb"),
  12417. name: "Front",
  12418. image: {
  12419. source: "./media/characters/quincy/front.svg",
  12420. extra: 3041 / 2751
  12421. }
  12422. },
  12423. back: {
  12424. height: math.unit(5 + 9 / 12, "feet"),
  12425. weight: math.unit(70, "lb"),
  12426. name: "Back",
  12427. image: {
  12428. source: "./media/characters/quincy/back.svg",
  12429. extra: 3041 / 2751
  12430. }
  12431. },
  12432. flying: {
  12433. height: math.unit(5 + 4 / 12, "feet"),
  12434. weight: math.unit(70, "lb"),
  12435. name: "Flying",
  12436. image: {
  12437. source: "./media/characters/quincy/flying.svg",
  12438. extra: 1044 / 930
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Micro",
  12445. height: math.unit(3, "cm")
  12446. },
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(5 + 9 / 12, "feet")
  12450. },
  12451. {
  12452. name: "Macro",
  12453. height: math.unit(200, "meters"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Megamacro",
  12458. height: math.unit(1000, "meters")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(3 + 11/12, "feet"),
  12467. weight: math.unit(50, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/vanrel/front.svg",
  12471. extra: 1104/949,
  12472. bottom: 52/1156
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(3 + 11/12, "feet"),
  12477. weight: math.unit(50, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/vanrel/back.svg",
  12481. extra: 1119/976,
  12482. bottom: 37/1156
  12483. }
  12484. },
  12485. tome: {
  12486. height: math.unit(1.35, "feet"),
  12487. weight: math.unit(10, "lb"),
  12488. name: "Vanrel's Tome",
  12489. rename: true,
  12490. image: {
  12491. source: "./media/characters/vanrel/tome.svg"
  12492. }
  12493. },
  12494. beans: {
  12495. height: math.unit(0.89, "feet"),
  12496. name: "Beans",
  12497. image: {
  12498. source: "./media/characters/vanrel/beans.svg"
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Normal",
  12505. height: math.unit(3 + 11/12, "feet"),
  12506. default: true
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(7 + 5 / 12, "feet"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/kuiper-vanrel/front.svg",
  12518. extra: 1219/1169,
  12519. bottom: 69/1288
  12520. }
  12521. },
  12522. back: {
  12523. height: math.unit(7 + 5 / 12, "feet"),
  12524. name: "Back",
  12525. image: {
  12526. source: "./media/characters/kuiper-vanrel/back.svg",
  12527. extra: 1236/1193,
  12528. bottom: 27/1263
  12529. }
  12530. },
  12531. foot: {
  12532. height: math.unit(0.55, "meters"),
  12533. name: "Foot",
  12534. image: {
  12535. source: "./media/characters/kuiper-vanrel/foot.svg",
  12536. }
  12537. },
  12538. battle: {
  12539. height: math.unit(6.824, "feet"),
  12540. name: "Battle",
  12541. image: {
  12542. source: "./media/characters/kuiper-vanrel/battle.svg",
  12543. extra: 1466 / 1327,
  12544. bottom: 29 / 1492.5
  12545. }
  12546. },
  12547. meerkui: {
  12548. height: math.unit(18, "inches"),
  12549. name: "Meerkui",
  12550. image: {
  12551. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12552. extra: 1354/1289,
  12553. bottom: 69/1423
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(7 + 5 / 12, "feet"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(8 + 5 / 12, "feet"),
  12570. name: "Front",
  12571. image: {
  12572. source: "./media/characters/keset-vanrel/front.svg",
  12573. extra: 1231/1148,
  12574. bottom: 82/1313
  12575. }
  12576. },
  12577. back: {
  12578. height: math.unit(8 + 5 / 12, "feet"),
  12579. name: "Back",
  12580. image: {
  12581. source: "./media/characters/keset-vanrel/back.svg",
  12582. extra: 1240/1174,
  12583. bottom: 33/1273
  12584. }
  12585. },
  12586. hand: {
  12587. height: math.unit(0.6, "meters"),
  12588. name: "Hand",
  12589. image: {
  12590. source: "./media/characters/keset-vanrel/hand.svg"
  12591. }
  12592. },
  12593. foot: {
  12594. height: math.unit(0.94978, "meters"),
  12595. name: "Foot",
  12596. image: {
  12597. source: "./media/characters/keset-vanrel/foot.svg"
  12598. }
  12599. },
  12600. battle: {
  12601. height: math.unit(7.408, "feet"),
  12602. name: "Battle",
  12603. image: {
  12604. source: "./media/characters/keset-vanrel/battle.svg",
  12605. extra: 1890 / 1386,
  12606. bottom: 73.28 / 1970
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(8 + 5 / 12, "feet"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/neos/front.svg",
  12627. extra: 1696 / 992,
  12628. bottom: 0.14
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(54, "cm"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Macro",
  12640. height: math.unit(100, "m")
  12641. },
  12642. {
  12643. name: "Megamacro",
  12644. height: math.unit(10, "km")
  12645. },
  12646. {
  12647. name: "Megamacro+",
  12648. height: math.unit(100, "km")
  12649. },
  12650. {
  12651. name: "Gigamacro",
  12652. height: math.unit(100, "Mm")
  12653. },
  12654. {
  12655. name: "Teramacro",
  12656. height: math.unit(100, "Gm")
  12657. },
  12658. {
  12659. name: "Examacro",
  12660. height: math.unit(100, "Em")
  12661. },
  12662. {
  12663. name: "Godly",
  12664. height: math.unit(10000, "Ym")
  12665. },
  12666. {
  12667. name: "Beyond Godly",
  12668. height: math.unit(25, "multiverses")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12674. {
  12675. feminine: {
  12676. height: math.unit(5, "feet"),
  12677. weight: math.unit(100, "lb"),
  12678. name: "Feminine",
  12679. image: {
  12680. source: "./media/characters/sammy-mouse/feminine.svg",
  12681. extra: 2526 / 2425,
  12682. bottom: 0.123
  12683. }
  12684. },
  12685. masculine: {
  12686. height: math.unit(5, "feet"),
  12687. weight: math.unit(100, "lb"),
  12688. name: "Masculine",
  12689. image: {
  12690. source: "./media/characters/sammy-mouse/masculine.svg",
  12691. extra: 2526 / 2425,
  12692. bottom: 0.123
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Micro",
  12699. height: math.unit(5, "inches")
  12700. },
  12701. {
  12702. name: "Normal",
  12703. height: math.unit(5, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Macro",
  12708. height: math.unit(60, "feet")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(4, "feet"),
  12717. weight: math.unit(50, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/kole/front.svg",
  12721. extra: 1423 / 1303,
  12722. bottom: 0.025
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(4, "feet"),
  12727. weight: math.unit(50, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/kole/back.svg",
  12731. extra: 1426 / 1280,
  12732. bottom: 0.02
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(4, "feet"),
  12740. default: true
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(2.5, "feet"),
  12749. weight: math.unit(32, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/rufran/front.svg",
  12753. extra: 1313/885,
  12754. bottom: 94/1407
  12755. }
  12756. },
  12757. side: {
  12758. height: math.unit(2.5, "feet"),
  12759. weight: math.unit(32, "lb"),
  12760. name: "Side",
  12761. image: {
  12762. source: "./media/characters/rufran/side.svg",
  12763. extra: 1109/852,
  12764. bottom: 118/1227
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(2.5, "feet"),
  12769. weight: math.unit(32, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/rufran/back.svg",
  12773. extra: 1280/878,
  12774. bottom: 131/1411
  12775. }
  12776. },
  12777. mouth: {
  12778. height: math.unit(1.13, "feet"),
  12779. name: "Mouth",
  12780. image: {
  12781. source: "./media/characters/rufran/mouth.svg"
  12782. }
  12783. },
  12784. foot: {
  12785. height: math.unit(1.33, "feet"),
  12786. name: "Foot",
  12787. image: {
  12788. source: "./media/characters/rufran/foot.svg"
  12789. }
  12790. },
  12791. koboldFront: {
  12792. height: math.unit(2 + 6 / 12, "feet"),
  12793. weight: math.unit(20, "lb"),
  12794. name: "Front (Kobold)",
  12795. image: {
  12796. source: "./media/characters/rufran/kobold-front.svg",
  12797. extra: 2041 / 1839,
  12798. bottom: 0.055
  12799. }
  12800. },
  12801. koboldBack: {
  12802. height: math.unit(2 + 6 / 12, "feet"),
  12803. weight: math.unit(20, "lb"),
  12804. name: "Back (Kobold)",
  12805. image: {
  12806. source: "./media/characters/rufran/kobold-back.svg",
  12807. extra: 2054 / 1839,
  12808. bottom: 0.01
  12809. }
  12810. },
  12811. koboldHand: {
  12812. height: math.unit(0.2166, "meters"),
  12813. name: "Hand (Kobold)",
  12814. image: {
  12815. source: "./media/characters/rufran/kobold-hand.svg"
  12816. }
  12817. },
  12818. koboldFoot: {
  12819. height: math.unit(0.185, "meters"),
  12820. name: "Foot (Kobold)",
  12821. image: {
  12822. source: "./media/characters/rufran/kobold-foot.svg"
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Micro",
  12829. height: math.unit(1, "inch")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(2 + 6 / 12, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Big",
  12838. height: math.unit(60, "feet")
  12839. },
  12840. {
  12841. name: "Macro",
  12842. height: math.unit(325, "feet")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(0.3, "meters"),
  12851. weight: math.unit(3.5, "kg"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/chip/front.svg",
  12855. extra: 748 / 674
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Micro",
  12862. height: math.unit(1, "inch"),
  12863. default: true
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12869. {
  12870. side: {
  12871. height: math.unit(2.3, "meters"),
  12872. weight: math.unit(3500, "lb"),
  12873. name: "Side",
  12874. image: {
  12875. source: "./media/characters/torvid/side.svg",
  12876. extra: 1972 / 722,
  12877. bottom: 0.035
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(2.3, "meters"),
  12885. default: true
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(2, "meters"),
  12894. weight: math.unit(150.5, "kg"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/susan/front.svg",
  12898. extra: 693 / 635,
  12899. bottom: 0.05
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(505, "miles"),
  12907. default: true
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/raindrops/front.svg",
  12920. extra: 2655 / 2461,
  12921. bottom: 49 / 2705
  12922. }
  12923. },
  12924. back: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Back",
  12928. image: {
  12929. source: "./media/characters/raindrops/back.svg",
  12930. extra: 2574 / 2400,
  12931. bottom: 65 / 2634
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Micro",
  12938. height: math.unit(6, "inches")
  12939. },
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(6 + 2 / 12, "feet")
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(131, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(15, "miles")
  12952. },
  12953. {
  12954. name: "Gigamacro",
  12955. height: math.unit(4000, "miles")
  12956. },
  12957. {
  12958. name: "Teramacro",
  12959. height: math.unit(315000, "miles")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(2.794, "meters"),
  12968. weight: math.unit(325, "kg"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/tezwa/front.svg",
  12972. extra: 2083 / 1906,
  12973. bottom: 0.031
  12974. }
  12975. },
  12976. foot: {
  12977. height: math.unit(0.687, "meters"),
  12978. name: "Foot",
  12979. image: {
  12980. source: "./media/characters/tezwa/foot.svg"
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Normal",
  12987. height: math.unit(9 + 2 / 12, "feet"),
  12988. default: true
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(58, "feet"),
  12997. weight: math.unit(89000, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/typhus/front.svg",
  13001. extra: 816 / 800,
  13002. bottom: 0.065
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Macro",
  13009. height: math.unit(58, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(12, "feet"),
  13019. weight: math.unit(6, "tonnes"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/lyra-von-wulf/front.svg",
  13023. extra: 1,
  13024. bottom: 0.10
  13025. }
  13026. },
  13027. frontMecha: {
  13028. height: math.unit(12, "feet"),
  13029. weight: math.unit(12, "tonnes"),
  13030. name: "Front (Mecha)",
  13031. image: {
  13032. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13033. extra: 1,
  13034. bottom: 0.042
  13035. }
  13036. },
  13037. maw: {
  13038. height: math.unit(2.2, "feet"),
  13039. name: "Maw",
  13040. image: {
  13041. source: "./media/characters/lyra-von-wulf/maw.svg"
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(12, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Classic",
  13053. height: math.unit(50, "feet")
  13054. },
  13055. {
  13056. name: "Macro",
  13057. height: math.unit(500, "feet")
  13058. },
  13059. {
  13060. name: "Megamacro",
  13061. height: math.unit(1, "mile")
  13062. },
  13063. {
  13064. name: "Gigamacro",
  13065. height: math.unit(400, "miles")
  13066. },
  13067. {
  13068. name: "Teramacro",
  13069. height: math.unit(22000, "miles")
  13070. },
  13071. {
  13072. name: "Solarmacro",
  13073. height: math.unit(8600000, "miles")
  13074. },
  13075. {
  13076. name: "Galactic",
  13077. height: math.unit(1057000, "lightyears")
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6 + 10 / 12, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/dixon/front.svg",
  13090. extra: 3361 / 3209,
  13091. bottom: 0.01
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(6 + 10 / 12, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Big",
  13103. height: math.unit(12, "meters")
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(500, "meters")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(2, "km")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(185, "cm"),
  13120. weight: math.unit(68, "kg"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/kauko/front.svg",
  13124. extra: 1455 / 1421,
  13125. bottom: 0.03
  13126. }
  13127. },
  13128. back: {
  13129. height: math.unit(185, "cm"),
  13130. weight: math.unit(68, "kg"),
  13131. name: "Back",
  13132. image: {
  13133. source: "./media/characters/kauko/back.svg",
  13134. extra: 1455 / 1421,
  13135. bottom: 0.004
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(185, "cm"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "kg"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/varg/front.svg",
  13156. extra: 1108 / 1018,
  13157. bottom: 0.0375
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(5, "meters")
  13165. },
  13166. {
  13167. name: "Macro",
  13168. height: math.unit(200, "meters")
  13169. },
  13170. {
  13171. name: "Megamacro",
  13172. height: math.unit(20, "kilometers")
  13173. },
  13174. {
  13175. name: "True Size",
  13176. height: math.unit(211, "km"),
  13177. default: true
  13178. },
  13179. {
  13180. name: "Gigamacro",
  13181. height: math.unit(1000, "km")
  13182. },
  13183. {
  13184. name: "Gigamacro+",
  13185. height: math.unit(8000, "km")
  13186. },
  13187. {
  13188. name: "Teramacro",
  13189. height: math.unit(1000000, "km")
  13190. },
  13191. ]
  13192. ))
  13193. characterMakers.push(() => makeCharacter(
  13194. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13195. {
  13196. front: {
  13197. height: math.unit(7 + 7 / 12, "feet"),
  13198. weight: math.unit(267, "lb"),
  13199. name: "Front",
  13200. image: {
  13201. source: "./media/characters/dayza/front.svg",
  13202. extra: 1262 / 1200,
  13203. bottom: 0.035
  13204. }
  13205. },
  13206. side: {
  13207. height: math.unit(7 + 7 / 12, "feet"),
  13208. weight: math.unit(267, "lb"),
  13209. name: "Side",
  13210. image: {
  13211. source: "./media/characters/dayza/side.svg",
  13212. extra: 1295 / 1245,
  13213. bottom: 0.05
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(7 + 7 / 12, "feet"),
  13218. weight: math.unit(267, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/dayza/back.svg",
  13222. extra: 1241 / 1170
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(7 + 7 / 12, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Macro",
  13234. height: math.unit(155, "feet")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(6 + 5 / 12, "feet"),
  13243. weight: math.unit(160, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/xanthos/front.svg",
  13247. extra: 1,
  13248. bottom: 0.04
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6 + 5 / 12, "feet"),
  13253. weight: math.unit(160, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/xanthos/back.svg",
  13257. extra: 1,
  13258. bottom: 0.03
  13259. }
  13260. },
  13261. hand: {
  13262. height: math.unit(0.928, "feet"),
  13263. name: "Hand",
  13264. image: {
  13265. source: "./media/characters/xanthos/hand.svg"
  13266. }
  13267. },
  13268. foot: {
  13269. height: math.unit(1.286, "feet"),
  13270. name: "Foot",
  13271. image: {
  13272. source: "./media/characters/xanthos/foot.svg"
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(6 + 5 / 12, "feet"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Normal+",
  13284. height: math.unit(6, "meters")
  13285. },
  13286. {
  13287. name: "Macro",
  13288. height: math.unit(40, "feet")
  13289. },
  13290. {
  13291. name: "Macro+",
  13292. height: math.unit(200, "meters")
  13293. },
  13294. {
  13295. name: "Megamacro",
  13296. height: math.unit(20, "km")
  13297. },
  13298. {
  13299. name: "Megamacro+",
  13300. height: math.unit(100, "km")
  13301. },
  13302. {
  13303. name: "Gigamacro",
  13304. height: math.unit(200, "megameters")
  13305. },
  13306. {
  13307. name: "Gigamacro+",
  13308. height: math.unit(1.5, "gigameters")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6 + 3 / 12, "feet"),
  13317. weight: math.unit(215, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/grynn/front.svg",
  13321. extra: 4627 / 4209,
  13322. bottom: 0.047
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Micro",
  13329. height: math.unit(6, "inches")
  13330. },
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(6 + 3 / 12, "feet"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Big",
  13338. height: math.unit(104, "feet")
  13339. },
  13340. {
  13341. name: "Macro",
  13342. height: math.unit(944, "feet")
  13343. },
  13344. {
  13345. name: "Macro+",
  13346. height: math.unit(9480, "feet")
  13347. },
  13348. {
  13349. name: "Megamacro",
  13350. height: math.unit(78752, "feet")
  13351. },
  13352. {
  13353. name: "Megamacro+",
  13354. height: math.unit(630128, "feet")
  13355. },
  13356. {
  13357. name: "Megamacro++",
  13358. height: math.unit(3150695, "feet")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(7 + 5 / 12, "feet"),
  13367. weight: math.unit(450, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/mocha-aura/front.svg",
  13371. extra: 1907 / 1817,
  13372. bottom: 0.04
  13373. }
  13374. },
  13375. back: {
  13376. height: math.unit(7 + 5 / 12, "feet"),
  13377. weight: math.unit(450, "lb"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/mocha-aura/back.svg",
  13381. extra: 1900 / 1825,
  13382. bottom: 0.045
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Nano",
  13389. height: math.unit(1, "nm")
  13390. },
  13391. {
  13392. name: "Megamicro",
  13393. height: math.unit(1, "mm")
  13394. },
  13395. {
  13396. name: "Micro",
  13397. height: math.unit(3, "inches")
  13398. },
  13399. {
  13400. name: "Normal",
  13401. height: math.unit(7 + 5 / 12, "feet"),
  13402. default: true
  13403. },
  13404. {
  13405. name: "Macro",
  13406. height: math.unit(30, "feet")
  13407. },
  13408. {
  13409. name: "Megamacro",
  13410. height: math.unit(3500, "feet")
  13411. },
  13412. {
  13413. name: "Teramacro",
  13414. height: math.unit(500000, "miles")
  13415. },
  13416. {
  13417. name: "Petamacro",
  13418. height: math.unit(50000000000000000, "parsecs")
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(150, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/ilisha-devya/front.svg",
  13431. extra: 1053/1049,
  13432. bottom: 270/1323
  13433. }
  13434. },
  13435. back: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Back",
  13439. image: {
  13440. source: "./media/characters/ilisha-devya/back.svg",
  13441. extra: 1131/1128,
  13442. bottom: 39/1170
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Macro",
  13449. height: math.unit(500, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Megamacro",
  13454. height: math.unit(10, "miles")
  13455. },
  13456. {
  13457. name: "Gigamacro",
  13458. height: math.unit(100000, "miles")
  13459. },
  13460. {
  13461. name: "Examacro",
  13462. height: math.unit(1e9, "lightyears")
  13463. },
  13464. {
  13465. name: "Omniversal",
  13466. height: math.unit(1e33, "lightyears")
  13467. },
  13468. {
  13469. name: "Beyond Infinite",
  13470. height: math.unit(1e100, "lightyears")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13476. {
  13477. Side: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Side",
  13481. image: {
  13482. source: "./media/characters/mira/side.svg",
  13483. extra: 900 / 799,
  13484. bottom: 0.02
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Human Size",
  13491. height: math.unit(6, "feet")
  13492. },
  13493. {
  13494. name: "Macro",
  13495. height: math.unit(100, "feet"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Megamacro",
  13500. height: math.unit(10, "miles")
  13501. },
  13502. {
  13503. name: "Gigamacro",
  13504. height: math.unit(25000, "miles")
  13505. },
  13506. {
  13507. name: "Teramacro",
  13508. height: math.unit(300, "AU")
  13509. },
  13510. {
  13511. name: "Full Size",
  13512. height: math.unit(4.5e10, "lightyears")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/holly/front.svg",
  13525. extra: 639 / 606
  13526. }
  13527. },
  13528. back: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(150, "lb"),
  13531. name: "Back",
  13532. image: {
  13533. source: "./media/characters/holly/back.svg",
  13534. extra: 623 / 598
  13535. }
  13536. },
  13537. frontWorking: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Front (Working)",
  13541. image: {
  13542. source: "./media/characters/holly/front-working.svg",
  13543. extra: 607 / 577,
  13544. bottom: 0.048
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Normal",
  13551. height: math.unit(12 + 3 / 12, "feet"),
  13552. default: true
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/porter/front.svg",
  13565. extra: 1,
  13566. bottom: 0.01
  13567. }
  13568. },
  13569. frontRobes: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Front (Robes)",
  13573. image: {
  13574. source: "./media/characters/porter/front-robes.svg",
  13575. extra: 1.01,
  13576. bottom: 0.01
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Normal",
  13583. height: math.unit(11 + 9 / 12, "feet"),
  13584. default: true
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13590. {
  13591. legendary: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Legendary",
  13595. image: {
  13596. source: "./media/characters/lucy/legendary.svg",
  13597. extra: 1355 / 1100,
  13598. bottom: 0.045
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Legendary",
  13605. height: math.unit(86882 * 2, "miles"),
  13606. default: true
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/drusilla/front.svg",
  13619. extra: 678 / 635,
  13620. bottom: 0.03
  13621. }
  13622. },
  13623. back: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Back",
  13627. image: {
  13628. source: "./media/characters/drusilla/back.svg",
  13629. extra: 678 / 635,
  13630. bottom: 0.005
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(100, "feet")
  13638. },
  13639. {
  13640. name: "Canon Height",
  13641. height: math.unit(2000, "feet"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(180, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/renard-thatch/front.svg",
  13655. extra: 2411 / 2275,
  13656. bottom: 0.01
  13657. }
  13658. },
  13659. frontPosing: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(180, "lb"),
  13662. name: "Front (Posing)",
  13663. image: {
  13664. source: "./media/characters/renard-thatch/front-posing.svg",
  13665. extra: 2381 / 2261,
  13666. bottom: 0.01
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(180, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/renard-thatch/back.svg",
  13675. extra: 2428 / 2288
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(3, "inches")
  13683. },
  13684. {
  13685. name: "Default",
  13686. height: math.unit(6, "feet"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(75, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(1450, "feet"),
  13700. weight: math.unit(1.21e6, "tons"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/sekvra/front.svg",
  13704. extra: 1193/1190,
  13705. bottom: 78/1271
  13706. }
  13707. },
  13708. side: {
  13709. height: math.unit(1450, "feet"),
  13710. weight: math.unit(1.21e6, "tons"),
  13711. name: "Side",
  13712. image: {
  13713. source: "./media/characters/sekvra/side.svg",
  13714. extra: 1193/1190,
  13715. bottom: 52/1245
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(1450, "feet"),
  13720. weight: math.unit(1.21e6, "tons"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/sekvra/back.svg",
  13724. extra: 1219/1216,
  13725. bottom: 21/1240
  13726. }
  13727. },
  13728. frontClothed: {
  13729. height: math.unit(1450, "feet"),
  13730. weight: math.unit(1.21e6, "tons"),
  13731. name: "Front (Clothed)",
  13732. image: {
  13733. source: "./media/characters/sekvra/front-clothed.svg",
  13734. extra: 1192/1189,
  13735. bottom: 79/1271
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Macro",
  13742. height: math.unit(1450, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(15000, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/carmine/front.svg",
  13760. extra: 1,
  13761. bottom: 0.035
  13762. }
  13763. },
  13764. frontArmor: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Front (Armor)",
  13768. image: {
  13769. source: "./media/characters/carmine/front-armor.svg",
  13770. extra: 1,
  13771. bottom: 0.035
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Large",
  13778. height: math.unit(1, "mile")
  13779. },
  13780. {
  13781. name: "Huge",
  13782. height: math.unit(40, "miles"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Colossal",
  13787. height: math.unit(2500, "miles")
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(6, "feet"),
  13796. weight: math.unit(150, "lb"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/elyssia/front.svg",
  13800. extra: 2201 / 2035,
  13801. bottom: 0.05
  13802. }
  13803. },
  13804. frontClothed: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(150, "lb"),
  13807. name: "Front (Clothed)",
  13808. image: {
  13809. source: "./media/characters/elyssia/front-clothed.svg",
  13810. extra: 2201 / 2035,
  13811. bottom: 0.05
  13812. }
  13813. },
  13814. back: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(150, "lb"),
  13817. name: "Back",
  13818. image: {
  13819. source: "./media/characters/elyssia/back.svg",
  13820. extra: 2201 / 2035,
  13821. bottom: 0.013
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Smaller",
  13828. height: math.unit(150, "feet")
  13829. },
  13830. {
  13831. name: "Standard",
  13832. height: math.unit(1400, "feet"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Distracted",
  13837. height: math.unit(15000, "feet")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(7 + 4/12, "feet"),
  13846. weight: math.unit(690, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/geno-maxwell/front.svg",
  13850. extra: 984/856,
  13851. bottom: 87/1071
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(7 + 4/12, "feet"),
  13856. weight: math.unit(690, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/geno-maxwell/back.svg",
  13860. extra: 981/854,
  13861. bottom: 57/1038
  13862. }
  13863. },
  13864. frontCostume: {
  13865. height: math.unit(7 + 4/12, "feet"),
  13866. weight: math.unit(690, "lb"),
  13867. name: "Front (Costume)",
  13868. image: {
  13869. source: "./media/characters/geno-maxwell/front-costume.svg",
  13870. extra: 984/856,
  13871. bottom: 87/1071
  13872. }
  13873. },
  13874. backcostume: {
  13875. height: math.unit(7 + 4/12, "feet"),
  13876. weight: math.unit(690, "lb"),
  13877. name: "Back (Costume)",
  13878. image: {
  13879. source: "./media/characters/geno-maxwell/back-costume.svg",
  13880. extra: 981/854,
  13881. bottom: 57/1038
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Micro",
  13888. height: math.unit(3, "inches")
  13889. },
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(7 + 4 / 12, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(220, "feet")
  13898. },
  13899. {
  13900. name: "Megamacro",
  13901. height: math.unit(11, "miles")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(7 + 4/12, "feet"),
  13910. weight: math.unit(750, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/regena-maxwell/front.svg",
  13914. extra: 984/856,
  13915. bottom: 87/1071
  13916. }
  13917. },
  13918. back: {
  13919. height: math.unit(7 + 4/12, "feet"),
  13920. weight: math.unit(750, "lb"),
  13921. name: "Back",
  13922. image: {
  13923. source: "./media/characters/regena-maxwell/back.svg",
  13924. extra: 981/854,
  13925. bottom: 57/1038
  13926. }
  13927. },
  13928. frontCostume: {
  13929. height: math.unit(7 + 4/12, "feet"),
  13930. weight: math.unit(750, "lb"),
  13931. name: "Front (Costume)",
  13932. image: {
  13933. source: "./media/characters/regena-maxwell/front-costume.svg",
  13934. extra: 984/856,
  13935. bottom: 87/1071
  13936. }
  13937. },
  13938. backcostume: {
  13939. height: math.unit(7 + 4/12, "feet"),
  13940. weight: math.unit(750, "lb"),
  13941. name: "Back (Costume)",
  13942. image: {
  13943. source: "./media/characters/regena-maxwell/back-costume.svg",
  13944. extra: 981/854,
  13945. bottom: 57/1038
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(7 + 4 / 12, "feet"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(220, "feet")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(11, "miles")
  13962. },
  13963. ]
  13964. ))
  13965. characterMakers.push(() => makeCharacter(
  13966. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13967. {
  13968. front: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Front",
  13972. image: {
  13973. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13974. extra: 860 / 690,
  13975. bottom: 0.03
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(1.7, "meters"),
  13983. default: true
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(150, "lb"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/quilly/front.svg",
  13996. extra: 890 / 776
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Gigamacro",
  14003. height: math.unit(404090, "miles"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(7 + 8 / 12, "feet"),
  14013. weight: math.unit(350, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/tempest/front.svg",
  14017. extra: 1175 / 1086,
  14018. bottom: 0.02
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Normal",
  14025. height: math.unit(7 + 8 / 12, "feet"),
  14026. default: true
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14032. {
  14033. side: {
  14034. height: math.unit(4 + 5 / 12, "feet"),
  14035. weight: math.unit(80, "lb"),
  14036. name: "Side",
  14037. image: {
  14038. source: "./media/characters/rodger/side.svg",
  14039. extra: 1235 / 1118
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Micro",
  14046. height: math.unit(1, "inch")
  14047. },
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(4 + 5 / 12, "feet"),
  14051. default: true
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(120, "feet")
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(6, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/danyel/front.svg",
  14068. extra: 1185 / 1123,
  14069. bottom: 0.05
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Shrunken",
  14076. height: math.unit(0.5, "mm")
  14077. },
  14078. {
  14079. name: "Micro",
  14080. height: math.unit(1, "mm"),
  14081. default: true
  14082. },
  14083. {
  14084. name: "Upsized",
  14085. height: math.unit(5 + 5 / 12, "feet")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(5 + 6 / 12, "feet"),
  14094. weight: math.unit(200, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/vivian-bijoux/front.svg",
  14098. extra: 1217/1209,
  14099. bottom: 76/1293
  14100. }
  14101. },
  14102. back: {
  14103. height: math.unit(5 + 6 / 12, "feet"),
  14104. weight: math.unit(200, "lb"),
  14105. name: "Back",
  14106. image: {
  14107. source: "./media/characters/vivian-bijoux/back.svg",
  14108. extra: 1214/1208,
  14109. bottom: 51/1265
  14110. }
  14111. },
  14112. dressed: {
  14113. height: math.unit(5 + 6 / 12, "feet"),
  14114. weight: math.unit(200, "lb"),
  14115. name: "Dressed",
  14116. image: {
  14117. source: "./media/characters/vivian-bijoux/dressed.svg",
  14118. extra: 1217/1209,
  14119. bottom: 76/1293
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(5 + 6 / 12, "feet"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Bad Dream",
  14131. height: math.unit(500, "feet")
  14132. },
  14133. {
  14134. name: "Nightmare",
  14135. height: math.unit(500, "miles")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(6 + 1 / 12, "feet"),
  14144. weight: math.unit(260, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/zeta/front.svg",
  14148. extra: 1968 / 1889,
  14149. bottom: 0.06
  14150. }
  14151. },
  14152. back: {
  14153. height: math.unit(6 + 1 / 12, "feet"),
  14154. weight: math.unit(260, "lb"),
  14155. name: "Back",
  14156. image: {
  14157. source: "./media/characters/zeta/back.svg",
  14158. extra: 1944 / 1858,
  14159. bottom: 0.03
  14160. }
  14161. },
  14162. hand: {
  14163. height: math.unit(1.112, "feet"),
  14164. name: "Hand",
  14165. image: {
  14166. source: "./media/characters/zeta/hand.svg"
  14167. }
  14168. },
  14169. foot: {
  14170. height: math.unit(1.48, "feet"),
  14171. name: "Foot",
  14172. image: {
  14173. source: "./media/characters/zeta/foot.svg"
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Micro",
  14180. height: math.unit(6, "inches")
  14181. },
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(6 + 1 / 12, "feet"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(20, "feet")
  14190. },
  14191. ]
  14192. ))
  14193. characterMakers.push(() => makeCharacter(
  14194. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14195. {
  14196. front: {
  14197. height: math.unit(6, "feet"),
  14198. weight: math.unit(150, "lb"),
  14199. name: "Front",
  14200. image: {
  14201. source: "./media/characters/jamie-larsen/front.svg",
  14202. extra: 962 / 933,
  14203. bottom: 0.02
  14204. }
  14205. },
  14206. back: {
  14207. height: math.unit(6, "feet"),
  14208. weight: math.unit(150, "lb"),
  14209. name: "Back",
  14210. image: {
  14211. source: "./media/characters/jamie-larsen/back.svg",
  14212. extra: 997 / 946
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Macro",
  14219. height: math.unit(28 + 7 / 12, "feet"),
  14220. default: true
  14221. },
  14222. {
  14223. name: "Macro+",
  14224. height: math.unit(180, "feet")
  14225. },
  14226. {
  14227. name: "Megamacro",
  14228. height: math.unit(10, "miles")
  14229. },
  14230. {
  14231. name: "Gigamacro",
  14232. height: math.unit(200000, "miles")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(120, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/vance/front.svg",
  14245. extra: 1980 / 1890,
  14246. bottom: 0.09
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(120, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/vance/back.svg",
  14255. extra: 2081 / 1994,
  14256. bottom: 0.014
  14257. }
  14258. },
  14259. hand: {
  14260. height: math.unit(0.88, "feet"),
  14261. name: "Hand",
  14262. image: {
  14263. source: "./media/characters/vance/hand.svg"
  14264. }
  14265. },
  14266. foot: {
  14267. height: math.unit(0.64, "feet"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/vance/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Small",
  14277. height: math.unit(90, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(100, "meters")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(15, "miles")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(180, "lb"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/xochitl/front.svg",
  14299. extra: 2297 / 2261,
  14300. bottom: 0.065
  14301. }
  14302. },
  14303. back: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(180, "lb"),
  14306. name: "Back",
  14307. image: {
  14308. source: "./media/characters/xochitl/back.svg",
  14309. extra: 2386 / 2354,
  14310. bottom: 0.01
  14311. }
  14312. },
  14313. foot: {
  14314. height: math.unit(6 / 5 * 1.15, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Foot",
  14317. image: {
  14318. source: "./media/characters/xochitl/foot.svg"
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Macro",
  14325. height: math.unit(80, "feet")
  14326. },
  14327. {
  14328. name: "Macro+",
  14329. height: math.unit(400, "feet"),
  14330. default: true
  14331. },
  14332. {
  14333. name: "Gigamacro",
  14334. height: math.unit(80000, "miles")
  14335. },
  14336. {
  14337. name: "Gigamacro+",
  14338. height: math.unit(400000, "miles")
  14339. },
  14340. {
  14341. name: "Teramacro",
  14342. height: math.unit(300, "AU")
  14343. },
  14344. ]
  14345. ))
  14346. characterMakers.push(() => makeCharacter(
  14347. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14348. {
  14349. front: {
  14350. height: math.unit(6, "feet"),
  14351. weight: math.unit(150, "lb"),
  14352. name: "Front",
  14353. image: {
  14354. source: "./media/characters/vincent/front.svg",
  14355. extra: 1130 / 1080,
  14356. bottom: 0.055
  14357. }
  14358. },
  14359. beak: {
  14360. height: math.unit(6 * 0.1, "feet"),
  14361. name: "Beak",
  14362. image: {
  14363. source: "./media/characters/vincent/beak.svg"
  14364. }
  14365. },
  14366. hand: {
  14367. height: math.unit(6 * 0.85, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Hand",
  14370. image: {
  14371. source: "./media/characters/vincent/hand.svg"
  14372. }
  14373. },
  14374. foot: {
  14375. height: math.unit(6 * 0.19, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Foot",
  14378. image: {
  14379. source: "./media/characters/vincent/foot.svg"
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Base",
  14386. height: math.unit(6 + 5 / 12, "feet"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(300, "feet")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(2, "miles")
  14396. },
  14397. {
  14398. name: "Gigamacro",
  14399. height: math.unit(1000, "miles")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(2, "meters"),
  14408. weight: math.unit(500, "kg"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/coatl/front.svg",
  14412. extra: 3948 / 3500,
  14413. bottom: 0.082
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(4, "meters")
  14421. },
  14422. {
  14423. name: "Macro",
  14424. height: math.unit(100, "meters"),
  14425. default: true
  14426. },
  14427. {
  14428. name: "Macro+",
  14429. height: math.unit(300, "meters")
  14430. },
  14431. {
  14432. name: "Megamacro",
  14433. height: math.unit(3, "gigameters")
  14434. },
  14435. {
  14436. name: "Megamacro+",
  14437. height: math.unit(300, "terameters")
  14438. },
  14439. {
  14440. name: "Megamacro++",
  14441. height: math.unit(3, "lightyears")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(50, "kg"),
  14451. name: "front",
  14452. image: {
  14453. source: "./media/characters/shiroryu/front.svg",
  14454. extra: 1990 / 1935
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Mortal Mingling",
  14461. height: math.unit(3, "meters")
  14462. },
  14463. {
  14464. name: "Kaiju-ish",
  14465. height: math.unit(250, "meters")
  14466. },
  14467. {
  14468. name: "Somewhat Godly",
  14469. height: math.unit(400, "km"),
  14470. default: true
  14471. },
  14472. {
  14473. name: "Planetary",
  14474. height: math.unit(300, "megameters")
  14475. },
  14476. {
  14477. name: "Galaxy-dwarfing",
  14478. height: math.unit(450, "kiloparsecs")
  14479. },
  14480. {
  14481. name: "Universe Eater",
  14482. height: math.unit(150, "gigaparsecs")
  14483. },
  14484. {
  14485. name: "Almost Immeasurable",
  14486. height: math.unit(1.3e266, "yottaparsecs")
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/umeko/front.svg",
  14499. extra: 1,
  14500. bottom: 0.019
  14501. }
  14502. },
  14503. frontArmored: {
  14504. height: math.unit(6, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Front (Armored)",
  14507. image: {
  14508. source: "./media/characters/umeko/front-armored.svg",
  14509. extra: 1,
  14510. bottom: 0.021
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(220, "feet"),
  14518. default: true
  14519. },
  14520. {
  14521. name: "Guardian Dragon",
  14522. height: math.unit(50, "miles")
  14523. },
  14524. {
  14525. name: "Cosmic",
  14526. height: math.unit(800000, "miles")
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(6, "feet"),
  14535. weight: math.unit(150, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/cassidy/front.svg",
  14539. extra: 810/808,
  14540. bottom: 41/851
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Canon Height",
  14547. height: math.unit(120, "feet"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Macro+",
  14552. height: math.unit(400, "feet")
  14553. },
  14554. {
  14555. name: "Macro++",
  14556. height: math.unit(4000, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(3, "miles")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/isaac/front.svg",
  14573. extra: 896 / 815,
  14574. bottom: 0.11
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Human Size",
  14581. height: math.unit(8, "feet"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Macro",
  14586. height: math.unit(400, "feet")
  14587. },
  14588. {
  14589. name: "Megamacro",
  14590. height: math.unit(50, "miles")
  14591. },
  14592. {
  14593. name: "Canon Height",
  14594. height: math.unit(200, "AU")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(72, "kg"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/sleekit/front.svg",
  14607. extra: 4693 / 4487,
  14608. bottom: 0.012
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Minimum Height",
  14615. height: math.unit(10, "meters")
  14616. },
  14617. {
  14618. name: "Smaller",
  14619. height: math.unit(25, "meters")
  14620. },
  14621. {
  14622. name: "Larger",
  14623. height: math.unit(38, "meters"),
  14624. default: true
  14625. },
  14626. {
  14627. name: "Maximum height",
  14628. height: math.unit(100, "meters")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/nillia/front.svg",
  14641. extra: 2195 / 2037,
  14642. bottom: 0.005
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/nillia/back.svg",
  14651. extra: 2195 / 2037,
  14652. bottom: 0.005
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Canon Height",
  14659. height: math.unit(489, "feet"),
  14660. default: true
  14661. }
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(150, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/mesmyriza/front.svg",
  14673. extra: 2067 / 1784,
  14674. bottom: 0.035
  14675. }
  14676. },
  14677. foot: {
  14678. height: math.unit(6 / (250 / 35), "feet"),
  14679. name: "Foot",
  14680. image: {
  14681. source: "./media/characters/mesmyriza/foot.svg"
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Macro",
  14688. height: math.unit(457, "meters"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(8, "megameters")
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(250, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/saudade/front.svg",
  14706. extra: 1172 / 1139,
  14707. bottom: 0.035
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Micro",
  14714. height: math.unit(3, "inches")
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(6, "feet"),
  14719. default: true
  14720. },
  14721. {
  14722. name: "Macro",
  14723. height: math.unit(50, "feet")
  14724. },
  14725. {
  14726. name: "Megamacro",
  14727. height: math.unit(2800, "feet")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(5 + 4 / 12, "feet"),
  14736. weight: math.unit(100, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/keireer/front.svg",
  14740. extra: 716 / 666,
  14741. bottom: 0.05
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Normal",
  14748. height: math.unit(5 + 4 / 12, "feet"),
  14749. default: true
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(90, "kg"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/mirja/front.svg",
  14762. extra: 1789 / 1683,
  14763. bottom: 0.05
  14764. }
  14765. },
  14766. frontDressed: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(90, "lb"),
  14769. name: "Front (Dressed)",
  14770. image: {
  14771. source: "./media/characters/mirja/front-dressed.svg",
  14772. extra: 1789 / 1683,
  14773. bottom: 0.05
  14774. }
  14775. },
  14776. back: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(90, "lb"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/mirja/back.svg",
  14782. extra: 953 / 917,
  14783. bottom: 0.017
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "\"Incognito\"",
  14790. height: math.unit(3, "meters")
  14791. },
  14792. {
  14793. name: "Strolling Size",
  14794. height: math.unit(15, "km")
  14795. },
  14796. {
  14797. name: "Larger Strolling Size",
  14798. height: math.unit(400, "km")
  14799. },
  14800. {
  14801. name: "Preferred Size",
  14802. height: math.unit(5000, "km")
  14803. },
  14804. {
  14805. name: "True Size",
  14806. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(15, "feet"),
  14816. weight: math.unit(880, "kg"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/nightraver/front.svg",
  14820. extra: 2444 / 2160,
  14821. bottom: 0.027
  14822. }
  14823. },
  14824. back: {
  14825. height: math.unit(15, "feet"),
  14826. weight: math.unit(880, "kg"),
  14827. name: "Back",
  14828. image: {
  14829. source: "./media/characters/nightraver/back.svg",
  14830. extra: 2309 / 2180,
  14831. bottom: 0.005
  14832. }
  14833. },
  14834. sole: {
  14835. height: math.unit(2.878, "feet"),
  14836. name: "Sole",
  14837. image: {
  14838. source: "./media/characters/nightraver/sole.svg"
  14839. }
  14840. },
  14841. foot: {
  14842. height: math.unit(2.285, "feet"),
  14843. name: "Foot",
  14844. image: {
  14845. source: "./media/characters/nightraver/foot.svg"
  14846. }
  14847. },
  14848. maw: {
  14849. height: math.unit(2.67, "feet"),
  14850. name: "Maw",
  14851. image: {
  14852. source: "./media/characters/nightraver/maw.svg"
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Micro",
  14859. height: math.unit(1, "cm")
  14860. },
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(15, "feet"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Macro",
  14868. height: math.unit(300, "feet")
  14869. },
  14870. {
  14871. name: "Megamacro",
  14872. height: math.unit(300, "miles")
  14873. },
  14874. {
  14875. name: "Gigamacro",
  14876. height: math.unit(10000, "miles")
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14882. {
  14883. side: {
  14884. height: math.unit(2, "inches"),
  14885. weight: math.unit(5, "grams"),
  14886. name: "Side",
  14887. image: {
  14888. source: "./media/characters/arc/side.svg"
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Micro",
  14895. height: math.unit(2, "inches"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(1.1938, "meters"),
  14905. weight: math.unit(54, "kg"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/nebula-shahar/front.svg",
  14909. extra: 1642 / 1436,
  14910. bottom: 0.06
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Megamicro",
  14917. height: math.unit(0.3, "mm")
  14918. },
  14919. {
  14920. name: "Micro",
  14921. height: math.unit(3, "cm")
  14922. },
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(138, "cm"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(30, "m")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(5.24, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/shayla/front.svg",
  14943. extra: 1512 / 1414,
  14944. bottom: 0.01
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(5.24, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/shayla/back.svg",
  14953. extra: 1512 / 1414
  14954. }
  14955. },
  14956. hand: {
  14957. height: math.unit(0.7781496062992126, "feet"),
  14958. name: "Hand",
  14959. image: {
  14960. source: "./media/characters/shayla/hand.svg"
  14961. }
  14962. },
  14963. foot: {
  14964. height: math.unit(1.4206036745406823, "feet"),
  14965. name: "Foot",
  14966. image: {
  14967. source: "./media/characters/shayla/foot.svg"
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Micro",
  14974. height: math.unit(0.32, "feet")
  14975. },
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(5.24, "feet"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(492.12, "feet")
  14984. },
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(186.41, "miles")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(2.2, "m"),
  14996. weight: math.unit(120, "kg"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/pia-jr/front.svg",
  15000. extra: 1000 / 970,
  15001. bottom: 0.035
  15002. }
  15003. },
  15004. hand: {
  15005. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15006. name: "Hand",
  15007. image: {
  15008. source: "./media/characters/pia-jr/hand.svg"
  15009. }
  15010. },
  15011. paw: {
  15012. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15013. name: "Paw",
  15014. image: {
  15015. source: "./media/characters/pia-jr/paw.svg"
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Micro",
  15022. height: math.unit(1.2, "cm")
  15023. },
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(2.2, "m"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Macro",
  15031. height: math.unit(180, "m")
  15032. },
  15033. {
  15034. name: "Megamacro",
  15035. height: math.unit(420, "km")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(2, "m"),
  15044. weight: math.unit(115, "kg"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/pia-sr/front.svg",
  15048. extra: 760 / 730,
  15049. bottom: 0.015
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(2, "m"),
  15054. weight: math.unit(115, "kg"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/pia-sr/back.svg",
  15058. extra: 760 / 730,
  15059. bottom: 0.01
  15060. }
  15061. },
  15062. hand: {
  15063. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15064. name: "Hand",
  15065. image: {
  15066. source: "./media/characters/pia-sr/hand.svg"
  15067. }
  15068. },
  15069. foot: {
  15070. height: math.unit(1.83, "feet"),
  15071. name: "Foot",
  15072. image: {
  15073. source: "./media/characters/pia-sr/foot.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Micro",
  15080. height: math.unit(88, "mm")
  15081. },
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(2, "m"),
  15085. default: true
  15086. },
  15087. {
  15088. name: "Macro",
  15089. height: math.unit(200, "m")
  15090. },
  15091. {
  15092. name: "Megamacro",
  15093. height: math.unit(420, "km")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(8 + 2 / 12, "feet"),
  15102. weight: math.unit(300, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/kibibyte/front.svg",
  15106. extra: 2221 / 2098,
  15107. bottom: 0.04
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(8 + 2 / 12, "feet"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Socialable Macro",
  15119. height: math.unit(50, "feet")
  15120. },
  15121. {
  15122. name: "Macro",
  15123. height: math.unit(300, "feet")
  15124. },
  15125. {
  15126. name: "Megamacro",
  15127. height: math.unit(500, "miles")
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15133. {
  15134. front: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(150, "lb"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/felix/front.svg",
  15140. extra: 762 / 722,
  15141. bottom: 0.02
  15142. }
  15143. },
  15144. frontClothed: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Front (Clothed)",
  15148. image: {
  15149. source: "./media/characters/felix/front-clothed.svg",
  15150. extra: 762 / 722,
  15151. bottom: 0.02
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(6 + 8 / 12, "feet"),
  15159. default: true
  15160. },
  15161. {
  15162. name: "Macro",
  15163. height: math.unit(2600, "feet")
  15164. },
  15165. {
  15166. name: "Megamacro",
  15167. height: math.unit(450, "miles")
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(6 + 1 / 12, "feet"),
  15176. weight: math.unit(250, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/tobo/front.svg",
  15180. extra: 608 / 586,
  15181. bottom: 0.023
  15182. }
  15183. },
  15184. back: {
  15185. height: math.unit(6 + 1 / 12, "feet"),
  15186. weight: math.unit(250, "lb"),
  15187. name: "Back",
  15188. image: {
  15189. source: "./media/characters/tobo/back.svg",
  15190. extra: 608 / 586
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Nano",
  15197. height: math.unit(2, "nm")
  15198. },
  15199. {
  15200. name: "Megamicro",
  15201. height: math.unit(0.1, "mm")
  15202. },
  15203. {
  15204. name: "Micro",
  15205. height: math.unit(1, "inch"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Human-sized",
  15210. height: math.unit(6 + 1 / 12, "feet")
  15211. },
  15212. {
  15213. name: "Macro",
  15214. height: math.unit(250, "feet")
  15215. },
  15216. {
  15217. name: "Megamacro",
  15218. height: math.unit(75, "miles")
  15219. },
  15220. {
  15221. name: "Texas-sized",
  15222. height: math.unit(750, "miles")
  15223. },
  15224. {
  15225. name: "Teramacro",
  15226. height: math.unit(50000, "miles")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(269, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/danny-kapowsky/front.svg",
  15239. extra: 766 / 736,
  15240. bottom: 0.044
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(269, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/danny-kapowsky/back.svg",
  15249. extra: 797 / 760,
  15250. bottom: 0.025
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Macro",
  15257. height: math.unit(150, "feet"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Macro+",
  15262. height: math.unit(200, "feet")
  15263. },
  15264. {
  15265. name: "Macro++",
  15266. height: math.unit(300, "feet")
  15267. },
  15268. {
  15269. name: "Macro+++",
  15270. height: math.unit(400, "feet")
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15276. {
  15277. side: {
  15278. height: math.unit(6, "feet"),
  15279. weight: math.unit(170, "lb"),
  15280. name: "Side",
  15281. image: {
  15282. source: "./media/characters/finn/side.svg",
  15283. extra: 1953 / 1807,
  15284. bottom: 0.057
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Megamacro",
  15291. height: math.unit(14445, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(5 + 6 / 12, "feet"),
  15301. weight: math.unit(125, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/roy/front.svg",
  15305. extra: 1,
  15306. bottom: 0.11
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Micro",
  15313. height: math.unit(3, "inches"),
  15314. default: true
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 6 / 12, "feet")
  15319. },
  15320. {
  15321. name: "Lesser Macro",
  15322. height: math.unit(60, "feet")
  15323. },
  15324. {
  15325. name: "Greater Macro",
  15326. height: math.unit(120, "feet")
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(6, "feet"),
  15335. weight: math.unit(100, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/aevsivs/front.svg",
  15339. extra: 1,
  15340. bottom: 0.03
  15341. }
  15342. },
  15343. back: {
  15344. height: math.unit(6, "feet"),
  15345. weight: math.unit(100, "lb"),
  15346. name: "Back",
  15347. image: {
  15348. source: "./media/characters/aevsivs/back.svg"
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Micro",
  15355. height: math.unit(2, "inches"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(5, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(5 + 7 / 12, "feet"),
  15369. weight: math.unit(159, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/hildegard/front.svg",
  15373. extra: 289 / 269,
  15374. bottom: 7.63 / 297.8
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(5 + 7 / 12, "feet"),
  15379. weight: math.unit(159, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/hildegard/back.svg",
  15383. extra: 280 / 260,
  15384. bottom: 2.3 / 282
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(5 + 7 / 12, "feet"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15398. {
  15399. bernard: {
  15400. height: math.unit(2 + 7 / 12, "feet"),
  15401. weight: math.unit(66, "lb"),
  15402. name: "Bernard",
  15403. rename: true,
  15404. image: {
  15405. source: "./media/characters/bernard-wilder/bernard.svg",
  15406. extra: 192 / 128,
  15407. bottom: 0.05
  15408. }
  15409. },
  15410. wilder: {
  15411. height: math.unit(5 + 8 / 12, "feet"),
  15412. weight: math.unit(143, "lb"),
  15413. name: "Wilder",
  15414. rename: true,
  15415. image: {
  15416. source: "./media/characters/bernard-wilder/wilder.svg",
  15417. extra: 361 / 312,
  15418. bottom: 0.02
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(2 + 7 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15432. {
  15433. anthro: {
  15434. height: math.unit(6 + 1 / 12, "feet"),
  15435. weight: math.unit(155, "lb"),
  15436. name: "Anthro",
  15437. image: {
  15438. source: "./media/characters/hearth/anthro.svg",
  15439. extra: 1178/1136,
  15440. bottom: 28/1206
  15441. }
  15442. },
  15443. feral: {
  15444. height: math.unit(3.78, "feet"),
  15445. weight: math.unit(35, "kg"),
  15446. name: "Feral",
  15447. image: {
  15448. source: "./media/characters/hearth/feral.svg",
  15449. extra: 153 / 135,
  15450. bottom: 0.03
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(6 + 1 / 12, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(182, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/ingrid/front.svg",
  15471. extra: 294 / 268,
  15472. bottom: 0.027
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(6, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15486. {
  15487. eevee: {
  15488. height: math.unit(2 + 10 / 12, "feet"),
  15489. weight: math.unit(86, "lb"),
  15490. name: "Malgam",
  15491. image: {
  15492. source: "./media/characters/malgam/eevee.svg",
  15493. extra: 952/784,
  15494. bottom: 38/990
  15495. }
  15496. },
  15497. sylveon: {
  15498. height: math.unit(4, "feet"),
  15499. weight: math.unit(101, "lb"),
  15500. name: "Future Malgam",
  15501. rename: true,
  15502. image: {
  15503. source: "./media/characters/malgam/sylveon.svg",
  15504. extra: 371 / 325,
  15505. bottom: 0.015
  15506. }
  15507. },
  15508. gigantamax: {
  15509. height: math.unit(50, "feet"),
  15510. name: "Gigantamax Malgam",
  15511. rename: true,
  15512. image: {
  15513. source: "./media/characters/malgam/gigantamax.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(2 + 10 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(5 + 11 / 12, "feet"),
  15530. weight: math.unit(188, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/fleur/front.svg",
  15534. extra: 309 / 283,
  15535. bottom: 0.007
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(5 + 11 / 12, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(5 + 4 / 12, "feet"),
  15552. weight: math.unit(122, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/jude/front.svg",
  15556. extra: 288 / 273,
  15557. bottom: 0.03
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(5 + 4 / 12, "feet"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(5 + 11 / 12, "feet"),
  15574. weight: math.unit(190, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/seara/front.svg",
  15578. extra: 1,
  15579. bottom: 0.05
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(5 + 11 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(16 + 5 / 12, "feet"),
  15596. weight: math.unit(524, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/caspian-lugia/front.svg",
  15600. extra: 1,
  15601. bottom: 0.04
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(16 + 5 / 12, "feet"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(5 + 7 / 12, "feet"),
  15618. weight: math.unit(170, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/mika/front.svg",
  15622. extra: 1,
  15623. bottom: 0.016
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(5 + 7 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6 + 2 / 12, "feet"),
  15640. weight: math.unit(268, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/sol/front.svg",
  15644. extra: 247 / 231,
  15645. bottom: 0.05
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(6 + 2 / 12, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15659. {
  15660. buizel: {
  15661. height: math.unit(2 + 5 / 12, "feet"),
  15662. weight: math.unit(87, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/umiko/buizel.svg",
  15666. extra: 172 / 157,
  15667. bottom: 0.01
  15668. },
  15669. form: "buizel",
  15670. default: true
  15671. },
  15672. floatzel: {
  15673. height: math.unit(5 + 9 / 12, "feet"),
  15674. weight: math.unit(250, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/umiko/floatzel.svg",
  15678. extra: 1076/1006,
  15679. bottom: 15/1091
  15680. },
  15681. form: "floatzel",
  15682. default: true
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(2 + 5 / 12, "feet"),
  15689. form: "buizel",
  15690. default: true
  15691. },
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(5 + 9 / 12, "feet"),
  15695. form: "floatzel",
  15696. default: true
  15697. },
  15698. ],
  15699. {
  15700. "buizel": {
  15701. name: "Buizel"
  15702. },
  15703. "floatzel": {
  15704. name: "Floatzel",
  15705. default: true
  15706. }
  15707. }
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6 + 2 / 12, "feet"),
  15714. weight: math.unit(146, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/iliac/front.svg",
  15718. extra: 389 / 365,
  15719. bottom: 0.035
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Normal",
  15726. height: math.unit(6 + 2 / 12, "feet"),
  15727. default: true
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(170, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/topaz/front.svg",
  15740. extra: 317 / 303,
  15741. bottom: 0.055
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(6, "feet"),
  15749. default: true
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(5 + 11 / 12, "feet"),
  15758. weight: math.unit(144, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/gabriel/front.svg",
  15762. extra: 285 / 262,
  15763. bottom: 0.004
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(5 + 11 / 12, "feet"),
  15771. default: true
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15777. {
  15778. side: {
  15779. height: math.unit(6 + 5 / 12, "feet"),
  15780. weight: math.unit(300, "lb"),
  15781. name: "Side",
  15782. image: {
  15783. source: "./media/characters/tempest-suicune/side.svg",
  15784. extra: 195 / 154,
  15785. bottom: 0.04
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(6 + 5 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(7 + 2 / 12, "feet"),
  15802. weight: math.unit(322, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/vulcan/front.svg",
  15806. extra: 154 / 147,
  15807. bottom: 0.04
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(7 + 2 / 12, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(5 + 10 / 12, "feet"),
  15824. weight: math.unit(264, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/gault/front.svg",
  15828. extra: 161 / 140,
  15829. bottom: 0.028
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(5 + 10 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/shard/front.svg",
  15850. extra: 273 / 238,
  15851. bottom: 0.02
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(3 + 6 / 12, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(5 + 11 / 12, "feet"),
  15868. weight: math.unit(146, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/ashe/front.svg",
  15872. extra: 400 / 373,
  15873. bottom: 0.01
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(5 + 11 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 5 / 12, "feet"),
  15890. weight: math.unit(135, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/beatrix/front.svg",
  15894. extra: 392 / 379,
  15895. bottom: 0.01
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(6, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6 + 2/12, "feet"),
  15912. weight: math.unit(135, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/ignatius/front.svg",
  15916. extra: 1380/1259,
  15917. bottom: 27/1407
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(6 + 2/12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(6 + 2 / 12, "feet"),
  15934. weight: math.unit(138, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/mei-li/front.svg",
  15938. extra: 237 / 229,
  15939. bottom: 0.03
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(6 + 2 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(2 + 4 / 12, "feet"),
  15956. weight: math.unit(62, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/puru/front.svg",
  15960. extra: 206 / 149,
  15961. bottom: 0.06
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(2 + 4 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15975. {
  15976. anthro: {
  15977. height: math.unit(5 + 8/12, "feet"),
  15978. weight: math.unit(200, "lb"),
  15979. energyNeed: math.unit(2000, "kcal"),
  15980. name: "Anthro",
  15981. image: {
  15982. source: "./media/characters/kee/anthro.svg",
  15983. extra: 3251/3184,
  15984. bottom: 250/3501
  15985. }
  15986. },
  15987. taur: {
  15988. height: math.unit(11, "feet"),
  15989. weight: math.unit(500, "lb"),
  15990. energyNeed: math.unit(5000, "kcal"),
  15991. name: "Taur",
  15992. image: {
  15993. source: "./media/characters/kee/taur.svg",
  15994. extra: 1362/1320,
  15995. bottom: 83/1445
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(5 + 8/12, "feet"),
  16003. default: true
  16004. },
  16005. {
  16006. name: "Macro",
  16007. height: math.unit(35, "feet")
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16013. {
  16014. anthro: {
  16015. height: math.unit(7, "feet"),
  16016. weight: math.unit(190, "lb"),
  16017. name: "Anthro",
  16018. image: {
  16019. source: "./media/characters/cobalt-dracha/anthro.svg",
  16020. extra: 231 / 225,
  16021. bottom: 0.04
  16022. }
  16023. },
  16024. feral: {
  16025. height: math.unit(9 + 7 / 12, "feet"),
  16026. weight: math.unit(294, "lb"),
  16027. name: "Feral",
  16028. image: {
  16029. source: "./media/characters/cobalt-dracha/feral.svg",
  16030. extra: 692 / 633,
  16031. bottom: 0.05
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(7, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16045. {
  16046. fallen: {
  16047. height: math.unit(11 + 8 / 12, "feet"),
  16048. weight: math.unit(485, "lb"),
  16049. name: "Java (Fallen)",
  16050. rename: true,
  16051. image: {
  16052. source: "./media/characters/java/fallen.svg",
  16053. extra: 226 / 208,
  16054. bottom: 0.005
  16055. }
  16056. },
  16057. godkin: {
  16058. height: math.unit(10 + 6 / 12, "feet"),
  16059. weight: math.unit(328, "lb"),
  16060. name: "Java (Godkin)",
  16061. rename: true,
  16062. image: {
  16063. source: "./media/characters/java/godkin.svg",
  16064. extra: 1104/1068,
  16065. bottom: 36/1140
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(11 + 8 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(5 + 9 / 12, "feet"),
  16082. weight: math.unit(170, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/purna/front.svg",
  16086. extra: 239 / 229,
  16087. bottom: 0.01
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(5 + 9 / 12, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(5 + 9 / 12, "feet"),
  16104. weight: math.unit(142, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/kuva/front.svg",
  16108. extra: 281 / 271,
  16109. bottom: 0.006
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(5 + 9 / 12, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16123. {
  16124. anthro: {
  16125. height: math.unit(9 + 2 / 12, "feet"),
  16126. weight: math.unit(270, "lb"),
  16127. name: "Anthro",
  16128. image: {
  16129. source: "./media/characters/embra/anthro.svg",
  16130. extra: 200 / 187,
  16131. bottom: 0.02
  16132. }
  16133. },
  16134. feral: {
  16135. height: math.unit(18 + 8 / 12, "feet"),
  16136. weight: math.unit(576, "lb"),
  16137. name: "Feral",
  16138. image: {
  16139. source: "./media/characters/embra/feral.svg",
  16140. extra: 152 / 137,
  16141. bottom: 0.037
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(9 + 2 / 12, "feet"),
  16149. default: true
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16155. {
  16156. anthro: {
  16157. height: math.unit(10 + 9 / 12, "feet"),
  16158. weight: math.unit(224, "lb"),
  16159. name: "Anthro",
  16160. image: {
  16161. source: "./media/characters/grottos/anthro.svg",
  16162. extra: 350 / 332,
  16163. bottom: 0.045
  16164. }
  16165. },
  16166. feral: {
  16167. height: math.unit(20 + 7 / 12, "feet"),
  16168. weight: math.unit(629, "lb"),
  16169. name: "Feral",
  16170. image: {
  16171. source: "./media/characters/grottos/feral.svg",
  16172. extra: 207 / 190,
  16173. bottom: 0.05
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Normal",
  16180. height: math.unit(10 + 9 / 12, "feet"),
  16181. default: true
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16187. {
  16188. anthro: {
  16189. height: math.unit(9 + 6 / 12, "feet"),
  16190. weight: math.unit(298, "lb"),
  16191. name: "Anthro",
  16192. image: {
  16193. source: "./media/characters/frifna/anthro.svg",
  16194. extra: 282 / 269,
  16195. bottom: 0.015
  16196. }
  16197. },
  16198. feral: {
  16199. height: math.unit(16 + 2 / 12, "feet"),
  16200. weight: math.unit(624, "lb"),
  16201. name: "Feral",
  16202. image: {
  16203. source: "./media/characters/frifna/feral.svg"
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(9 + 6 / 12, "feet"),
  16211. default: true
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(6 + 2 / 12, "feet"),
  16220. weight: math.unit(168, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/elise/front.svg",
  16224. extra: 276 / 271
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(6 + 2 / 12, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 10 / 12, "feet"),
  16241. weight: math.unit(210, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/glade/front.svg",
  16245. extra: 258 / 247,
  16246. bottom: 0.008
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(5 + 10 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(5 + 10 / 12, "feet"),
  16263. weight: math.unit(129, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/rina/front.svg",
  16267. extra: 266 / 255,
  16268. bottom: 0.005
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(5 + 10 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(6 + 1 / 12, "feet"),
  16285. weight: math.unit(192, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/veronica/front.svg",
  16289. extra: 319 / 309,
  16290. bottom: 0.005
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6 + 1 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(9 + 3 / 12, "feet"),
  16307. weight: math.unit(1100, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/braxton/front.svg",
  16311. extra: 1057 / 984,
  16312. bottom: 0.05
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(9 + 3 / 12, "feet")
  16320. },
  16321. {
  16322. name: "Giant",
  16323. height: math.unit(300, "feet"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Macro",
  16328. height: math.unit(700, "feet")
  16329. },
  16330. {
  16331. name: "Megamacro",
  16332. height: math.unit(6000, "feet")
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(6 + 7 / 12, "feet"),
  16341. weight: math.unit(150, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/blue-feyonics/front.svg",
  16345. extra: 1403 / 1306,
  16346. bottom: 0.047
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(6 + 7 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(1.8, "meters"),
  16363. weight: math.unit(60, "kg"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/maxwell/front.svg",
  16367. extra: 2060 / 1873
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Micro",
  16374. height: math.unit(1, "mm")
  16375. },
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(1.8, "meter"),
  16379. default: true
  16380. },
  16381. {
  16382. name: "Macro",
  16383. height: math.unit(30, "meters")
  16384. },
  16385. {
  16386. name: "Megamacro",
  16387. height: math.unit(10, "km")
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(6, "feet"),
  16396. weight: math.unit(150, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/jack/front.svg",
  16400. extra: 1754 / 1640,
  16401. bottom: 0.01
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(80000, "feet"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Max size",
  16413. height: math.unit(10, "lightyears")
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16419. {
  16420. urban: {
  16421. height: math.unit(5, "feet"),
  16422. weight: math.unit(240, "lb"),
  16423. name: "Urban",
  16424. image: {
  16425. source: "./media/characters/cafat/urban.svg",
  16426. extra: 1223/1126,
  16427. bottom: 205/1428
  16428. }
  16429. },
  16430. summer: {
  16431. height: math.unit(5, "feet"),
  16432. weight: math.unit(240, "lb"),
  16433. name: "Summer",
  16434. image: {
  16435. source: "./media/characters/cafat/summer.svg",
  16436. extra: 1223/1126,
  16437. bottom: 205/1428
  16438. }
  16439. },
  16440. winter: {
  16441. height: math.unit(5, "feet"),
  16442. weight: math.unit(240, "lb"),
  16443. name: "Winter",
  16444. image: {
  16445. source: "./media/characters/cafat/winter.svg",
  16446. extra: 1223/1126,
  16447. bottom: 205/1428
  16448. }
  16449. },
  16450. lingerie: {
  16451. height: math.unit(5, "feet"),
  16452. weight: math.unit(240, "lb"),
  16453. name: "Lingerie",
  16454. image: {
  16455. source: "./media/characters/cafat/lingerie.svg",
  16456. extra: 1223/1126,
  16457. bottom: 205/1428
  16458. }
  16459. },
  16460. upright: {
  16461. height: math.unit(6.3, "feet"),
  16462. weight: math.unit(240, "lb"),
  16463. name: "Upright",
  16464. image: {
  16465. source: "./media/characters/cafat/upright.svg",
  16466. bottom: 0.01
  16467. }
  16468. },
  16469. uprightFull: {
  16470. height: math.unit(6.3, "feet"),
  16471. weight: math.unit(240, "lb"),
  16472. name: "Upright (Full)",
  16473. image: {
  16474. source: "./media/characters/cafat/upright-full.svg",
  16475. bottom: 0.01
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Small",
  16482. height: math.unit(5, "feet"),
  16483. default: true
  16484. },
  16485. {
  16486. name: "Large",
  16487. height: math.unit(13, "feet")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(6, "feet"),
  16496. weight: math.unit(150, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/verin-raharra/front.svg",
  16500. extra: 5019 / 4835,
  16501. bottom: 0.023
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(7 + 5 / 12, "feet"),
  16509. default: true
  16510. },
  16511. {
  16512. name: "Upsized",
  16513. height: math.unit(20, "feet")
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(7, "feet"),
  16522. weight: math.unit(230, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/nakata/front.svg",
  16526. extra: 1.005,
  16527. bottom: 0.01
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(7, "feet"),
  16535. default: true
  16536. },
  16537. {
  16538. name: "Big",
  16539. height: math.unit(14, "feet")
  16540. },
  16541. {
  16542. name: "Macro",
  16543. height: math.unit(400, "feet")
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(4.91, "feet"),
  16552. weight: math.unit(100, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/lily/front.svg",
  16556. extra: 1585 / 1415,
  16557. bottom: 0.02
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(4.91, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16571. {
  16572. laying: {
  16573. height: math.unit(4 + 4 / 12, "feet"),
  16574. weight: math.unit(600, "lb"),
  16575. name: "Laying",
  16576. image: {
  16577. source: "./media/characters/sheila/laying.svg",
  16578. extra: 1333 / 1265,
  16579. bottom: 0.16
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(4 + 4 / 12, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(190, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/sax/front.svg",
  16600. extra: 1187 / 973,
  16601. bottom: 0.042
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Micro",
  16608. height: math.unit(4, "inches"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(6, "feet"),
  16618. weight: math.unit(150, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/pandora/front.svg",
  16622. extra: 2720 / 2556,
  16623. bottom: 0.015
  16624. }
  16625. },
  16626. back: {
  16627. height: math.unit(6, "feet"),
  16628. weight: math.unit(150, "lb"),
  16629. name: "Back",
  16630. image: {
  16631. source: "./media/characters/pandora/back.svg",
  16632. extra: 2720 / 2556,
  16633. bottom: 0.01
  16634. }
  16635. },
  16636. beans: {
  16637. height: math.unit(6 / 8, "feet"),
  16638. name: "Beans",
  16639. image: {
  16640. source: "./media/characters/pandora/beans.svg"
  16641. }
  16642. },
  16643. collar: {
  16644. height: math.unit(0.31, "feet"),
  16645. name: "Collar",
  16646. image: {
  16647. source: "./media/characters/pandora/collar.svg"
  16648. }
  16649. },
  16650. skirt: {
  16651. height: math.unit(6, "feet"),
  16652. weight: math.unit(150, "lb"),
  16653. name: "Skirt",
  16654. image: {
  16655. source: "./media/characters/pandora/skirt.svg",
  16656. extra: 1622 / 1525,
  16657. bottom: 0.015
  16658. }
  16659. },
  16660. hoodie: {
  16661. height: math.unit(6, "feet"),
  16662. weight: math.unit(150, "lb"),
  16663. name: "Hoodie",
  16664. image: {
  16665. source: "./media/characters/pandora/hoodie.svg",
  16666. extra: 1622 / 1525,
  16667. bottom: 0.015
  16668. }
  16669. },
  16670. casual: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Casual",
  16674. image: {
  16675. source: "./media/characters/pandora/casual.svg",
  16676. extra: 1622 / 1525,
  16677. bottom: 0.015
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(6, "feet")
  16685. },
  16686. {
  16687. name: "Big Steppy",
  16688. height: math.unit(1, "km"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Galactic Steppy",
  16693. height: math.unit(2, "gigameters")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16699. {
  16700. side: {
  16701. height: math.unit(10, "feet"),
  16702. weight: math.unit(800, "kg"),
  16703. name: "Side",
  16704. image: {
  16705. source: "./media/characters/venio-darcony/side.svg",
  16706. extra: 1373 / 1003,
  16707. bottom: 0.037
  16708. }
  16709. },
  16710. front: {
  16711. height: math.unit(19, "feet"),
  16712. weight: math.unit(800, "kg"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/venio-darcony/front.svg"
  16716. }
  16717. },
  16718. back: {
  16719. height: math.unit(19, "feet"),
  16720. weight: math.unit(800, "kg"),
  16721. name: "Back",
  16722. image: {
  16723. source: "./media/characters/venio-darcony/back.svg"
  16724. }
  16725. },
  16726. sideNsfw: {
  16727. height: math.unit(10, "feet"),
  16728. weight: math.unit(800, "kg"),
  16729. name: "Side (NSFW)",
  16730. image: {
  16731. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16732. extra: 1373 / 1003,
  16733. bottom: 0.037
  16734. }
  16735. },
  16736. frontNsfw: {
  16737. height: math.unit(19, "feet"),
  16738. weight: math.unit(800, "kg"),
  16739. name: "Front (NSFW)",
  16740. image: {
  16741. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16742. }
  16743. },
  16744. backNsfw: {
  16745. height: math.unit(19, "feet"),
  16746. weight: math.unit(800, "kg"),
  16747. name: "Back (NSFW)",
  16748. image: {
  16749. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16750. }
  16751. },
  16752. sideArmored: {
  16753. height: math.unit(10, "feet"),
  16754. weight: math.unit(800, "kg"),
  16755. name: "Side (Armored)",
  16756. image: {
  16757. source: "./media/characters/venio-darcony/side-armored.svg",
  16758. extra: 1373 / 1003,
  16759. bottom: 0.037
  16760. }
  16761. },
  16762. frontArmored: {
  16763. height: math.unit(19, "feet"),
  16764. weight: math.unit(900, "kg"),
  16765. name: "Front (Armored)",
  16766. image: {
  16767. source: "./media/characters/venio-darcony/front-armored.svg"
  16768. }
  16769. },
  16770. backArmored: {
  16771. height: math.unit(19, "feet"),
  16772. weight: math.unit(900, "kg"),
  16773. name: "Back (Armored)",
  16774. image: {
  16775. source: "./media/characters/venio-darcony/back-armored.svg"
  16776. }
  16777. },
  16778. sword: {
  16779. height: math.unit(10, "feet"),
  16780. weight: math.unit(50, "lb"),
  16781. name: "Sword",
  16782. image: {
  16783. source: "./media/characters/venio-darcony/sword.svg"
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(10, "feet")
  16791. },
  16792. {
  16793. name: "Macro",
  16794. height: math.unit(130, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macro+",
  16799. height: math.unit(240, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/veski/front.svg",
  16812. extra: 1299 / 1225,
  16813. bottom: 0.04
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/veski/back.svg",
  16822. extra: 1299 / 1225,
  16823. bottom: 0.008
  16824. }
  16825. },
  16826. maw: {
  16827. height: math.unit(1.5 * 1.21, "feet"),
  16828. name: "Maw",
  16829. image: {
  16830. source: "./media/characters/veski/maw.svg"
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Macro",
  16837. height: math.unit(2, "km"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16844. {
  16845. front: {
  16846. height: math.unit(5 + 7 / 12, "feet"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/isabelle/front.svg",
  16850. extra: 2130 / 1976,
  16851. bottom: 0.05
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Supermicro",
  16858. height: math.unit(10, "micrometers")
  16859. },
  16860. {
  16861. name: "Micro",
  16862. height: math.unit(1, "inch")
  16863. },
  16864. {
  16865. name: "Tiny",
  16866. height: math.unit(5, "inches")
  16867. },
  16868. {
  16869. name: "Standard",
  16870. height: math.unit(5 + 7 / 12, "inches")
  16871. },
  16872. {
  16873. name: "Macro",
  16874. height: math.unit(80, "meters"),
  16875. default: true
  16876. },
  16877. {
  16878. name: "Megamacro",
  16879. height: math.unit(250, "meters")
  16880. },
  16881. {
  16882. name: "Gigamacro",
  16883. height: math.unit(5, "km")
  16884. },
  16885. {
  16886. name: "Cosmic",
  16887. height: math.unit(2.5e6, "miles")
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(6, "feet"),
  16896. weight: math.unit(150, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/hanzo/front.svg",
  16900. extra: 374 / 344,
  16901. bottom: 0.02
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(8, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16915. {
  16916. front: {
  16917. height: math.unit(7, "feet"),
  16918. weight: math.unit(130, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/anna/front.svg",
  16922. extra: 169 / 145,
  16923. bottom: 0.06
  16924. }
  16925. },
  16926. full: {
  16927. height: math.unit(4.96, "feet"),
  16928. weight: math.unit(220, "lb"),
  16929. name: "Full",
  16930. image: {
  16931. source: "./media/characters/anna/full.svg",
  16932. extra: 138 / 114,
  16933. bottom: 0.15
  16934. }
  16935. },
  16936. tongue: {
  16937. height: math.unit(2.53, "feet"),
  16938. name: "Tongue",
  16939. image: {
  16940. source: "./media/characters/anna/tongue.svg"
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(7, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(7, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/ian-corvid/front.svg",
  16961. extra: 150 / 142,
  16962. bottom: 0.02
  16963. }
  16964. },
  16965. back: {
  16966. height: math.unit(7, "feet"),
  16967. weight: math.unit(150, "lb"),
  16968. name: "Back",
  16969. image: {
  16970. source: "./media/characters/ian-corvid/back.svg",
  16971. extra: 150 / 143,
  16972. bottom: 0.01
  16973. }
  16974. },
  16975. stomping: {
  16976. height: math.unit(7, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Stomping",
  16979. image: {
  16980. source: "./media/characters/ian-corvid/stomping.svg",
  16981. extra: 76 / 72
  16982. }
  16983. },
  16984. sitting: {
  16985. height: math.unit(7 / 1.8, "feet"),
  16986. weight: math.unit(150, "lb"),
  16987. name: "Sitting",
  16988. image: {
  16989. source: "./media/characters/ian-corvid/sitting.svg",
  16990. extra: 1400 / 1269,
  16991. bottom: 0.15
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Tiny Microw",
  16998. height: math.unit(1, "inch")
  16999. },
  17000. {
  17001. name: "Microw",
  17002. height: math.unit(6, "inches")
  17003. },
  17004. {
  17005. name: "Crow",
  17006. height: math.unit(7 + 1 / 12, "feet"),
  17007. default: true
  17008. },
  17009. {
  17010. name: "Macrow",
  17011. height: math.unit(176, "feet")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 7 / 12, "feet"),
  17020. weight: math.unit(147, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/natalie-kellon/front.svg",
  17024. extra: 1214 / 1141,
  17025. bottom: 0.02
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Micro",
  17032. height: math.unit(1 / 16, "inch")
  17033. },
  17034. {
  17035. name: "Tiny",
  17036. height: math.unit(4, "inches")
  17037. },
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(5 + 7 / 12, "feet"),
  17041. default: true
  17042. },
  17043. {
  17044. name: "Amazon",
  17045. height: math.unit(12, "feet")
  17046. },
  17047. {
  17048. name: "Giantess",
  17049. height: math.unit(160, "meters")
  17050. },
  17051. {
  17052. name: "Titaness",
  17053. height: math.unit(800, "meters")
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(6, "feet"),
  17062. weight: math.unit(150, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/alluria/front.svg",
  17066. extra: 806 / 738,
  17067. bottom: 0.01
  17068. }
  17069. },
  17070. side: {
  17071. height: math.unit(6, "feet"),
  17072. weight: math.unit(150, "lb"),
  17073. name: "Side",
  17074. image: {
  17075. source: "./media/characters/alluria/side.svg",
  17076. extra: 800 / 750,
  17077. }
  17078. },
  17079. back: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Back",
  17083. image: {
  17084. source: "./media/characters/alluria/back.svg",
  17085. extra: 806 / 738,
  17086. }
  17087. },
  17088. frontMaid: {
  17089. height: math.unit(6, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Front (Maid)",
  17092. image: {
  17093. source: "./media/characters/alluria/front-maid.svg",
  17094. extra: 806 / 738,
  17095. bottom: 0.01
  17096. }
  17097. },
  17098. sideMaid: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(150, "lb"),
  17101. name: "Side (Maid)",
  17102. image: {
  17103. source: "./media/characters/alluria/side-maid.svg",
  17104. extra: 800 / 750,
  17105. bottom: 0.005
  17106. }
  17107. },
  17108. backMaid: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Back (Maid)",
  17112. image: {
  17113. source: "./media/characters/alluria/back-maid.svg",
  17114. extra: 806 / 738,
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Micro",
  17121. height: math.unit(6, "inches"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/kyle/front.svg",
  17135. extra: 1069 / 962,
  17136. bottom: 77.228 / 1727.45
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(150, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(300, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/duncan/front.svg",
  17157. extra: 1650 / 1482,
  17158. bottom: 0.05
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Macro",
  17165. height: math.unit(100, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 4 / 12, "feet"),
  17175. weight: math.unit(220, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/memory/front.svg",
  17179. extra: 3641 / 3545,
  17180. bottom: 0.03
  17181. }
  17182. },
  17183. back: {
  17184. height: math.unit(5 + 4 / 12, "feet"),
  17185. weight: math.unit(220, "lb"),
  17186. name: "Back",
  17187. image: {
  17188. source: "./media/characters/memory/back.svg",
  17189. extra: 3641 / 3545,
  17190. bottom: 0.025
  17191. }
  17192. },
  17193. frontSkirt: {
  17194. height: math.unit(5 + 4 / 12, "feet"),
  17195. weight: math.unit(220, "lb"),
  17196. name: "Front (Skirt)",
  17197. image: {
  17198. source: "./media/characters/memory/front-skirt.svg",
  17199. extra: 3641 / 3545,
  17200. bottom: 0.03
  17201. }
  17202. },
  17203. frontDress: {
  17204. height: math.unit(5 + 4 / 12, "feet"),
  17205. weight: math.unit(220, "lb"),
  17206. name: "Front (Dress)",
  17207. image: {
  17208. source: "./media/characters/memory/front-dress.svg",
  17209. extra: 3641 / 3545,
  17210. bottom: 0.03
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Micro",
  17217. height: math.unit(6, "inches"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(5 + 4 / 12, "feet")
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(4 + 11 / 12, "feet"),
  17231. weight: math.unit(100, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/luno/front.svg",
  17235. extra: 1535 / 1487,
  17236. bottom: 0.03
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Micro",
  17243. height: math.unit(3, "inches")
  17244. },
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(4 + 11 / 12, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(300, "feet")
  17253. },
  17254. {
  17255. name: "Megamacro",
  17256. height: math.unit(700, "miles")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(6 + 2 / 12, "feet"),
  17265. weight: math.unit(170, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/jamesy/front.svg",
  17269. extra: 440 / 382,
  17270. bottom: 0.005
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Micro",
  17277. height: math.unit(3, "inches")
  17278. },
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6 + 2 / 12, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Macro",
  17286. height: math.unit(300, "feet")
  17287. },
  17288. {
  17289. name: "Megamacro",
  17290. height: math.unit(700, "miles")
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(6, "feet"),
  17299. weight: math.unit(160, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/mark/front.svg",
  17303. extra: 3300 / 3100,
  17304. bottom: 136.42 / 3440.47
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Macro",
  17311. height: math.unit(120, "meters")
  17312. },
  17313. {
  17314. name: "Bigger Macro",
  17315. height: math.unit(350, "meters")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(8, "km"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Continental",
  17324. height: math.unit(4550, "km")
  17325. },
  17326. {
  17327. name: "Planetary",
  17328. height: math.unit(65000, "km")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(6, "feet"),
  17337. weight: math.unit(400, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/mac/front.svg",
  17341. extra: 1048 / 987.7,
  17342. bottom: 60 / 1107.6,
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Macro",
  17349. height: math.unit(500, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. weight: math.unit(190, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/bari/front.svg",
  17363. extra: 3156 / 2880,
  17364. bottom: 0.03
  17365. }
  17366. },
  17367. back: {
  17368. height: math.unit(5 + 2 / 12, "feet"),
  17369. weight: math.unit(190, "lb"),
  17370. name: "Back",
  17371. image: {
  17372. source: "./media/characters/bari/back.svg",
  17373. extra: 3260 / 2834,
  17374. bottom: 0.025
  17375. }
  17376. },
  17377. frontPlush: {
  17378. height: math.unit(5 + 2 / 12, "feet"),
  17379. weight: math.unit(190, "lb"),
  17380. name: "Front (Plush)",
  17381. image: {
  17382. source: "./media/characters/bari/front-plush.svg",
  17383. extra: 1112 / 1061,
  17384. bottom: 0.002
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Micro",
  17391. height: math.unit(3, "inches")
  17392. },
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(5 + 2 / 12, "feet"),
  17396. default: true
  17397. },
  17398. {
  17399. name: "Macro",
  17400. height: math.unit(20, "feet")
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(6 + 1 / 12, "feet"),
  17409. weight: math.unit(275, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/hunter-misha-raven/front.svg"
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Mortal",
  17419. height: math.unit(6 + 1 / 12, "feet")
  17420. },
  17421. {
  17422. name: "Divine",
  17423. height: math.unit(1.12134e34, "parsecs"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6 + 3 / 12, "feet"),
  17433. weight: math.unit(220, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/max-calore/front.svg",
  17437. extra: 1700 / 1648,
  17438. bottom: 0.01
  17439. }
  17440. },
  17441. back: {
  17442. height: math.unit(6 + 3 / 12, "feet"),
  17443. weight: math.unit(220, "lb"),
  17444. name: "Back",
  17445. image: {
  17446. source: "./media/characters/max-calore/back.svg",
  17447. extra: 1700 / 1648,
  17448. bottom: 0.01
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(6 + 3 / 12, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17462. {
  17463. side: {
  17464. height: math.unit(2 + 8 / 12, "feet"),
  17465. weight: math.unit(99, "lb"),
  17466. name: "Side",
  17467. image: {
  17468. source: "./media/characters/aspen/side.svg",
  17469. extra: 152 / 138,
  17470. bottom: 0.032
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(2 + 8 / 12, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17484. {
  17485. side: {
  17486. height: math.unit(3 + 2 / 12, "feet"),
  17487. weight: math.unit(224, "lb"),
  17488. name: "Side",
  17489. image: {
  17490. source: "./media/characters/sheila-feral-wolf/side.svg",
  17491. extra: 179 / 166,
  17492. bottom: 0.03
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(3 + 2 / 12, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17506. {
  17507. side: {
  17508. height: math.unit(1 + 9 / 12, "feet"),
  17509. weight: math.unit(38, "lb"),
  17510. name: "Side",
  17511. image: {
  17512. source: "./media/characters/michelle/side.svg",
  17513. extra: 147 / 136.7,
  17514. bottom: 0.03
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(1 + 9 / 12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(1.54, "feet"),
  17531. weight: math.unit(50, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/nino/front.svg"
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(1.54, "feet"),
  17542. default: true
  17543. },
  17544. ]
  17545. ))
  17546. characterMakers.push(() => makeCharacter(
  17547. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17548. {
  17549. front: {
  17550. height: math.unit(1.49, "feet"),
  17551. weight: math.unit(45, "lb"),
  17552. name: "Front",
  17553. image: {
  17554. source: "./media/characters/viola/front.svg"
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(1.49, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6 + 5 / 12, "feet"),
  17571. weight: math.unit(580, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/atlas/front.svg",
  17575. extra: 298.5 / 290,
  17576. bottom: 0.015
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 5 / 12, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17590. {
  17591. side: {
  17592. height: math.unit(15.6, "inches"),
  17593. weight: math.unit(10, "lb"),
  17594. name: "Side",
  17595. image: {
  17596. source: "./media/characters/davy/side.svg",
  17597. extra: 200 / 170,
  17598. bottom: 0.01
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(15.6, "inches"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17612. {
  17613. side: {
  17614. height: math.unit(4 + 8 / 12, "feet"),
  17615. weight: math.unit(166, "lb"),
  17616. name: "Side",
  17617. image: {
  17618. source: "./media/characters/fiona/side.svg",
  17619. extra: 232 / 220,
  17620. bottom: 0.03
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(4 + 8 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17634. {
  17635. front: {
  17636. height: math.unit(26, "inches"),
  17637. weight: math.unit(35, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/lyla/front.svg",
  17641. bottom: 0.1
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(3, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17655. {
  17656. side: {
  17657. height: math.unit(1.8, "feet"),
  17658. weight: math.unit(44, "lb"),
  17659. name: "Side",
  17660. image: {
  17661. source: "./media/characters/perseus/side.svg",
  17662. bottom: 0.21
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(1.8, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17676. {
  17677. side: {
  17678. height: math.unit(4 + 2 / 12, "feet"),
  17679. weight: math.unit(20, "lb"),
  17680. name: "Side",
  17681. image: {
  17682. source: "./media/characters/remus/side.svg"
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(4 + 2 / 12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(4 + 11 / 12, "feet"),
  17699. weight: math.unit(114, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/raf/front.svg",
  17703. extra: 1504/1339,
  17704. bottom: 26/1530
  17705. }
  17706. },
  17707. side: {
  17708. height: math.unit(4 + 11 / 12, "feet"),
  17709. weight: math.unit(114, "lb"),
  17710. name: "Side",
  17711. image: {
  17712. source: "./media/characters/raf/side.svg",
  17713. extra: 1466/1316,
  17714. bottom: 29/1495
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Micro",
  17721. height: math.unit(2, "inches")
  17722. },
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(4 + 11 / 12, "feet"),
  17726. default: true
  17727. },
  17728. {
  17729. name: "Macro",
  17730. height: math.unit(70, "feet")
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(1.5, "meters"),
  17739. weight: math.unit(68, "kg"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/liam-einarr/front.svg",
  17743. extra: 2822 / 2666
  17744. }
  17745. },
  17746. back: {
  17747. height: math.unit(1.5, "meters"),
  17748. weight: math.unit(68, "kg"),
  17749. name: "Back",
  17750. image: {
  17751. source: "./media/characters/liam-einarr/back.svg",
  17752. extra: 2822 / 2666,
  17753. bottom: 0.015
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(1.5, "meters"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(150, "meters")
  17766. },
  17767. {
  17768. name: "Megamacro",
  17769. height: math.unit(35, "km")
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(6, "feet"),
  17778. weight: math.unit(75, "kg"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/linda/front.svg",
  17782. extra: 930 / 874,
  17783. bottom: 0.004
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(6, "feet"),
  17791. default: true
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17797. {
  17798. front: {
  17799. height: math.unit(6 + 8 / 12, "feet"),
  17800. weight: math.unit(220, "lb"),
  17801. name: "Front",
  17802. image: {
  17803. source: "./media/characters/caylex/front.svg",
  17804. extra: 821 / 772,
  17805. bottom: 0.07
  17806. }
  17807. },
  17808. back: {
  17809. height: math.unit(6 + 8 / 12, "feet"),
  17810. weight: math.unit(220, "lb"),
  17811. name: "Back",
  17812. image: {
  17813. source: "./media/characters/caylex/back.svg",
  17814. extra: 821 / 772,
  17815. bottom: 0.022
  17816. }
  17817. },
  17818. hand: {
  17819. height: math.unit(1.25, "feet"),
  17820. name: "Hand",
  17821. image: {
  17822. source: "./media/characters/caylex/hand.svg"
  17823. }
  17824. },
  17825. foot: {
  17826. height: math.unit(1.6, "feet"),
  17827. name: "Foot",
  17828. image: {
  17829. source: "./media/characters/caylex/foot.svg"
  17830. }
  17831. },
  17832. armored: {
  17833. height: math.unit(6 + 8 / 12, "feet"),
  17834. weight: math.unit(250, "lb"),
  17835. name: "Armored",
  17836. image: {
  17837. source: "./media/characters/caylex/armored.svg",
  17838. extra: 1420 / 1310,
  17839. bottom: 0.045
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(6 + 8 / 12, "feet"),
  17847. default: true
  17848. },
  17849. {
  17850. name: "Normal+",
  17851. height: math.unit(12, "feet")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(7 + 6 / 12, "feet"),
  17860. weight: math.unit(288, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/alana/front.svg",
  17864. extra: 679 / 653,
  17865. bottom: 22.5 / 701
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(7 + 6 / 12, "feet")
  17873. },
  17874. {
  17875. name: "Large",
  17876. height: math.unit(50, "feet")
  17877. },
  17878. {
  17879. name: "Macro",
  17880. height: math.unit(100, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Macro+",
  17885. height: math.unit(200, "feet")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(6 + 1 / 12, "feet"),
  17894. weight: math.unit(210, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/hasani/front.svg",
  17898. extra: 244 / 232,
  17899. bottom: 0.01
  17900. }
  17901. },
  17902. back: {
  17903. height: math.unit(6 + 1 / 12, "feet"),
  17904. weight: math.unit(210, "lb"),
  17905. name: "Back",
  17906. image: {
  17907. source: "./media/characters/hasani/back.svg",
  17908. extra: 244 / 232,
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(6 + 1 / 12, "feet")
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(175, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(1.82, "meters"),
  17930. weight: math.unit(140, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/nita/front.svg",
  17934. extra: 2473 / 2363,
  17935. bottom: 0.01
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(1.82, "m")
  17943. },
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(300, "m")
  17947. },
  17948. {
  17949. name: "Mistake Canon",
  17950. height: math.unit(0.5, "miles"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Big Mistake",
  17955. height: math.unit(13, "miles")
  17956. },
  17957. {
  17958. name: "Playing God",
  17959. height: math.unit(2450, "miles")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(4, "feet"),
  17968. weight: math.unit(120, "lb"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/shiriko/front.svg",
  17972. extra: 970/934,
  17973. bottom: 5/975
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(4, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6, "feet"),
  17990. name: "front",
  17991. image: {
  17992. source: "./media/characters/deja/front.svg",
  17993. extra: 926 / 840,
  17994. bottom: 0.07
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Planck Length",
  18001. height: math.unit(1.6e-35, "meters")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(30.48, "meters"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Universal",
  18010. height: math.unit(8.8e26, "meters")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18016. {
  18017. side: {
  18018. height: math.unit(8, "feet"),
  18019. weight: math.unit(6300, "lb"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/anima/side.svg",
  18023. bottom: 0.035
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(8, "feet"),
  18031. default: true
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(8, "feet"),
  18040. weight: math.unit(350, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/bianca/front.svg",
  18044. extra: 234 / 225,
  18045. bottom: 0.03
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(8, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(6, "feet"),
  18062. weight: math.unit(150, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/adinia/front.svg",
  18066. extra: 1845 / 1672,
  18067. bottom: 0.02
  18068. }
  18069. },
  18070. back: {
  18071. height: math.unit(6, "feet"),
  18072. weight: math.unit(150, "lb"),
  18073. name: "Back",
  18074. image: {
  18075. source: "./media/characters/adinia/back.svg",
  18076. extra: 1845 / 1672,
  18077. bottom: 0.002
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(11 + 5 / 12, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(3, "meters"),
  18094. weight: math.unit(200, "kg"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/lykasa/front.svg",
  18098. extra: 1076 / 976,
  18099. bottom: 0.06
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(3, "meters")
  18107. },
  18108. {
  18109. name: "Kaiju",
  18110. height: math.unit(120, "meters"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Mega Kaiju",
  18115. height: math.unit(240, "km")
  18116. },
  18117. {
  18118. name: "Giga Kaiju",
  18119. height: math.unit(400, "megameters")
  18120. },
  18121. {
  18122. name: "Tera Kaiju",
  18123. height: math.unit(800, "gigameters")
  18124. },
  18125. {
  18126. name: "Kaiju Dragon Goddess",
  18127. height: math.unit(26, "zettaparsecs")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18133. {
  18134. side: {
  18135. height: math.unit(283 / 124 * 6, "feet"),
  18136. weight: math.unit(35000, "lb"),
  18137. name: "Side",
  18138. image: {
  18139. source: "./media/characters/malfaren/side.svg",
  18140. extra: 1310/529,
  18141. bottom: 24/1334
  18142. }
  18143. },
  18144. front: {
  18145. height: math.unit(22.36, "feet"),
  18146. weight: math.unit(35000, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/malfaren/front.svg",
  18150. extra: 1237/1115,
  18151. bottom: 32/1269
  18152. }
  18153. },
  18154. maw: {
  18155. height: math.unit(6.9, "feet"),
  18156. name: "Maw",
  18157. image: {
  18158. source: "./media/characters/malfaren/maw.svg"
  18159. }
  18160. },
  18161. dick: {
  18162. height: math.unit(6.19, "feet"),
  18163. name: "Dick",
  18164. image: {
  18165. source: "./media/characters/malfaren/dick.svg"
  18166. }
  18167. },
  18168. eye: {
  18169. height: math.unit(0.69, "feet"),
  18170. name: "Eye",
  18171. image: {
  18172. source: "./media/characters/malfaren/eye.svg"
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Big",
  18179. height: math.unit(283 / 162 * 6, "feet"),
  18180. },
  18181. {
  18182. name: "Bigger",
  18183. height: math.unit(283 / 124 * 6, "feet")
  18184. },
  18185. {
  18186. name: "Massive",
  18187. height: math.unit(283 / 92 * 6, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "👀💦",
  18192. height: math.unit(283 / 73 * 6, "feet"),
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(1.7, "m"),
  18201. weight: math.unit(70, "kg"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/kernel/front.svg",
  18205. extra: 222 / 210,
  18206. bottom: 0.007
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Nano",
  18213. height: math.unit(17, "micrometers")
  18214. },
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(1.7, "mm")
  18218. },
  18219. {
  18220. name: "Small",
  18221. height: math.unit(1.7, "cm")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(1.7, "m"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(1.75, "meters"),
  18235. weight: math.unit(65, "kg"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/jayne-folest/front.svg",
  18239. extra: 2115 / 2007,
  18240. bottom: 0.02
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(1.75, "meters"),
  18245. weight: math.unit(65, "kg"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/jayne-folest/back.svg",
  18249. extra: 2115 / 2007,
  18250. bottom: 0.005
  18251. }
  18252. },
  18253. frontClothed: {
  18254. height: math.unit(1.75, "meters"),
  18255. weight: math.unit(65, "kg"),
  18256. name: "Front (Clothed)",
  18257. image: {
  18258. source: "./media/characters/jayne-folest/front-clothed.svg",
  18259. extra: 2115 / 2007,
  18260. bottom: 0.035
  18261. }
  18262. },
  18263. hand: {
  18264. height: math.unit(1 / 1.260, "feet"),
  18265. name: "Hand",
  18266. image: {
  18267. source: "./media/characters/jayne-folest/hand.svg"
  18268. }
  18269. },
  18270. foot: {
  18271. height: math.unit(1 / 0.918, "feet"),
  18272. name: "Foot",
  18273. image: {
  18274. source: "./media/characters/jayne-folest/foot.svg"
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(4, "cm")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(1.75, "meters")
  18286. },
  18287. {
  18288. name: "Macro",
  18289. height: math.unit(47.5, "meters"),
  18290. default: true
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(180, "cm"),
  18299. weight: math.unit(70, "kg"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/algier/front.svg",
  18303. extra: 596 / 572,
  18304. bottom: 0.04
  18305. }
  18306. },
  18307. back: {
  18308. height: math.unit(180, "cm"),
  18309. weight: math.unit(70, "kg"),
  18310. name: "Back",
  18311. image: {
  18312. source: "./media/characters/algier/back.svg",
  18313. extra: 596 / 572,
  18314. bottom: 0.025
  18315. }
  18316. },
  18317. frontdressed: {
  18318. height: math.unit(180, "cm"),
  18319. weight: math.unit(150, "kg"),
  18320. name: "Front-dressed",
  18321. image: {
  18322. source: "./media/characters/algier/front-dressed.svg",
  18323. extra: 596 / 572,
  18324. bottom: 0.038
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Micro",
  18331. height: math.unit(5, "cm")
  18332. },
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(180, "cm"),
  18336. default: true
  18337. },
  18338. {
  18339. name: "Macro",
  18340. height: math.unit(64, "m")
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18346. {
  18347. upright: {
  18348. height: math.unit(7, "feet"),
  18349. weight: math.unit(300, "lb"),
  18350. name: "Upright",
  18351. image: {
  18352. source: "./media/characters/pretzel/upright.svg",
  18353. extra: 534 / 522,
  18354. bottom: 0.065
  18355. }
  18356. },
  18357. sprawling: {
  18358. height: math.unit(3.75, "feet"),
  18359. weight: math.unit(300, "lb"),
  18360. name: "Sprawling",
  18361. image: {
  18362. source: "./media/characters/pretzel/sprawling.svg",
  18363. extra: 314 / 281,
  18364. bottom: 0.1
  18365. }
  18366. },
  18367. tongue: {
  18368. height: math.unit(2, "feet"),
  18369. name: "Tongue",
  18370. image: {
  18371. source: "./media/characters/pretzel/tongue.svg"
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(7, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Oversized",
  18383. height: math.unit(15, "feet")
  18384. },
  18385. {
  18386. name: "Huge",
  18387. height: math.unit(30, "feet")
  18388. },
  18389. {
  18390. name: "Macro",
  18391. height: math.unit(250, "feet")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18397. {
  18398. sideFront: {
  18399. height: math.unit(5 + 2 / 12, "feet"),
  18400. weight: math.unit(120, "lb"),
  18401. name: "Front Side",
  18402. image: {
  18403. source: "./media/characters/roxi/side-front.svg",
  18404. extra: 2924 / 2717,
  18405. bottom: 0.08
  18406. }
  18407. },
  18408. sideBack: {
  18409. height: math.unit(5 + 2 / 12, "feet"),
  18410. weight: math.unit(120, "lb"),
  18411. name: "Back Side",
  18412. image: {
  18413. source: "./media/characters/roxi/side-back.svg",
  18414. extra: 2904 / 2693,
  18415. bottom: 0.06
  18416. }
  18417. },
  18418. front: {
  18419. height: math.unit(5 + 2 / 12, "feet"),
  18420. weight: math.unit(120, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/roxi/front.svg",
  18424. extra: 2028 / 1907,
  18425. bottom: 0.01
  18426. }
  18427. },
  18428. frontAlt: {
  18429. height: math.unit(5 + 2 / 12, "feet"),
  18430. weight: math.unit(120, "lb"),
  18431. name: "Front (Alt)",
  18432. image: {
  18433. source: "./media/characters/roxi/front-alt.svg",
  18434. extra: 1828 / 1798,
  18435. bottom: 0.01
  18436. }
  18437. },
  18438. sitting: {
  18439. height: math.unit(2.8, "feet"),
  18440. weight: math.unit(120, "lb"),
  18441. name: "Sitting",
  18442. image: {
  18443. source: "./media/characters/roxi/sitting.svg",
  18444. extra: 2660 / 2462,
  18445. bottom: 0.1
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(5 + 2 / 12, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18459. {
  18460. side: {
  18461. height: math.unit(55, "feet"),
  18462. weight: math.unit(153, "tons"),
  18463. name: "Side",
  18464. image: {
  18465. source: "./media/characters/shadow/side.svg",
  18466. extra: 701 / 628,
  18467. bottom: 0.02
  18468. }
  18469. },
  18470. flying: {
  18471. height: math.unit(145, "feet"),
  18472. weight: math.unit(153, "tons"),
  18473. name: "Flying",
  18474. image: {
  18475. source: "./media/characters/shadow/flying.svg"
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(55, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(6, "feet"),
  18492. weight: math.unit(200, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/marcie/front.svg",
  18496. extra: 960 / 876,
  18497. bottom: 58 / 1017.87
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Macro",
  18504. height: math.unit(1, "mile"),
  18505. default: true
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(200, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/kachina/front.svg",
  18518. extra: 1290.68 / 1119,
  18519. bottom: 36.5 / 1327.18
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(7, "feet"),
  18527. default: true
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18533. {
  18534. looking: {
  18535. height: math.unit(2, "meters"),
  18536. weight: math.unit(300, "kg"),
  18537. name: "Looking",
  18538. image: {
  18539. source: "./media/characters/kash/looking.svg",
  18540. extra: 474 / 344,
  18541. bottom: 0.03
  18542. }
  18543. },
  18544. side: {
  18545. height: math.unit(2, "meters"),
  18546. weight: math.unit(300, "kg"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/kash/side.svg",
  18550. extra: 302 / 251,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. front: {
  18555. height: math.unit(2, "meters"),
  18556. weight: math.unit(300, "kg"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/kash/front.svg",
  18560. extra: 495 / 360,
  18561. bottom: 0.015
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(2, "meters"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Big",
  18573. height: math.unit(3, "meters")
  18574. },
  18575. {
  18576. name: "Large",
  18577. height: math.unit(5, "meters")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18583. {
  18584. feeding: {
  18585. height: math.unit(6.7, "feet"),
  18586. weight: math.unit(350, "lb"),
  18587. name: "Feeding",
  18588. image: {
  18589. source: "./media/characters/lalim/feeding.svg",
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(6.7, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(9.5, "feet"),
  18606. weight: math.unit(600, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/de'vout/front.svg",
  18610. extra: 1443 / 1328,
  18611. bottom: 0.025
  18612. }
  18613. },
  18614. back: {
  18615. height: math.unit(9.5, "feet"),
  18616. weight: math.unit(600, "lb"),
  18617. name: "Back",
  18618. image: {
  18619. source: "./media/characters/de'vout/back.svg",
  18620. extra: 1443 / 1328
  18621. }
  18622. },
  18623. frontDressed: {
  18624. height: math.unit(9.5, "feet"),
  18625. weight: math.unit(600, "lb"),
  18626. name: "Front (Dressed",
  18627. image: {
  18628. source: "./media/characters/de'vout/front-dressed.svg",
  18629. extra: 1443 / 1328,
  18630. bottom: 0.025
  18631. }
  18632. },
  18633. backDressed: {
  18634. height: math.unit(9.5, "feet"),
  18635. weight: math.unit(600, "lb"),
  18636. name: "Back (Dressed",
  18637. image: {
  18638. source: "./media/characters/de'vout/back-dressed.svg",
  18639. extra: 1443 / 1328
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(9.5, "feet"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18653. {
  18654. front: {
  18655. height: math.unit(8, "feet"),
  18656. weight: math.unit(225, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/talana/front.svg",
  18660. extra: 1410 / 1300,
  18661. bottom: 0.015
  18662. }
  18663. },
  18664. frontDressed: {
  18665. height: math.unit(8, "feet"),
  18666. weight: math.unit(225, "lb"),
  18667. name: "Front (Dressed",
  18668. image: {
  18669. source: "./media/characters/talana/front-dressed.svg",
  18670. extra: 1410 / 1300,
  18671. bottom: 0.015
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(8, "feet"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18685. {
  18686. side: {
  18687. height: math.unit(7.2, "feet"),
  18688. weight: math.unit(150, "lb"),
  18689. name: "Side",
  18690. image: {
  18691. source: "./media/characters/xeauvok/side.svg",
  18692. extra: 1975 / 1523,
  18693. bottom: 0.07
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(7.2, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18707. {
  18708. side: {
  18709. height: math.unit(10, "feet"),
  18710. weight: math.unit(900, "kg"),
  18711. name: "Side",
  18712. image: {
  18713. source: "./media/characters/zara/side.svg",
  18714. extra: 504 / 498
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Normal",
  18721. height: math.unit(10, "feet"),
  18722. default: true
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18728. {
  18729. side: {
  18730. height: math.unit(6, "feet"),
  18731. weight: math.unit(150, "lb"),
  18732. name: "Side",
  18733. image: {
  18734. source: "./media/characters/richard-dragon/side.svg",
  18735. extra: 845 / 340,
  18736. bottom: 0.017
  18737. }
  18738. },
  18739. maw: {
  18740. height: math.unit(2.97, "feet"),
  18741. name: "Maw",
  18742. image: {
  18743. source: "./media/characters/richard-dragon/maw.svg"
  18744. }
  18745. },
  18746. },
  18747. [
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(4, "feet"),
  18755. weight: math.unit(100, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/richard-smeargle/front.svg",
  18759. extra: 2952 / 2820,
  18760. bottom: 0.028
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Normal",
  18767. height: math.unit(4, "feet"),
  18768. default: true
  18769. },
  18770. {
  18771. name: "Dynamax",
  18772. height: math.unit(20, "meters")
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18778. {
  18779. front: {
  18780. height: math.unit(6, "feet"),
  18781. weight: math.unit(110, "lb"),
  18782. name: "Front",
  18783. image: {
  18784. source: "./media/characters/klay/front.svg",
  18785. extra: 962 / 883,
  18786. bottom: 0.04
  18787. }
  18788. },
  18789. back: {
  18790. height: math.unit(6, "feet"),
  18791. weight: math.unit(110, "lb"),
  18792. name: "Back",
  18793. image: {
  18794. source: "./media/characters/klay/back.svg",
  18795. extra: 962 / 883
  18796. }
  18797. },
  18798. beans: {
  18799. height: math.unit(1.15, "feet"),
  18800. name: "Beans",
  18801. image: {
  18802. source: "./media/characters/klay/beans.svg"
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(6, "inches")
  18810. },
  18811. {
  18812. name: "Mini",
  18813. height: math.unit(3, "feet")
  18814. },
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(6, "feet"),
  18818. default: true
  18819. },
  18820. {
  18821. name: "Big",
  18822. height: math.unit(25, "feet")
  18823. },
  18824. {
  18825. name: "Macro",
  18826. height: math.unit(100, "feet")
  18827. },
  18828. {
  18829. name: "Megamacro",
  18830. height: math.unit(400, "feet")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6, "feet"),
  18839. weight: math.unit(160, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/marcus/front.svg",
  18843. extra: 734 / 676,
  18844. bottom: 0.03
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Little",
  18851. height: math.unit(6, "feet")
  18852. },
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(110, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Macro",
  18860. height: math.unit(250, "feet")
  18861. },
  18862. {
  18863. name: "Megamacro",
  18864. height: math.unit(1000, "feet")
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(7, "feet"),
  18873. weight: math.unit(275, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/claude-delroute/front.svg",
  18877. extra: 902/827,
  18878. bottom: 26/928
  18879. }
  18880. },
  18881. side: {
  18882. height: math.unit(7, "feet"),
  18883. weight: math.unit(275, "lb"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/claude-delroute/side.svg",
  18887. extra: 908/853,
  18888. bottom: 16/924
  18889. }
  18890. },
  18891. back: {
  18892. height: math.unit(7, "feet"),
  18893. weight: math.unit(275, "lb"),
  18894. name: "Back",
  18895. image: {
  18896. source: "./media/characters/claude-delroute/back.svg",
  18897. extra: 911/829,
  18898. bottom: 18/929
  18899. }
  18900. },
  18901. maw: {
  18902. height: math.unit(0.6407, "meters"),
  18903. name: "Maw",
  18904. image: {
  18905. source: "./media/characters/claude-delroute/maw.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(7, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "Lorge",
  18917. height: math.unit(20, "feet")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(8 + 4 / 12, "feet"),
  18926. weight: math.unit(600, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/dragonien/front.svg",
  18930. extra: 100 / 94,
  18931. bottom: 3.3 / 103.3445
  18932. }
  18933. },
  18934. back: {
  18935. height: math.unit(8 + 4 / 12, "feet"),
  18936. weight: math.unit(600, "lb"),
  18937. name: "Back",
  18938. image: {
  18939. source: "./media/characters/dragonien/back.svg",
  18940. extra: 776 / 746,
  18941. bottom: 6.4 / 782.0616
  18942. }
  18943. },
  18944. foot: {
  18945. height: math.unit(1.54, "feet"),
  18946. name: "Foot",
  18947. image: {
  18948. source: "./media/characters/dragonien/foot.svg",
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(8 + 4 / 12, "feet"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(200, "feet")
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(1, "mile")
  18965. },
  18966. {
  18967. name: "Gigamacro",
  18968. height: math.unit(1000, "miles")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(5 + 2 / 12, "feet"),
  18977. weight: math.unit(110, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/desta/front.svg",
  18981. extra: 767 / 726,
  18982. bottom: 11.7 / 779
  18983. }
  18984. },
  18985. back: {
  18986. height: math.unit(5 + 2 / 12, "feet"),
  18987. weight: math.unit(110, "lb"),
  18988. name: "Back",
  18989. image: {
  18990. source: "./media/characters/desta/back.svg",
  18991. extra: 777 / 728,
  18992. bottom: 6 / 784
  18993. }
  18994. },
  18995. frontAlt: {
  18996. height: math.unit(5 + 2 / 12, "feet"),
  18997. weight: math.unit(110, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/desta/front-alt.svg",
  19001. extra: 1482 / 1417
  19002. }
  19003. },
  19004. side: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(110, "lb"),
  19007. name: "Side",
  19008. image: {
  19009. source: "./media/characters/desta/side.svg",
  19010. extra: 2579 / 2491,
  19011. bottom: 0.053
  19012. }
  19013. },
  19014. },
  19015. [
  19016. {
  19017. name: "Micro",
  19018. height: math.unit(6, "inches")
  19019. },
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(5 + 2 / 12, "feet"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Macro",
  19027. height: math.unit(62, "feet")
  19028. },
  19029. {
  19030. name: "Megamacro",
  19031. height: math.unit(1800, "feet")
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(10, "feet"),
  19040. weight: math.unit(700, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/storm-alystar/front.svg",
  19044. extra: 2112 / 1898,
  19045. bottom: 0.034
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Micro",
  19052. height: math.unit(3.5, "inches")
  19053. },
  19054. {
  19055. name: "Normal",
  19056. height: math.unit(10, "feet"),
  19057. default: true
  19058. },
  19059. {
  19060. name: "Macro",
  19061. height: math.unit(400, "feet")
  19062. },
  19063. {
  19064. name: "Deific",
  19065. height: math.unit(60, "miles")
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19071. {
  19072. front: {
  19073. height: math.unit(2.35, "meters"),
  19074. weight: math.unit(119, "kg"),
  19075. name: "Front",
  19076. image: {
  19077. source: "./media/characters/ilia/front.svg",
  19078. extra: 1285 / 1255,
  19079. bottom: 0.06
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(2.35, "meters")
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(140, "meters"),
  19091. default: true
  19092. },
  19093. {
  19094. name: "Megamacro",
  19095. height: math.unit(100, "miles")
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(6 + 5 / 12, "feet"),
  19104. weight: math.unit(190, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/kingdead/front.svg",
  19108. extra: 1228 / 1177
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Micro",
  19115. height: math.unit(7, "inches")
  19116. },
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(6 + 5 / 12, "feet")
  19120. },
  19121. {
  19122. name: "Macro",
  19123. height: math.unit(150, "feet"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Megamacro",
  19128. height: math.unit(200, "miles")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(8, "feet"),
  19137. weight: math.unit(600, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/kyrehx/front.svg",
  19141. extra: 1195 / 1095,
  19142. bottom: 0.034
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(2, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(8, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(255, "feet")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19167. weight: math.unit(184, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/xang/front.svg",
  19171. extra: 845 / 755
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(0.935 * 146, "feet")
  19184. },
  19185. {
  19186. name: "Megamacro",
  19187. height: math.unit(0.935 * 3, "miles")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19193. {
  19194. frontDressed: {
  19195. height: math.unit(5 + 7 / 12, "feet"),
  19196. weight: math.unit(140, "lb"),
  19197. name: "Front (Dressed)",
  19198. image: {
  19199. source: "./media/characters/doc-weardno/front-dressed.svg",
  19200. extra: 263 / 234
  19201. }
  19202. },
  19203. backDressed: {
  19204. height: math.unit(5 + 7 / 12, "feet"),
  19205. weight: math.unit(140, "lb"),
  19206. name: "Back (Dressed)",
  19207. image: {
  19208. source: "./media/characters/doc-weardno/back-dressed.svg",
  19209. extra: 266 / 238
  19210. }
  19211. },
  19212. front: {
  19213. height: math.unit(5 + 7 / 12, "feet"),
  19214. weight: math.unit(140, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/doc-weardno/front.svg",
  19218. extra: 254 / 233
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Micro",
  19225. height: math.unit(3, "inches")
  19226. },
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(5 + 7 / 12, "feet"),
  19230. default: true
  19231. },
  19232. {
  19233. name: "Macro",
  19234. height: math.unit(25, "feet")
  19235. },
  19236. {
  19237. name: "Megamacro",
  19238. height: math.unit(2, "miles")
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(6 + 2 / 12, "feet"),
  19247. weight: math.unit(153, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/seth-whilst/front.svg",
  19251. bottom: 0.07
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Micro",
  19258. height: math.unit(5, "inches")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(6 + 2 / 12, "feet"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(3, "inches"),
  19272. weight: math.unit(8, "grams"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/pocket-jabari/front.svg",
  19276. extra: 1024 / 974,
  19277. bottom: 0.039
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Minimicro",
  19284. height: math.unit(8, "mm")
  19285. },
  19286. {
  19287. name: "Micro",
  19288. height: math.unit(3, "inches"),
  19289. default: true
  19290. },
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(3, "feet")
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19299. {
  19300. frontDressed: {
  19301. height: math.unit(15, "feet"),
  19302. weight: math.unit(3280, "lb"),
  19303. name: "Front (Dressed)",
  19304. image: {
  19305. source: "./media/characters/sapphy/front-dressed.svg",
  19306. extra: 1951/1654,
  19307. bottom: 194/2145
  19308. },
  19309. form: "anthro",
  19310. default: true
  19311. },
  19312. backDressed: {
  19313. height: math.unit(15, "feet"),
  19314. weight: math.unit(3280, "lb"),
  19315. name: "Back (Dressed)",
  19316. image: {
  19317. source: "./media/characters/sapphy/back-dressed.svg",
  19318. extra: 2058/1918,
  19319. bottom: 125/2183
  19320. },
  19321. form: "anthro"
  19322. },
  19323. frontNude: {
  19324. height: math.unit(15, "feet"),
  19325. weight: math.unit(3280, "lb"),
  19326. name: "Front (Nude)",
  19327. image: {
  19328. source: "./media/characters/sapphy/front-nude.svg",
  19329. extra: 1951/1654,
  19330. bottom: 194/2145
  19331. },
  19332. form: "anthro"
  19333. },
  19334. backNude: {
  19335. height: math.unit(15, "feet"),
  19336. weight: math.unit(3280, "lb"),
  19337. name: "Back (Nude)",
  19338. image: {
  19339. source: "./media/characters/sapphy/back-nude.svg",
  19340. extra: 2058/1918,
  19341. bottom: 125/2183
  19342. },
  19343. form: "anthro"
  19344. },
  19345. full: {
  19346. height: math.unit(15, "feet"),
  19347. weight: math.unit(3280, "lb"),
  19348. name: "Full",
  19349. image: {
  19350. source: "./media/characters/sapphy/full.svg",
  19351. extra: 1396/1317,
  19352. bottom: 44/1440
  19353. },
  19354. form: "anthro"
  19355. },
  19356. dick: {
  19357. height: math.unit(3.8, "feet"),
  19358. name: "Dick",
  19359. image: {
  19360. source: "./media/characters/sapphy/dick.svg"
  19361. },
  19362. form: "anthro"
  19363. },
  19364. feral: {
  19365. height: math.unit(35, "feet"),
  19366. weight: math.unit(160, "tons"),
  19367. name: "Feral",
  19368. image: {
  19369. source: "./media/characters/sapphy/feral.svg",
  19370. extra: 1050/573,
  19371. bottom: 60/1110
  19372. },
  19373. form: "feral",
  19374. default: true
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(15, "feet"),
  19381. form: "anthro"
  19382. },
  19383. {
  19384. name: "Casual Macro",
  19385. height: math.unit(120, "feet"),
  19386. form: "anthro"
  19387. },
  19388. {
  19389. name: "Macro",
  19390. height: math.unit(2150, "feet"),
  19391. default: true,
  19392. form: "anthro"
  19393. },
  19394. {
  19395. name: "Megamacro",
  19396. height: math.unit(8, "miles"),
  19397. form: "anthro"
  19398. },
  19399. {
  19400. name: "Galaxy Mom",
  19401. height: math.unit(6, "megalightyears"),
  19402. form: "anthro"
  19403. },
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(35, "feet"),
  19407. form: "feral",
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(300, "feet"),
  19413. form: "feral"
  19414. },
  19415. {
  19416. name: "Galaxy Mom",
  19417. height: math.unit(10, "megalightyears"),
  19418. form: "feral"
  19419. },
  19420. ],
  19421. {
  19422. "anthro": {
  19423. name: "Anthro",
  19424. default: true
  19425. },
  19426. "feral": {
  19427. name: "Feral"
  19428. }
  19429. }
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(6, "feet"),
  19436. weight: math.unit(170, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/kiro/front.svg",
  19440. extra: 1064 / 1012,
  19441. bottom: 0.052
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Micro",
  19448. height: math.unit(6, "inches")
  19449. },
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(6, "feet"),
  19453. default: true
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(72, "feet")
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(5 + 9 / 12, "feet"),
  19466. weight: math.unit(175, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/irishfox/front.svg",
  19470. extra: 1912 / 1680,
  19471. bottom: 0.02
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Nano",
  19478. height: math.unit(1, "mm")
  19479. },
  19480. {
  19481. name: "Micro",
  19482. height: math.unit(2, "inches")
  19483. },
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(5 + 9 / 12, "feet"),
  19487. default: true
  19488. },
  19489. {
  19490. name: "Macro",
  19491. height: math.unit(45, "feet")
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(6 + 1 / 12, "feet"),
  19500. weight: math.unit(75, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/aronai-sieyes/front.svg",
  19504. extra: 1532/1450,
  19505. bottom: 42/1574
  19506. }
  19507. },
  19508. side: {
  19509. height: math.unit(6 + 1 / 12, "feet"),
  19510. weight: math.unit(75, "lb"),
  19511. name: "Side",
  19512. image: {
  19513. source: "./media/characters/aronai-sieyes/side.svg",
  19514. extra: 1422/1365,
  19515. bottom: 148/1570
  19516. }
  19517. },
  19518. back: {
  19519. height: math.unit(6 + 1 / 12, "feet"),
  19520. weight: math.unit(75, "lb"),
  19521. name: "Back",
  19522. image: {
  19523. source: "./media/characters/aronai-sieyes/back.svg",
  19524. extra: 1526/1464,
  19525. bottom: 51/1577
  19526. }
  19527. },
  19528. dressed: {
  19529. height: math.unit(6 + 1 / 12, "feet"),
  19530. weight: math.unit(75, "lb"),
  19531. name: "Dressed",
  19532. image: {
  19533. source: "./media/characters/aronai-sieyes/dressed.svg",
  19534. extra: 1559/1483,
  19535. bottom: 39/1598
  19536. }
  19537. },
  19538. slit: {
  19539. height: math.unit(1.3, "feet"),
  19540. name: "Slit",
  19541. image: {
  19542. source: "./media/characters/aronai-sieyes/slit.svg"
  19543. }
  19544. },
  19545. slitSpread: {
  19546. height: math.unit(0.9, "feet"),
  19547. name: "Slit (Spread)",
  19548. image: {
  19549. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19550. }
  19551. },
  19552. rump: {
  19553. height: math.unit(1.3, "feet"),
  19554. name: "Rump",
  19555. image: {
  19556. source: "./media/characters/aronai-sieyes/rump.svg"
  19557. }
  19558. },
  19559. maw: {
  19560. height: math.unit(1.25, "feet"),
  19561. name: "Maw",
  19562. image: {
  19563. source: "./media/characters/aronai-sieyes/maw.svg"
  19564. }
  19565. },
  19566. feral: {
  19567. height: math.unit(18, "feet"),
  19568. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19569. name: "Feral",
  19570. image: {
  19571. source: "./media/characters/aronai-sieyes/feral.svg",
  19572. extra: 1530 / 1240,
  19573. bottom: 0.035
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Micro",
  19580. height: math.unit(2, "inches")
  19581. },
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(6 + 1 / 12, "feet"),
  19585. default: true
  19586. }
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19591. {
  19592. front: {
  19593. height: math.unit(12, "feet"),
  19594. weight: math.unit(410, "kg"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/xuna/front.svg",
  19598. extra: 2184 / 1980
  19599. }
  19600. },
  19601. side: {
  19602. height: math.unit(12, "feet"),
  19603. weight: math.unit(410, "kg"),
  19604. name: "Side",
  19605. image: {
  19606. source: "./media/characters/xuna/side.svg",
  19607. extra: 2184 / 1980
  19608. }
  19609. },
  19610. back: {
  19611. height: math.unit(12, "feet"),
  19612. weight: math.unit(410, "kg"),
  19613. name: "Back",
  19614. image: {
  19615. source: "./media/characters/xuna/back.svg",
  19616. extra: 2184 / 1980
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Nano glow",
  19623. height: math.unit(10, "nm")
  19624. },
  19625. {
  19626. name: "Micro floof",
  19627. height: math.unit(0.3, "m")
  19628. },
  19629. {
  19630. name: "Huggable softy boi",
  19631. height: math.unit(3.6576, "m"),
  19632. default: true
  19633. },
  19634. {
  19635. name: "Admirable floof",
  19636. height: math.unit(80, "meters")
  19637. },
  19638. {
  19639. name: "Gentle macro",
  19640. height: math.unit(300, "meters")
  19641. },
  19642. {
  19643. name: "Very careful floof",
  19644. height: math.unit(3200, "meters")
  19645. },
  19646. {
  19647. name: "The mega floof",
  19648. height: math.unit(36000, "meters")
  19649. },
  19650. {
  19651. name: "Giga-fur-Wicker",
  19652. height: math.unit(4800000, "meters")
  19653. },
  19654. {
  19655. name: "Licky world",
  19656. height: math.unit(20000000, "meters")
  19657. },
  19658. {
  19659. name: "Floofy cyan sun",
  19660. height: math.unit(1500000000, "meters")
  19661. },
  19662. {
  19663. name: "Milky Wicker",
  19664. height: math.unit(1000000000000000000000, "meters")
  19665. },
  19666. {
  19667. name: "The observing Wicker",
  19668. height: math.unit(999999999999999999999999999, "meters")
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(5 + 9 / 12, "feet"),
  19677. weight: math.unit(150, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/arokha-sieyes/front.svg",
  19681. extra: 1425 / 1284,
  19682. bottom: 0.05
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(5 + 9 / 12, "feet")
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(30, "meters"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(6, "feet"),
  19703. weight: math.unit(180, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/arokh-sieyes/front.svg",
  19707. extra: 1830 / 1769,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(6, "feet")
  19716. },
  19717. {
  19718. name: "Macro",
  19719. height: math.unit(30, "meters"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19726. {
  19727. side: {
  19728. height: math.unit(13 + 1 / 12, "feet"),
  19729. weight: math.unit(8.5, "tonnes"),
  19730. name: "Side",
  19731. image: {
  19732. source: "./media/characters/goldeneye/side.svg",
  19733. extra: 1182 / 778,
  19734. bottom: 0.067
  19735. }
  19736. },
  19737. paw: {
  19738. height: math.unit(3.4, "feet"),
  19739. name: "Paw",
  19740. image: {
  19741. source: "./media/characters/goldeneye/paw.svg"
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(13 + 1 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19755. {
  19756. front: {
  19757. height: math.unit(6 + 1 / 12, "feet"),
  19758. weight: math.unit(210, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/leonardo-lycheborne/front.svg",
  19762. extra: 776/723,
  19763. bottom: 34/810
  19764. }
  19765. },
  19766. side: {
  19767. height: math.unit(6 + 1 / 12, "feet"),
  19768. weight: math.unit(210, "lb"),
  19769. name: "Side",
  19770. image: {
  19771. source: "./media/characters/leonardo-lycheborne/side.svg",
  19772. extra: 780/728,
  19773. bottom: 12/792
  19774. }
  19775. },
  19776. back: {
  19777. height: math.unit(6 + 1 / 12, "feet"),
  19778. weight: math.unit(210, "lb"),
  19779. name: "Back",
  19780. image: {
  19781. source: "./media/characters/leonardo-lycheborne/back.svg",
  19782. extra: 775/721,
  19783. bottom: 17/792
  19784. }
  19785. },
  19786. hand: {
  19787. height: math.unit(1.08, "feet"),
  19788. name: "Hand",
  19789. image: {
  19790. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19791. }
  19792. },
  19793. foot: {
  19794. height: math.unit(1.32, "feet"),
  19795. name: "Foot",
  19796. image: {
  19797. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19798. }
  19799. },
  19800. maw: {
  19801. height: math.unit(1, "feet"),
  19802. name: "Maw",
  19803. image: {
  19804. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19805. }
  19806. },
  19807. were: {
  19808. height: math.unit(20, "feet"),
  19809. weight: math.unit(7800, "lb"),
  19810. name: "Were",
  19811. image: {
  19812. source: "./media/characters/leonardo-lycheborne/were.svg",
  19813. extra: 1224/1165,
  19814. bottom: 72/1296
  19815. }
  19816. },
  19817. feral: {
  19818. height: math.unit(7.5, "feet"),
  19819. weight: math.unit(600, "lb"),
  19820. name: "Feral",
  19821. image: {
  19822. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19823. extra: 797/702,
  19824. bottom: 139/936
  19825. }
  19826. },
  19827. taur: {
  19828. height: math.unit(11, "feet"),
  19829. weight: math.unit(3300, "lb"),
  19830. name: "Taur",
  19831. image: {
  19832. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19833. extra: 1271/1197,
  19834. bottom: 47/1318
  19835. }
  19836. },
  19837. barghest: {
  19838. height: math.unit(11, "feet"),
  19839. weight: math.unit(1300, "lb"),
  19840. name: "Barghest",
  19841. image: {
  19842. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19843. extra: 1291/1204,
  19844. bottom: 37/1328
  19845. }
  19846. },
  19847. dick: {
  19848. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19849. name: "Dick",
  19850. image: {
  19851. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19852. }
  19853. },
  19854. dickWere: {
  19855. height: math.unit((20) / 3.8, "feet"),
  19856. name: "Dick (Were)",
  19857. image: {
  19858. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6 + 1 / 12, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19872. {
  19873. front: {
  19874. height: math.unit(10, "feet"),
  19875. weight: math.unit(350, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/jet/front.svg",
  19879. extra: 2050 / 1980,
  19880. bottom: 0.013
  19881. }
  19882. },
  19883. back: {
  19884. height: math.unit(10, "feet"),
  19885. weight: math.unit(350, "lb"),
  19886. name: "Back",
  19887. image: {
  19888. source: "./media/characters/jet/back.svg",
  19889. extra: 2050 / 1980,
  19890. bottom: 0.013
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Micro",
  19897. height: math.unit(6, "inches")
  19898. },
  19899. {
  19900. name: "Normal",
  19901. height: math.unit(10, "feet"),
  19902. default: true
  19903. },
  19904. {
  19905. name: "Macro",
  19906. height: math.unit(100, "feet")
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(15, "feet"),
  19915. weight: math.unit(2800, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/tanarath/front.svg",
  19919. extra: 2392 / 2220,
  19920. bottom: 0.03
  19921. }
  19922. },
  19923. back: {
  19924. height: math.unit(15, "feet"),
  19925. weight: math.unit(2800, "lb"),
  19926. name: "Back",
  19927. image: {
  19928. source: "./media/characters/tanarath/back.svg",
  19929. extra: 2392 / 2220,
  19930. bottom: 0.03
  19931. }
  19932. },
  19933. },
  19934. [
  19935. {
  19936. name: "Normal",
  19937. height: math.unit(15, "feet"),
  19938. default: true
  19939. },
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(7 + 1 / 12, "feet"),
  19947. weight: math.unit(175, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/patty-cattybatty/front.svg",
  19951. extra: 908 / 874,
  19952. bottom: 0.025
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Micro",
  19959. height: math.unit(1, "inch")
  19960. },
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(7 + 1 / 12, "feet")
  19964. },
  19965. {
  19966. name: "Mini Macro",
  19967. height: math.unit(155, "feet")
  19968. },
  19969. {
  19970. name: "Macro",
  19971. height: math.unit(1077, "feet")
  19972. },
  19973. {
  19974. name: "Mega Macro",
  19975. height: math.unit(47650, "feet"),
  19976. default: true
  19977. },
  19978. {
  19979. name: "Giga Macro",
  19980. height: math.unit(440, "miles")
  19981. },
  19982. {
  19983. name: "Tera Macro",
  19984. height: math.unit(8700, "miles")
  19985. },
  19986. {
  19987. name: "Planetary Macro",
  19988. height: math.unit(32700, "miles")
  19989. },
  19990. {
  19991. name: "Solar Macro",
  19992. height: math.unit(550000, "miles")
  19993. },
  19994. {
  19995. name: "Celestial Macro",
  19996. height: math.unit(2.5, "AU")
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(4 + 5 / 12, "feet"),
  20005. weight: math.unit(90, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/cappu/front.svg",
  20009. extra: 1247 / 1152,
  20010. bottom: 0.012
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(4 + 5 / 12, "feet"),
  20018. default: true
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20024. {
  20025. frontDressed: {
  20026. height: math.unit(70, "cm"),
  20027. weight: math.unit(6, "kg"),
  20028. name: "Front (Dressed)",
  20029. image: {
  20030. source: "./media/characters/sebi/front-dressed.svg",
  20031. extra: 713.5 / 686.5,
  20032. bottom: 0.003
  20033. }
  20034. },
  20035. front: {
  20036. height: math.unit(70, "cm"),
  20037. weight: math.unit(5, "kg"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/sebi/front.svg",
  20041. extra: 713.5 / 686.5,
  20042. bottom: 0.003
  20043. }
  20044. }
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(70, "cm"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Macro",
  20054. height: math.unit(8, "meters")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(6, "feet"),
  20063. weight: math.unit(150, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/typhek/front.svg",
  20067. extra: 1948 / 1929,
  20068. bottom: 0.025
  20069. }
  20070. },
  20071. side: {
  20072. height: math.unit(6, "feet"),
  20073. weight: math.unit(150, "lb"),
  20074. name: "Side",
  20075. image: {
  20076. source: "./media/characters/typhek/side.svg",
  20077. extra: 2034 / 2010,
  20078. bottom: 0.003
  20079. }
  20080. },
  20081. back: {
  20082. height: math.unit(6, "feet"),
  20083. weight: math.unit(150, "lb"),
  20084. name: "Back",
  20085. image: {
  20086. source: "./media/characters/typhek/back.svg",
  20087. extra: 2005 / 1978,
  20088. bottom: 0.004
  20089. }
  20090. },
  20091. palm: {
  20092. height: math.unit(1.2, "feet"),
  20093. name: "Palm",
  20094. image: {
  20095. source: "./media/characters/typhek/palm.svg"
  20096. }
  20097. },
  20098. fist: {
  20099. height: math.unit(1.1, "feet"),
  20100. name: "Fist",
  20101. image: {
  20102. source: "./media/characters/typhek/fist.svg"
  20103. }
  20104. },
  20105. foot: {
  20106. height: math.unit(1.57, "feet"),
  20107. name: "Foot",
  20108. image: {
  20109. source: "./media/characters/typhek/foot.svg"
  20110. }
  20111. },
  20112. sole: {
  20113. height: math.unit(2.05, "feet"),
  20114. name: "Sole",
  20115. image: {
  20116. source: "./media/characters/typhek/sole.svg"
  20117. }
  20118. },
  20119. },
  20120. [
  20121. {
  20122. name: "Macro",
  20123. height: math.unit(40, "stories"),
  20124. default: true
  20125. },
  20126. {
  20127. name: "Megamacro",
  20128. height: math.unit(1, "mile")
  20129. },
  20130. {
  20131. name: "Gigamacro",
  20132. height: math.unit(4000, "solarradii")
  20133. },
  20134. {
  20135. name: "Universal",
  20136. height: math.unit(1.1, "universes")
  20137. }
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20142. {
  20143. side: {
  20144. height: math.unit(5 + 7 / 12, "feet"),
  20145. weight: math.unit(150, "lb"),
  20146. name: "Side",
  20147. image: {
  20148. source: "./media/characters/kassy/side.svg",
  20149. extra: 1280 / 1225,
  20150. bottom: 0.002
  20151. }
  20152. },
  20153. front: {
  20154. height: math.unit(5 + 7 / 12, "feet"),
  20155. weight: math.unit(150, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/kassy/front.svg",
  20159. extra: 1280 / 1225,
  20160. bottom: 0.025
  20161. }
  20162. },
  20163. back: {
  20164. height: math.unit(5 + 7 / 12, "feet"),
  20165. weight: math.unit(150, "lb"),
  20166. name: "Back",
  20167. image: {
  20168. source: "./media/characters/kassy/back.svg",
  20169. extra: 1280 / 1225,
  20170. bottom: 0.002
  20171. }
  20172. },
  20173. foot: {
  20174. height: math.unit(1.266, "feet"),
  20175. name: "Foot",
  20176. image: {
  20177. source: "./media/characters/kassy/foot.svg"
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 7 / 12, "feet")
  20185. },
  20186. {
  20187. name: "Macro",
  20188. height: math.unit(137, "feet"),
  20189. default: true
  20190. },
  20191. {
  20192. name: "Megamacro",
  20193. height: math.unit(1, "mile")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(6 + 1 / 12, "feet"),
  20202. weight: math.unit(200, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/neil/front.svg",
  20206. extra: 1326 / 1250,
  20207. bottom: 0.023
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(6 + 1 / 12, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Macro",
  20219. height: math.unit(200, "feet")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 9 / 12, "feet"),
  20228. weight: math.unit(190, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/atticus/front.svg",
  20232. extra: 2934 / 2785,
  20233. bottom: 0.025
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(5 + 9 / 12, "feet"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Macro",
  20245. height: math.unit(180, "feet")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20251. {
  20252. side: {
  20253. height: math.unit(9, "feet"),
  20254. weight: math.unit(650, "lb"),
  20255. name: "Side",
  20256. image: {
  20257. source: "./media/characters/milo/side.svg",
  20258. extra: 2644 / 2310,
  20259. bottom: 0.032
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(9, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(300, "feet")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20277. {
  20278. side: {
  20279. height: math.unit(8, "meters"),
  20280. weight: math.unit(90000, "kg"),
  20281. name: "Side",
  20282. image: {
  20283. source: "./media/characters/ijzer/side.svg",
  20284. extra: 2756 / 1600,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Small",
  20292. height: math.unit(3, "meters")
  20293. },
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(8, "meters"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Normal+",
  20301. height: math.unit(10, "meters")
  20302. },
  20303. {
  20304. name: "Bigger",
  20305. height: math.unit(24, "meters")
  20306. },
  20307. {
  20308. name: "Huge",
  20309. height: math.unit(80, "meters")
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(6 + 2 / 12, "feet"),
  20318. weight: math.unit(153, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/luca-cervicum/front.svg",
  20322. extra: 370 / 327,
  20323. bottom: 0.015
  20324. }
  20325. },
  20326. back: {
  20327. height: math.unit(6 + 2 / 12, "feet"),
  20328. weight: math.unit(153, "lb"),
  20329. name: "Back",
  20330. image: {
  20331. source: "./media/characters/luca-cervicum/back.svg",
  20332. extra: 367 / 333,
  20333. bottom: 0.005
  20334. }
  20335. },
  20336. frontGear: {
  20337. height: math.unit(6 + 2 / 12, "feet"),
  20338. weight: math.unit(173, "lb"),
  20339. name: "Front (Gear)",
  20340. image: {
  20341. source: "./media/characters/luca-cervicum/front-gear.svg",
  20342. extra: 377 / 333,
  20343. bottom: 0.006
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(6 + 2 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(6 + 1 / 12, "feet"),
  20360. weight: math.unit(304, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/oliver/front.svg",
  20364. extra: 157 / 143,
  20365. bottom: 0.08
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(6 + 1 / 12, "feet"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20379. {
  20380. front: {
  20381. height: math.unit(5 + 7 / 12, "feet"),
  20382. weight: math.unit(140, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/shane/front.svg",
  20386. extra: 304 / 289,
  20387. bottom: 0.005
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(5 + 7 / 12, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(5 + 9 / 12, "feet"),
  20404. weight: math.unit(178, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/shin/front.svg",
  20408. extra: 159 / 151,
  20409. bottom: 0.015
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(5 + 9 / 12, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20423. {
  20424. front: {
  20425. height: math.unit(5 + 10 / 12, "feet"),
  20426. weight: math.unit(168, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/xerxes/front.svg",
  20430. extra: 282 / 260,
  20431. bottom: 0.045
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(5 + 10 / 12, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(6 + 7 / 12, "feet"),
  20448. weight: math.unit(208, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/chaska/front.svg",
  20452. extra: 332 / 319,
  20453. bottom: 0.015
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(6 + 7 / 12, "feet"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(5 + 8 / 12, "feet"),
  20470. weight: math.unit(208, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/enuk/front.svg",
  20474. extra: 437 / 406,
  20475. bottom: 0.02
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 8 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(5 + 10 / 12, "feet"),
  20492. weight: math.unit(252, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/bruun/front.svg",
  20496. extra: 197 / 187,
  20497. bottom: 0.012
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Normal",
  20504. height: math.unit(5 + 10 / 12, "feet"),
  20505. default: true
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(6 + 10 / 12, "feet"),
  20514. weight: math.unit(255, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/alexeev/front.svg",
  20518. extra: 213 / 200,
  20519. bottom: 0.05
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(6 + 10 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(2 + 8 / 12, "feet"),
  20536. weight: math.unit(22, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/evelyn/front.svg",
  20540. extra: 208 / 180
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(2 + 8 / 12, "feet"),
  20548. default: true
  20549. },
  20550. ]
  20551. ))
  20552. characterMakers.push(() => makeCharacter(
  20553. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20554. {
  20555. front: {
  20556. height: math.unit(5 + 9 / 12, "feet"),
  20557. weight: math.unit(139, "lb"),
  20558. name: "Front",
  20559. image: {
  20560. source: "./media/characters/inca/front.svg",
  20561. extra: 294 / 291,
  20562. bottom: 0.03
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Normal",
  20569. height: math.unit(5 + 9 / 12, "feet"),
  20570. default: true
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(6 + 3 / 12, "feet"),
  20579. weight: math.unit(185, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/mera/front.svg",
  20583. extra: 291 / 277,
  20584. bottom: 0.03
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(6 + 3 / 12, "feet"),
  20592. default: true
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(6 + 7 / 12, "feet"),
  20601. weight: math.unit(160, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/ceres/front.svg",
  20605. extra: 1023 / 950,
  20606. bottom: 0.027
  20607. }
  20608. },
  20609. back: {
  20610. height: math.unit(6 + 7 / 12, "feet"),
  20611. weight: math.unit(160, "lb"),
  20612. name: "Back",
  20613. image: {
  20614. source: "./media/characters/ceres/back.svg",
  20615. extra: 1023 / 950
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(6 + 7 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(5 + 10 / 12, "feet"),
  20632. weight: math.unit(150, "lb"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/kris/front.svg",
  20636. extra: 885 / 803,
  20637. bottom: 0.03
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(5 + 10 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(7, "feet"),
  20654. weight: math.unit(120, "kg"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/taluthus/front.svg",
  20658. extra: 903 / 833,
  20659. bottom: 0.015
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(7, "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Macro",
  20671. height: math.unit(300, "feet")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(5 + 9 / 12, "feet"),
  20680. weight: math.unit(145, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/dawn/front.svg",
  20684. extra: 2094 / 2016,
  20685. bottom: 0.025
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(5 + 9 / 12, "feet"),
  20690. weight: math.unit(160, "lb"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/dawn/back.svg",
  20694. extra: 2112 / 2080,
  20695. bottom: 0.005
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6 + 7 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20709. {
  20710. anthro: {
  20711. height: math.unit(8 + 3 / 12, "feet"),
  20712. weight: math.unit(450, "lb"),
  20713. name: "Anthro",
  20714. image: {
  20715. source: "./media/characters/arador/anthro.svg",
  20716. extra: 1835 / 1718,
  20717. bottom: 0.025
  20718. }
  20719. },
  20720. feral: {
  20721. height: math.unit(4, "feet"),
  20722. weight: math.unit(200, "lb"),
  20723. name: "Feral",
  20724. image: {
  20725. source: "./media/characters/arador/feral.svg",
  20726. extra: 1683 / 1514,
  20727. bottom: 0.07
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(8 + 3 / 12, "feet")
  20735. },
  20736. {
  20737. name: "Macro",
  20738. height: math.unit(82.5, "feet"),
  20739. default: true
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(5 + 10 / 12, "feet"),
  20748. weight: math.unit(125, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/dharsi/front.svg",
  20752. extra: 716 / 630,
  20753. bottom: 0.035
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Nano",
  20760. height: math.unit(100, "nm")
  20761. },
  20762. {
  20763. name: "Micro",
  20764. height: math.unit(2, "inches")
  20765. },
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(5 + 10 / 12, "feet"),
  20769. default: true
  20770. },
  20771. {
  20772. name: "Macro",
  20773. height: math.unit(1000, "feet")
  20774. },
  20775. {
  20776. name: "Megamacro",
  20777. height: math.unit(10, "miles")
  20778. },
  20779. {
  20780. name: "Gigamacro",
  20781. height: math.unit(3000, "miles")
  20782. },
  20783. {
  20784. name: "Teramacro",
  20785. height: math.unit(500000, "miles")
  20786. },
  20787. {
  20788. name: "Teramacro+",
  20789. height: math.unit(30, "galaxies")
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20795. {
  20796. front: {
  20797. height: math.unit(6, "feet"),
  20798. weight: math.unit(150, "lb"),
  20799. name: "Front",
  20800. image: {
  20801. source: "./media/characters/deathy/front.svg",
  20802. extra: 1552 / 1463,
  20803. bottom: 0.025
  20804. }
  20805. },
  20806. side: {
  20807. height: math.unit(6, "feet"),
  20808. weight: math.unit(150, "lb"),
  20809. name: "Side",
  20810. image: {
  20811. source: "./media/characters/deathy/side.svg",
  20812. extra: 1604 / 1455,
  20813. bottom: 0.025
  20814. }
  20815. },
  20816. back: {
  20817. height: math.unit(6, "feet"),
  20818. weight: math.unit(150, "lb"),
  20819. name: "Back",
  20820. image: {
  20821. source: "./media/characters/deathy/back.svg",
  20822. extra: 1580 / 1463,
  20823. bottom: 0.005
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Micro",
  20830. height: math.unit(5, "millimeters")
  20831. },
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(6 + 5 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20841. {
  20842. front: {
  20843. height: math.unit(16, "feet"),
  20844. weight: math.unit(4000, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/juniper/front.svg",
  20848. bottom: 0.04
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(16, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(6, "feet"),
  20865. weight: math.unit(150, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/hipster/front.svg",
  20869. extra: 1312 / 1209,
  20870. bottom: 0.025
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(6, "feet"),
  20875. weight: math.unit(150, "lb"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/hipster/back.svg",
  20879. extra: 1281 / 1196,
  20880. bottom: 0.01
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Micro",
  20887. height: math.unit(1, "mm")
  20888. },
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(4, "inches"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Macro",
  20896. height: math.unit(500, "feet")
  20897. },
  20898. {
  20899. name: "Megamacro",
  20900. height: math.unit(1000, "miles")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6, "feet"),
  20909. weight: math.unit(150, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/tendirmuldr/front.svg",
  20913. extra: 1878 / 1772,
  20914. bottom: 0.015
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Megamacro",
  20921. height: math.unit(1500, "miles"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20928. {
  20929. front: {
  20930. height: math.unit(14, "feet"),
  20931. weight: math.unit(12000, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/mort/front.svg",
  20935. extra: 365 / 318,
  20936. bottom: 0.01
  20937. }
  20938. },
  20939. side: {
  20940. height: math.unit(14, "feet"),
  20941. weight: math.unit(12000, "lb"),
  20942. name: "Side",
  20943. image: {
  20944. source: "./media/characters/mort/side.svg",
  20945. extra: 365 / 318,
  20946. bottom: 0.052
  20947. },
  20948. default: true
  20949. },
  20950. back: {
  20951. height: math.unit(14, "feet"),
  20952. weight: math.unit(12000, "lb"),
  20953. name: "Back",
  20954. image: {
  20955. source: "./media/characters/mort/back.svg",
  20956. extra: 371 / 332,
  20957. bottom: 0.18
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(14, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20971. {
  20972. front: {
  20973. height: math.unit(8, "feet"),
  20974. weight: math.unit(1, "ton"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/lycoa/front.svg",
  20978. extra: 1836/1728,
  20979. bottom: 81/1917
  20980. }
  20981. },
  20982. back: {
  20983. height: math.unit(8, "feet"),
  20984. weight: math.unit(1, "ton"),
  20985. name: "Back",
  20986. image: {
  20987. source: "./media/characters/lycoa/back.svg",
  20988. extra: 1785/1720,
  20989. bottom: 91/1876
  20990. }
  20991. },
  20992. head: {
  20993. height: math.unit(1.6243, "feet"),
  20994. name: "Head",
  20995. image: {
  20996. source: "./media/characters/lycoa/head.svg",
  20997. extra: 1011/782,
  20998. bottom: 0/1011
  20999. }
  21000. },
  21001. tailmaw: {
  21002. height: math.unit(1.9, "feet"),
  21003. name: "Tailmaw",
  21004. image: {
  21005. source: "./media/characters/lycoa/tailmaw.svg"
  21006. }
  21007. },
  21008. tentacles: {
  21009. height: math.unit(2.1, "feet"),
  21010. name: "Tentacles",
  21011. image: {
  21012. source: "./media/characters/lycoa/tentacles.svg"
  21013. }
  21014. },
  21015. dick: {
  21016. height: math.unit(1.73, "feet"),
  21017. name: "Dick",
  21018. image: {
  21019. source: "./media/characters/lycoa/dick.svg"
  21020. }
  21021. },
  21022. },
  21023. [
  21024. {
  21025. name: "Normal",
  21026. height: math.unit(8, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Macro",
  21031. height: math.unit(30, "feet")
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21037. {
  21038. front: {
  21039. height: math.unit(4 + 2 / 12, "feet"),
  21040. weight: math.unit(70, "lb"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/naldara/front.svg",
  21044. extra: 1664/1387,
  21045. bottom: 81/1745
  21046. },
  21047. form: "anthro",
  21048. default: true
  21049. },
  21050. naga: {
  21051. height: math.unit(20, "feet"),
  21052. weight: math.unit(15000, "kg"),
  21053. name: "Front",
  21054. image: {
  21055. source: "./media/characters/naldara/naga.svg",
  21056. extra: 1590/1396,
  21057. bottom: 285/1875
  21058. },
  21059. form: "naga",
  21060. default: true
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(4 + 2 / 12, "feet"),
  21067. form: "anthro",
  21068. default: true
  21069. },
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(20, "feet"),
  21073. form: "naga",
  21074. default: true
  21075. },
  21076. ],
  21077. {
  21078. "anthro": {
  21079. name: "Anthro",
  21080. default: true
  21081. },
  21082. "naga": {
  21083. name: "Naga"
  21084. }
  21085. }
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(13 + 7 / 12, "feet"),
  21092. weight: math.unit(1500, "lb"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/briar/front.svg",
  21096. extra: 1223/1157,
  21097. bottom: 123/1346
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(13 + 7 / 12, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21111. {
  21112. side: {
  21113. height: math.unit(16, "feet"),
  21114. weight: math.unit(500, "lb"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/vanguard/side.svg",
  21118. extra: 1022/914,
  21119. bottom: 30/1052
  21120. }
  21121. },
  21122. sideAlt: {
  21123. height: math.unit(10, "feet"),
  21124. weight: math.unit(500, "lb"),
  21125. name: "Side (Alt)",
  21126. image: {
  21127. source: "./media/characters/vanguard/side-alt.svg",
  21128. extra: 502 / 425,
  21129. bottom: 0.087
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Normal",
  21136. height: math.unit(17.71, "feet"),
  21137. default: true
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21143. {
  21144. front: {
  21145. height: math.unit(7.5, "feet"),
  21146. weight: math.unit(2, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/artemis/work-safe-front.svg",
  21150. extra: 1192 / 1075,
  21151. bottom: 0.07
  21152. },
  21153. form: "work-safe",
  21154. default: true
  21155. },
  21156. frontNsfw: {
  21157. height: math.unit(7.5, "feet"),
  21158. weight: math.unit(2, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/artemis/calibrating-front.svg",
  21162. extra: 1192 / 1075,
  21163. bottom: 0.07
  21164. },
  21165. form: "calibrating",
  21166. default: true
  21167. },
  21168. frontNsfwer: {
  21169. height: math.unit(7.5, "feet"),
  21170. weight: math.unit(2, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/artemis/oversize-load-front.svg",
  21174. extra: 1192 / 1075,
  21175. bottom: 0.07
  21176. },
  21177. form: "oversize-load",
  21178. default: true
  21179. },
  21180. side: {
  21181. height: math.unit(7.5, "feet"),
  21182. weight: math.unit(2, "lb"),
  21183. name: "Side",
  21184. image: {
  21185. source: "./media/characters/artemis/work-safe-side.svg",
  21186. extra: 1192 / 1075,
  21187. bottom: 0.07
  21188. },
  21189. form: "work-safe"
  21190. },
  21191. sideNsfw: {
  21192. height: math.unit(7.5, "feet"),
  21193. weight: math.unit(2, "lb"),
  21194. name: "Side",
  21195. image: {
  21196. source: "./media/characters/artemis/calibrating-side.svg",
  21197. extra: 1192 / 1075,
  21198. bottom: 0.07
  21199. },
  21200. form: "calibrating"
  21201. },
  21202. sideNsfwer: {
  21203. height: math.unit(7.5, "feet"),
  21204. weight: math.unit(2, "lb"),
  21205. name: "Side",
  21206. image: {
  21207. source: "./media/characters/artemis/oversize-load-side.svg",
  21208. extra: 1192 / 1075,
  21209. bottom: 0.07
  21210. },
  21211. form: "oversize-load"
  21212. },
  21213. maw: {
  21214. height: math.unit(1.1, "feet"),
  21215. name: "Maw",
  21216. image: {
  21217. source: "./media/characters/artemis/maw.svg"
  21218. },
  21219. form: "work-safe"
  21220. },
  21221. stomach: {
  21222. height: math.unit(0.95, "feet"),
  21223. name: "Stomach",
  21224. image: {
  21225. source: "./media/characters/artemis/stomach.svg"
  21226. },
  21227. form: "work-safe"
  21228. },
  21229. dickCanine: {
  21230. height: math.unit(1, "feet"),
  21231. name: "Dick (Canine)",
  21232. image: {
  21233. source: "./media/characters/artemis/dick-canine.svg"
  21234. },
  21235. form: "calibrating"
  21236. },
  21237. dickEquine: {
  21238. height: math.unit(0.85, "feet"),
  21239. name: "Dick (Equine)",
  21240. image: {
  21241. source: "./media/characters/artemis/dick-equine.svg"
  21242. },
  21243. form: "calibrating"
  21244. },
  21245. dickExotic: {
  21246. height: math.unit(0.85, "feet"),
  21247. name: "Dick (Exotic)",
  21248. image: {
  21249. source: "./media/characters/artemis/dick-exotic.svg"
  21250. },
  21251. form: "calibrating"
  21252. },
  21253. dickCanineBigger: {
  21254. height: math.unit(1 * 1.33, "feet"),
  21255. name: "Dick (Canine)",
  21256. image: {
  21257. source: "./media/characters/artemis/dick-canine.svg"
  21258. },
  21259. form: "oversize-load"
  21260. },
  21261. dickEquineBigger: {
  21262. height: math.unit(0.85 * 1.33, "feet"),
  21263. name: "Dick (Equine)",
  21264. image: {
  21265. source: "./media/characters/artemis/dick-equine.svg"
  21266. },
  21267. form: "oversize-load"
  21268. },
  21269. dickExoticBigger: {
  21270. height: math.unit(0.85 * 1.33, "feet"),
  21271. name: "Dick (Exotic)",
  21272. image: {
  21273. source: "./media/characters/artemis/dick-exotic.svg"
  21274. },
  21275. form: "oversize-load"
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(7.5, "feet"),
  21282. form: "work-safe",
  21283. default: true
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(7.5, "feet"),
  21288. form: "calibrating",
  21289. default: true
  21290. },
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(7.5, "feet"),
  21294. form: "oversize-load",
  21295. default: true
  21296. },
  21297. {
  21298. name: "Enlarged",
  21299. height: math.unit(12, "feet"),
  21300. form: "work-safe",
  21301. },
  21302. {
  21303. name: "Enlarged",
  21304. height: math.unit(12, "feet"),
  21305. form: "calibrating",
  21306. },
  21307. {
  21308. name: "Enlarged",
  21309. height: math.unit(12, "feet"),
  21310. form: "oversize-load",
  21311. },
  21312. ],
  21313. {
  21314. "work-safe": {
  21315. name: "Work-Safe",
  21316. default: true
  21317. },
  21318. "calibrating": {
  21319. name: "Calibrating"
  21320. },
  21321. "oversize-load": {
  21322. name: "Oversize Load"
  21323. }
  21324. }
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(5 + 3 / 12, "feet"),
  21331. weight: math.unit(160, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/kira/front.svg",
  21335. extra: 906 / 786,
  21336. bottom: 0.01
  21337. }
  21338. },
  21339. back: {
  21340. height: math.unit(5 + 3 / 12, "feet"),
  21341. weight: math.unit(160, "lb"),
  21342. name: "Back",
  21343. image: {
  21344. source: "./media/characters/kira/back.svg",
  21345. extra: 882 / 757,
  21346. bottom: 0.005
  21347. }
  21348. },
  21349. frontDressed: {
  21350. height: math.unit(5 + 3 / 12, "feet"),
  21351. weight: math.unit(160, "lb"),
  21352. name: "Front (Dressed)",
  21353. image: {
  21354. source: "./media/characters/kira/front-dressed.svg",
  21355. extra: 906 / 786,
  21356. bottom: 0.01
  21357. }
  21358. },
  21359. beans: {
  21360. height: math.unit(0.92, "feet"),
  21361. name: "Beans",
  21362. image: {
  21363. source: "./media/characters/kira/beans.svg"
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(5 + 3 / 12, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(5 + 4 / 12, "feet"),
  21380. weight: math.unit(145, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/scramble/front.svg",
  21384. extra: 763 / 727,
  21385. bottom: 0.05
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(5 + 4 / 12, "feet"),
  21390. weight: math.unit(145, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/scramble/back.svg",
  21394. extra: 826 / 737,
  21395. bottom: 0.002
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(5 + 4 / 12, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21409. {
  21410. side: {
  21411. height: math.unit(6 + 2 / 12, "feet"),
  21412. weight: math.unit(190, "lb"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/biscuit/side.svg",
  21416. extra: 858 / 791,
  21417. bottom: 0.044
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(6 + 2 / 12, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(5 + 2 / 12, "feet"),
  21434. weight: math.unit(120, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/poffin/front.svg",
  21438. extra: 786 / 680,
  21439. bottom: 0.005
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 2 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(6 + 3 / 12, "feet"),
  21456. weight: math.unit(519, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/dhari/front.svg",
  21460. extra: 1048 / 946,
  21461. bottom: 0.015
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(6 + 3 / 12, "feet"),
  21466. weight: math.unit(519, "lb"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/dhari/back.svg",
  21470. extra: 1048 / 931,
  21471. bottom: 0.005
  21472. }
  21473. },
  21474. frontDressed: {
  21475. height: math.unit(6 + 3 / 12, "feet"),
  21476. weight: math.unit(519, "lb"),
  21477. name: "Front (Dressed)",
  21478. image: {
  21479. source: "./media/characters/dhari/front-dressed.svg",
  21480. extra: 1713 / 1546,
  21481. bottom: 0.02
  21482. }
  21483. },
  21484. backDressed: {
  21485. height: math.unit(6 + 3 / 12, "feet"),
  21486. weight: math.unit(519, "lb"),
  21487. name: "Back (Dressed)",
  21488. image: {
  21489. source: "./media/characters/dhari/back-dressed.svg",
  21490. extra: 1699 / 1537,
  21491. bottom: 0.01
  21492. }
  21493. },
  21494. maw: {
  21495. height: math.unit(0.95, "feet"),
  21496. name: "Maw",
  21497. image: {
  21498. source: "./media/characters/dhari/maw.svg"
  21499. }
  21500. },
  21501. wereFront: {
  21502. height: math.unit(12 + 8 / 12, "feet"),
  21503. weight: math.unit(4000, "lb"),
  21504. name: "Front (Were)",
  21505. image: {
  21506. source: "./media/characters/dhari/were-front.svg",
  21507. extra: 1065 / 969,
  21508. bottom: 0.015
  21509. }
  21510. },
  21511. wereBack: {
  21512. height: math.unit(12 + 8 / 12, "feet"),
  21513. weight: math.unit(4000, "lb"),
  21514. name: "Back (Were)",
  21515. image: {
  21516. source: "./media/characters/dhari/were-back.svg",
  21517. extra: 1065 / 969,
  21518. bottom: 0.012
  21519. }
  21520. },
  21521. wereMaw: {
  21522. height: math.unit(0.625, "meters"),
  21523. name: "Maw (Were)",
  21524. image: {
  21525. source: "./media/characters/dhari/were-maw.svg"
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(6 + 3 / 12, "feet"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21539. {
  21540. anthro: {
  21541. height: math.unit(5 + 7 / 12, "feet"),
  21542. weight: math.unit(175, "lb"),
  21543. name: "Anthro",
  21544. image: {
  21545. source: "./media/characters/rena-dyne/anthro.svg",
  21546. extra: 1849 / 1785,
  21547. bottom: 0.005
  21548. }
  21549. },
  21550. taur: {
  21551. height: math.unit(15 + 6 / 12, "feet"),
  21552. weight: math.unit(8000, "lb"),
  21553. name: "Taur",
  21554. image: {
  21555. source: "./media/characters/rena-dyne/taur.svg",
  21556. extra: 2315 / 2234,
  21557. bottom: 0.033
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(5 + 7 / 12, "feet"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(8, "feet"),
  21574. weight: math.unit(600, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/weremeep/front.svg",
  21578. extra: 967 / 862,
  21579. bottom: 0.01
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(8, "feet"),
  21587. default: true
  21588. },
  21589. {
  21590. name: "Lorg",
  21591. height: math.unit(12, "feet")
  21592. },
  21593. {
  21594. name: "Oh Lawd She Comin'",
  21595. height: math.unit(20, "feet")
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21601. {
  21602. front: {
  21603. height: math.unit(4, "feet"),
  21604. weight: math.unit(90, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/reza/front.svg",
  21608. extra: 1183 / 1111,
  21609. bottom: 0.017
  21610. }
  21611. },
  21612. back: {
  21613. height: math.unit(4, "feet"),
  21614. weight: math.unit(90, "lb"),
  21615. name: "Back",
  21616. image: {
  21617. source: "./media/characters/reza/back.svg",
  21618. extra: 1183 / 1111,
  21619. bottom: 0.01
  21620. }
  21621. },
  21622. drake: {
  21623. height: math.unit(30, "feet"),
  21624. weight: math.unit(246960, "lb"),
  21625. name: "Drake",
  21626. image: {
  21627. source: "./media/characters/reza/drake.svg",
  21628. extra: 2350 / 2024,
  21629. bottom: 60.7 / 2403
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(4, "feet"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21643. {
  21644. side: {
  21645. height: math.unit(15, "feet"),
  21646. weight: math.unit(14, "tons"),
  21647. name: "Side",
  21648. image: {
  21649. source: "./media/characters/athea/side.svg",
  21650. extra: 960 / 540,
  21651. bottom: 0.003
  21652. }
  21653. },
  21654. sitting: {
  21655. height: math.unit(6 * 2.85, "feet"),
  21656. weight: math.unit(14, "tons"),
  21657. name: "Sitting",
  21658. image: {
  21659. source: "./media/characters/athea/sitting.svg",
  21660. extra: 621 / 581,
  21661. bottom: 0.075
  21662. }
  21663. },
  21664. maw: {
  21665. height: math.unit(7.59498031496063, "feet"),
  21666. name: "Maw",
  21667. image: {
  21668. source: "./media/characters/athea/maw.svg"
  21669. }
  21670. },
  21671. },
  21672. [
  21673. {
  21674. name: "Lap Cat",
  21675. height: math.unit(2.5, "feet")
  21676. },
  21677. {
  21678. name: "Minimacro",
  21679. height: math.unit(15, "feet"),
  21680. default: true
  21681. },
  21682. {
  21683. name: "Macro",
  21684. height: math.unit(120, "feet")
  21685. },
  21686. {
  21687. name: "Macro+",
  21688. height: math.unit(640, "feet")
  21689. },
  21690. {
  21691. name: "Colossus",
  21692. height: math.unit(2.2, "miles")
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(8 + 8 / 12, "feet"),
  21701. weight: math.unit(130, "kg"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/seroko/front.svg",
  21705. extra: 1385 / 1280,
  21706. bottom: 0.025
  21707. }
  21708. },
  21709. back: {
  21710. height: math.unit(8 + 8 / 12, "feet"),
  21711. weight: math.unit(130, "kg"),
  21712. name: "Back",
  21713. image: {
  21714. source: "./media/characters/seroko/back.svg",
  21715. extra: 1369 / 1238,
  21716. bottom: 0.018
  21717. }
  21718. },
  21719. frontDressed: {
  21720. height: math.unit(8 + 8 / 12, "feet"),
  21721. weight: math.unit(130, "kg"),
  21722. name: "Front (Dressed)",
  21723. image: {
  21724. source: "./media/characters/seroko/front-dressed.svg",
  21725. extra: 1366 / 1275,
  21726. bottom: 0.03
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(8 + 8 / 12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(5.5, "feet"),
  21743. weight: math.unit(160, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/quatzi/front.svg",
  21747. extra: 2346 / 2242,
  21748. bottom: 0.015
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5.5, "feet"),
  21756. default: true
  21757. },
  21758. {
  21759. name: "Big",
  21760. height: math.unit(7.7, "feet")
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(5 + 11 / 12, "feet"),
  21769. weight: math.unit(180, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/sen/front.svg",
  21773. extra: 1321 / 1254,
  21774. bottom: 0.015
  21775. }
  21776. },
  21777. side: {
  21778. height: math.unit(5 + 11 / 12, "feet"),
  21779. weight: math.unit(180, "lb"),
  21780. name: "Side",
  21781. image: {
  21782. source: "./media/characters/sen/side.svg",
  21783. extra: 1321 / 1254,
  21784. bottom: 0.007
  21785. }
  21786. },
  21787. back: {
  21788. height: math.unit(5 + 11 / 12, "feet"),
  21789. weight: math.unit(180, "lb"),
  21790. name: "Back",
  21791. image: {
  21792. source: "./media/characters/sen/back.svg",
  21793. extra: 1321 / 1254
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(5 + 11 / 12, "feet"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(166.6, "cm"),
  21810. weight: math.unit(66.6, "kg"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/fruity/front.svg",
  21814. extra: 1510 / 1386,
  21815. bottom: 0.04
  21816. }
  21817. },
  21818. back: {
  21819. height: math.unit(166.6, "cm"),
  21820. weight: math.unit(66.6, "lb"),
  21821. name: "Back",
  21822. image: {
  21823. source: "./media/characters/fruity/back.svg",
  21824. extra: 1563 / 1435,
  21825. bottom: 0.005
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(166.6, "cm"),
  21833. default: true
  21834. },
  21835. {
  21836. name: "Demonic",
  21837. height: math.unit(166.6, "feet")
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21843. {
  21844. side: {
  21845. height: math.unit(10, "feet"),
  21846. weight: math.unit(500, "lb"),
  21847. name: "Side",
  21848. image: {
  21849. source: "./media/characters/zost/side.svg",
  21850. extra: 2870/2533,
  21851. bottom: 252/3122
  21852. }
  21853. },
  21854. mawFront: {
  21855. height: math.unit(1.08, "meters"),
  21856. name: "Maw (Front)",
  21857. image: {
  21858. source: "./media/characters/zost/maw-front.svg"
  21859. }
  21860. },
  21861. mawSide: {
  21862. height: math.unit(2.66, "feet"),
  21863. name: "Maw (Side)",
  21864. image: {
  21865. source: "./media/characters/zost/maw-side.svg"
  21866. }
  21867. },
  21868. wingspan: {
  21869. height: math.unit(7.4, "feet"),
  21870. name: "Wingspan",
  21871. image: {
  21872. source: "./media/characters/zost/wingspan.svg"
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(10, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(5 + 4 / 12, "feet"),
  21889. weight: math.unit(120, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/luci/front.svg",
  21893. extra: 1985 / 1884,
  21894. bottom: 0.04
  21895. }
  21896. },
  21897. back: {
  21898. height: math.unit(5 + 4 / 12, "feet"),
  21899. weight: math.unit(120, "lb"),
  21900. name: "Back",
  21901. image: {
  21902. source: "./media/characters/luci/back.svg",
  21903. extra: 1892 / 1791,
  21904. bottom: 0.002
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(5 + 4 / 12, "feet"),
  21912. default: true
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(1500, "feet"),
  21921. weight: math.unit(3.8e6, "tons"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/2th/front.svg",
  21925. extra: 3489 / 3350,
  21926. bottom: 0.1
  21927. }
  21928. },
  21929. foot: {
  21930. height: math.unit(461, "feet"),
  21931. name: "Foot",
  21932. image: {
  21933. source: "./media/characters/2th/foot.svg"
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "\"Micro\"",
  21940. height: math.unit(15 + 7 / 12, "feet")
  21941. },
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(1500, "feet"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Macro",
  21949. height: math.unit(5000, "feet")
  21950. },
  21951. {
  21952. name: "Megamacro",
  21953. height: math.unit(15, "miles")
  21954. },
  21955. {
  21956. name: "Gigamacro",
  21957. height: math.unit(4000, "miles")
  21958. },
  21959. {
  21960. name: "Galactic",
  21961. height: math.unit(50, "AU")
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(5 + 6 / 12, "feet"),
  21970. weight: math.unit(220, "lb"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/amethyst/front.svg",
  21974. extra: 2078 / 2040,
  21975. bottom: 0.045
  21976. }
  21977. },
  21978. back: {
  21979. height: math.unit(5 + 6 / 12, "feet"),
  21980. weight: math.unit(220, "lb"),
  21981. name: "Back",
  21982. image: {
  21983. source: "./media/characters/amethyst/back.svg",
  21984. extra: 2021 / 1989,
  21985. bottom: 0.02
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Normal",
  21992. height: math.unit(5 + 6 / 12, "feet"),
  21993. default: true
  21994. },
  21995. ]
  21996. ))
  21997. characterMakers.push(() => makeCharacter(
  21998. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21999. {
  22000. front: {
  22001. height: math.unit(4 + 11 / 12, "feet"),
  22002. weight: math.unit(120, "lb"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/yumi-akiyama/front.svg",
  22006. extra: 1327 / 1235,
  22007. bottom: 0.02
  22008. }
  22009. },
  22010. back: {
  22011. height: math.unit(4 + 11 / 12, "feet"),
  22012. weight: math.unit(120, "lb"),
  22013. name: "Back",
  22014. image: {
  22015. source: "./media/characters/yumi-akiyama/back.svg",
  22016. extra: 1287 / 1245,
  22017. bottom: 0.002
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Galactic",
  22024. height: math.unit(50, "galaxies"),
  22025. default: true
  22026. },
  22027. {
  22028. name: "Universal",
  22029. height: math.unit(100, "universes")
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(8, "feet"),
  22038. weight: math.unit(500, "lb"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/rifter-yrmori/front.svg",
  22042. extra: 1180 / 1125,
  22043. bottom: 0.02
  22044. }
  22045. },
  22046. back: {
  22047. height: math.unit(8, "feet"),
  22048. weight: math.unit(500, "lb"),
  22049. name: "Back",
  22050. image: {
  22051. source: "./media/characters/rifter-yrmori/back.svg",
  22052. extra: 1190 / 1145,
  22053. bottom: 0.001
  22054. }
  22055. },
  22056. wings: {
  22057. height: math.unit(7.75, "feet"),
  22058. weight: math.unit(500, "lb"),
  22059. name: "Wings",
  22060. image: {
  22061. source: "./media/characters/rifter-yrmori/wings.svg",
  22062. extra: 1357 / 1285
  22063. }
  22064. },
  22065. maw: {
  22066. height: math.unit(0.8, "feet"),
  22067. name: "Maw",
  22068. image: {
  22069. source: "./media/characters/rifter-yrmori/maw.svg"
  22070. }
  22071. },
  22072. mawfront: {
  22073. height: math.unit(1.45, "feet"),
  22074. name: "Maw (Front)",
  22075. image: {
  22076. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(8, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(42, "meters")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22094. {
  22095. were: {
  22096. height: math.unit(25 + 6 / 12, "feet"),
  22097. weight: math.unit(10000, "lb"),
  22098. name: "Were",
  22099. image: {
  22100. source: "./media/characters/tahajin/were.svg",
  22101. extra: 801 / 770,
  22102. bottom: 0.042
  22103. }
  22104. },
  22105. aquatic: {
  22106. height: math.unit(6 + 4 / 12, "feet"),
  22107. weight: math.unit(160, "lb"),
  22108. name: "Aquatic",
  22109. image: {
  22110. source: "./media/characters/tahajin/aquatic.svg",
  22111. extra: 572 / 542,
  22112. bottom: 0.04
  22113. }
  22114. },
  22115. chow: {
  22116. height: math.unit(8 + 11 / 12, "feet"),
  22117. weight: math.unit(450, "lb"),
  22118. name: "Chow",
  22119. image: {
  22120. source: "./media/characters/tahajin/chow.svg",
  22121. extra: 660 / 640,
  22122. bottom: 0.015
  22123. }
  22124. },
  22125. demiNaga: {
  22126. height: math.unit(6 + 8 / 12, "feet"),
  22127. weight: math.unit(300, "lb"),
  22128. name: "Demi Naga",
  22129. image: {
  22130. source: "./media/characters/tahajin/demi-naga.svg",
  22131. extra: 643 / 615,
  22132. bottom: 0.1
  22133. }
  22134. },
  22135. data: {
  22136. height: math.unit(5, "inches"),
  22137. weight: math.unit(0.1, "lb"),
  22138. name: "Data",
  22139. image: {
  22140. source: "./media/characters/tahajin/data.svg"
  22141. }
  22142. },
  22143. fluu: {
  22144. height: math.unit(5 + 7 / 12, "feet"),
  22145. weight: math.unit(140, "lb"),
  22146. name: "Fluu",
  22147. image: {
  22148. source: "./media/characters/tahajin/fluu.svg",
  22149. extra: 628 / 592,
  22150. bottom: 0.02
  22151. }
  22152. },
  22153. starWarrior: {
  22154. height: math.unit(4 + 5 / 12, "feet"),
  22155. weight: math.unit(50, "lb"),
  22156. name: "Star Warrior",
  22157. image: {
  22158. source: "./media/characters/tahajin/star-warrior.svg"
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(25 + 6 / 12, "feet"),
  22166. default: true
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22172. {
  22173. front: {
  22174. height: math.unit(8, "feet"),
  22175. weight: math.unit(350, "lb"),
  22176. name: "Front",
  22177. image: {
  22178. source: "./media/characters/gabira/front.svg",
  22179. extra: 608 / 580,
  22180. bottom: 0.03
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(8, "feet"),
  22185. weight: math.unit(350, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/gabira/back.svg",
  22189. extra: 608 / 580,
  22190. bottom: 0.03
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(8, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(5 + 3 / 12, "feet"),
  22207. weight: math.unit(137, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/sasha-katraine/front.svg",
  22211. extra: 1745/1694,
  22212. bottom: 37/1782
  22213. }
  22214. },
  22215. back: {
  22216. height: math.unit(5 + 3 / 12, "feet"),
  22217. weight: math.unit(137, "lb"),
  22218. name: "Back",
  22219. image: {
  22220. source: "./media/characters/sasha-katraine/back.svg",
  22221. extra: 1776/1699,
  22222. bottom: 26/1802
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Micro",
  22229. height: math.unit(5, "inches")
  22230. },
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 3 / 12, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22240. {
  22241. side: {
  22242. height: math.unit(4, "inches"),
  22243. weight: math.unit(200, "grams"),
  22244. name: "Side",
  22245. image: {
  22246. source: "./media/characters/der/side.svg",
  22247. extra: 719 / 400,
  22248. bottom: 30.6 / 749.9187
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Micro",
  22255. height: math.unit(4, "inches"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22262. {
  22263. side: {
  22264. height: math.unit(30, "meters"),
  22265. weight: math.unit(700, "tonnes"),
  22266. name: "Side",
  22267. image: {
  22268. source: "./media/characters/fixerdragon/side.svg",
  22269. extra: (1293.0514 - 116.03) / 1106.86,
  22270. bottom: 116.03 / 1293.0514
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Planck",
  22277. height: math.unit(1.6e-35, "meters")
  22278. },
  22279. {
  22280. name: "Micro",
  22281. height: math.unit(0.4, "meters")
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(30, "meters"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Megamacro",
  22290. height: math.unit(1.2, "megameters")
  22291. },
  22292. {
  22293. name: "Teramacro",
  22294. height: math.unit(130, "terameters")
  22295. },
  22296. {
  22297. name: "Yottamacro",
  22298. height: math.unit(6200, "yottameters")
  22299. },
  22300. ]
  22301. ));
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(8, "feet"),
  22307. weight: math.unit(250, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/kite/front.svg",
  22311. extra: 2796 / 2659,
  22312. bottom: 0.002
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(8, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Macro",
  22324. height: math.unit(360, "feet")
  22325. },
  22326. {
  22327. name: "Megamacro",
  22328. height: math.unit(1500, "feet")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(5 + 11/12, "feet"),
  22337. weight: math.unit(170, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/poojawa-vynar/front.svg",
  22341. extra: 1735/1585,
  22342. bottom: 96/1831
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(5 + 11/12, "feet"),
  22347. weight: math.unit(170, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/poojawa-vynar/back.svg",
  22351. extra: 1749/1607,
  22352. bottom: 28/1777
  22353. }
  22354. },
  22355. male: {
  22356. height: math.unit(5 + 11/12, "feet"),
  22357. weight: math.unit(170, "lb"),
  22358. name: "Male",
  22359. image: {
  22360. source: "./media/characters/poojawa-vynar/male.svg",
  22361. extra: 1855/1713,
  22362. bottom: 63/1918
  22363. }
  22364. },
  22365. taur: {
  22366. height: math.unit(5 + 11/12, "feet"),
  22367. weight: math.unit(170, "lb"),
  22368. name: "Taur",
  22369. image: {
  22370. source: "./media/characters/poojawa-vynar/taur.svg",
  22371. extra: 1151/1059,
  22372. bottom: 356/1507
  22373. }
  22374. },
  22375. frontDressed: {
  22376. height: math.unit(5 + 11/12, "feet"),
  22377. weight: math.unit(170, "lb"),
  22378. name: "Front (Dressed)",
  22379. image: {
  22380. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22381. extra: 1735/1585,
  22382. bottom: 96/1831
  22383. }
  22384. },
  22385. backDressed: {
  22386. height: math.unit(5 + 11/12, "feet"),
  22387. weight: math.unit(170, "lb"),
  22388. name: "Back (Dressed)",
  22389. image: {
  22390. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22391. extra: 1749/1607,
  22392. bottom: 28/1777
  22393. }
  22394. },
  22395. maleDressed: {
  22396. height: math.unit(5 + 11/12, "feet"),
  22397. weight: math.unit(170, "lb"),
  22398. name: "Male (Dressed)",
  22399. image: {
  22400. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22401. extra: 1855/1713,
  22402. bottom: 63/1918
  22403. }
  22404. },
  22405. taurDressed: {
  22406. height: math.unit(5 + 11/12, "feet"),
  22407. weight: math.unit(170, "lb"),
  22408. name: "Taur (Dressed)",
  22409. image: {
  22410. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22411. extra: 1151/1059,
  22412. bottom: 356/1507
  22413. }
  22414. },
  22415. maw: {
  22416. height: math.unit(1.46, "feet"),
  22417. name: "Maw",
  22418. image: {
  22419. source: "./media/characters/poojawa-vynar/maw.svg"
  22420. }
  22421. },
  22422. head: {
  22423. height: math.unit(2.34, "feet"),
  22424. name: "Head",
  22425. image: {
  22426. source: "./media/characters/poojawa-vynar/head.svg"
  22427. }
  22428. },
  22429. paw: {
  22430. height: math.unit(1.61, "feet"),
  22431. name: "Paw",
  22432. image: {
  22433. source: "./media/characters/poojawa-vynar/paw.svg"
  22434. }
  22435. },
  22436. pawToering: {
  22437. height: math.unit(1.72, "feet"),
  22438. name: "Paw (Toering)",
  22439. image: {
  22440. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22441. }
  22442. },
  22443. toering: {
  22444. height: math.unit(2.9, "inches"),
  22445. name: "Toering",
  22446. image: {
  22447. source: "./media/characters/poojawa-vynar/toering.svg"
  22448. }
  22449. },
  22450. shaft: {
  22451. height: math.unit(0.625, "feet"),
  22452. name: "Shaft",
  22453. image: {
  22454. source: "./media/characters/poojawa-vynar/shaft.svg"
  22455. }
  22456. },
  22457. spade: {
  22458. height: math.unit(0.42, "feet"),
  22459. name: "Spade",
  22460. image: {
  22461. source: "./media/characters/poojawa-vynar/spade.svg"
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Shortstack",
  22468. height: math.unit(4, "feet")
  22469. },
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 11 / 12, "feet"),
  22473. default: true
  22474. },
  22475. {
  22476. name: "Tauric",
  22477. height: math.unit(4, "meters")
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(293, "meters"),
  22486. weight: math.unit(70400, "tons"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/violette/front.svg",
  22490. extra: 1227 / 1180,
  22491. bottom: 0.005
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(293, "meters"),
  22496. weight: math.unit(70400, "tons"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/violette/back.svg",
  22500. extra: 1227 / 1180,
  22501. bottom: 0.005
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Macro",
  22508. height: math.unit(293, "meters"),
  22509. default: true
  22510. },
  22511. ]
  22512. ))
  22513. characterMakers.push(() => makeCharacter(
  22514. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22515. {
  22516. front: {
  22517. height: math.unit(1050, "feet"),
  22518. weight: math.unit(200000, "tons"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/alessandra/front.svg",
  22522. extra: 960 / 912,
  22523. bottom: 0.06
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Macro",
  22530. height: math.unit(1050, "feet")
  22531. },
  22532. {
  22533. name: "Macro+",
  22534. height: math.unit(900, "meters"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(5, "feet"),
  22544. weight: math.unit(187, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/person/front.svg",
  22548. extra: 3087 / 2945,
  22549. bottom: 91 / 3181
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Micro",
  22556. height: math.unit(3, "inches")
  22557. },
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5, "feet"),
  22561. default: true
  22562. },
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(90, "feet")
  22566. },
  22567. {
  22568. name: "Max Size",
  22569. height: math.unit(280, "feet")
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(4.5, "meters"),
  22578. weight: math.unit(3200, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/ty/front.svg",
  22582. extra: 1038 / 960,
  22583. bottom: 31.156 / 1068
  22584. }
  22585. },
  22586. back: {
  22587. height: math.unit(4.5, "meters"),
  22588. weight: math.unit(3200, "lb"),
  22589. name: "Back",
  22590. image: {
  22591. source: "./media/characters/ty/back.svg",
  22592. extra: 1044 / 966,
  22593. bottom: 7.48 / 1049
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(4.5, "meters"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22607. {
  22608. front: {
  22609. height: math.unit(5 + 4 / 12, "feet"),
  22610. weight: math.unit(115, "lb"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/rocky/front.svg",
  22614. extra: 1012 / 975,
  22615. bottom: 54 / 1066
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 4 / 12, "feet"),
  22623. default: true
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22629. {
  22630. upright: {
  22631. height: math.unit(6, "meters"),
  22632. weight: math.unit(4000, "kg"),
  22633. name: "Upright",
  22634. image: {
  22635. source: "./media/characters/ruin/upright.svg",
  22636. extra: 668 / 661,
  22637. bottom: 42 / 799.8396
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Normal",
  22644. height: math.unit(6, "meters"),
  22645. default: true
  22646. },
  22647. ]
  22648. ))
  22649. characterMakers.push(() => makeCharacter(
  22650. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22651. {
  22652. front: {
  22653. height: math.unit(5, "feet"),
  22654. weight: math.unit(106, "lb"),
  22655. name: "Front",
  22656. image: {
  22657. source: "./media/characters/robin/front.svg",
  22658. extra: 862 / 799,
  22659. bottom: 42.4 / 914.8856
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(5, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22673. {
  22674. side: {
  22675. height: math.unit(3, "feet"),
  22676. weight: math.unit(225, "lb"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/saian/side.svg",
  22680. extra: 566 / 356,
  22681. bottom: 79.7 / 643
  22682. }
  22683. },
  22684. maw: {
  22685. height: math.unit(2.85, "feet"),
  22686. name: "Maw",
  22687. image: {
  22688. source: "./media/characters/saian/maw.svg"
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(3, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22702. {
  22703. side: {
  22704. height: math.unit(8, "feet"),
  22705. weight: math.unit(300, "lb"),
  22706. name: "Side",
  22707. image: {
  22708. source: "./media/characters/equus-silvermane/side.svg",
  22709. extra: 2176 / 2050,
  22710. bottom: 65.7 / 2245
  22711. }
  22712. },
  22713. front: {
  22714. height: math.unit(8, "feet"),
  22715. weight: math.unit(300, "lb"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/equus-silvermane/front.svg",
  22719. extra: 4633 / 4400,
  22720. bottom: 71.3 / 4706.915
  22721. }
  22722. },
  22723. sideStepping: {
  22724. height: math.unit(8, "feet"),
  22725. weight: math.unit(300, "lb"),
  22726. name: "Side (Stepping)",
  22727. image: {
  22728. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22729. extra: 1968 / 1860,
  22730. bottom: 16.4 / 1989
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(8, "feet")
  22738. },
  22739. {
  22740. name: "Minimacro",
  22741. height: math.unit(75, "feet"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(150, "feet")
  22747. },
  22748. {
  22749. name: "Macro+",
  22750. height: math.unit(1000, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(1, "mile")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22760. {
  22761. side: {
  22762. height: math.unit(20, "feet"),
  22763. weight: math.unit(30000, "kg"),
  22764. name: "Side",
  22765. image: {
  22766. source: "./media/characters/windar/side.svg",
  22767. extra: 1491 / 1248,
  22768. bottom: 82.56 / 1568
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(20, "feet"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22782. {
  22783. side: {
  22784. height: math.unit(15.66, "feet"),
  22785. weight: math.unit(150, "lb"),
  22786. name: "Side",
  22787. image: {
  22788. source: "./media/characters/melody/side.svg",
  22789. extra: 1097 / 944,
  22790. bottom: 11.8 / 1109
  22791. }
  22792. },
  22793. sideOutfit: {
  22794. height: math.unit(15.66, "feet"),
  22795. weight: math.unit(150, "lb"),
  22796. name: "Side (Outfit)",
  22797. image: {
  22798. source: "./media/characters/melody/side-outfit.svg",
  22799. extra: 1097 / 944,
  22800. bottom: 11.8 / 1109
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(15.66, "feet"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(8, "feet"),
  22817. weight: math.unit(325, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/windera/front.svg",
  22821. extra: 3180 / 2845,
  22822. bottom: 178 / 3365
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(8, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22836. {
  22837. front: {
  22838. height: math.unit(28.75, "feet"),
  22839. weight: math.unit(2000, "kg"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/sonear/front.svg",
  22843. extra: 1041.1 / 964.9,
  22844. bottom: 53.7 / 1096.6
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(28.75, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22858. {
  22859. side: {
  22860. height: math.unit(25.5, "feet"),
  22861. weight: math.unit(23000, "kg"),
  22862. name: "Side",
  22863. image: {
  22864. source: "./media/characters/kanara/side.svg"
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(25.5, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22878. {
  22879. side: {
  22880. height: math.unit(10, "feet"),
  22881. weight: math.unit(1000, "kg"),
  22882. name: "Side",
  22883. image: {
  22884. source: "./media/characters/ereus/side.svg",
  22885. extra: 1157 / 959,
  22886. bottom: 153 / 1312.5
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(10, "feet"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22900. {
  22901. side: {
  22902. height: math.unit(4.5, "feet"),
  22903. weight: math.unit(500, "lb"),
  22904. name: "Side",
  22905. image: {
  22906. source: "./media/characters/e-ter/side.svg",
  22907. extra: 1550 / 1248,
  22908. bottom: 146 / 1694
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(4.5, "feet"),
  22916. default: true
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22922. {
  22923. side: {
  22924. height: math.unit(9.7, "feet"),
  22925. weight: math.unit(4000, "kg"),
  22926. name: "Side",
  22927. image: {
  22928. source: "./media/characters/yamie/side.svg"
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(9.7, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(50, "feet"),
  22945. weight: math.unit(50000, "kg"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/anders/front.svg",
  22949. extra: 570 / 539,
  22950. bottom: 14.7 / 586.7
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Large",
  22957. height: math.unit(50, "feet")
  22958. },
  22959. {
  22960. name: "Macro",
  22961. height: math.unit(2000, "feet"),
  22962. default: true
  22963. },
  22964. {
  22965. name: "Megamacro",
  22966. height: math.unit(12, "miles")
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(7 + 2 / 12, "feet"),
  22975. weight: math.unit(300, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/reban/front.svg",
  22979. extra: 1287/1212,
  22980. bottom: 148/1435
  22981. }
  22982. },
  22983. head: {
  22984. height: math.unit(1.95, "feet"),
  22985. name: "Head",
  22986. image: {
  22987. source: "./media/characters/reban/head.svg"
  22988. }
  22989. },
  22990. maw: {
  22991. height: math.unit(0.95, "feet"),
  22992. name: "Maw",
  22993. image: {
  22994. source: "./media/characters/reban/maw.svg"
  22995. }
  22996. },
  22997. foot: {
  22998. height: math.unit(1.65, "feet"),
  22999. name: "Foot",
  23000. image: {
  23001. source: "./media/characters/reban/foot.svg"
  23002. }
  23003. },
  23004. dick: {
  23005. height: math.unit(7 / 5, "feet"),
  23006. name: "Dick",
  23007. image: {
  23008. source: "./media/characters/reban/dick.svg"
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Natural Height",
  23015. height: math.unit(7 + 2 / 12, "feet")
  23016. },
  23017. {
  23018. name: "Macro",
  23019. height: math.unit(500, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Canon Height",
  23024. height: math.unit(50, "AU")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(6, "feet"),
  23033. weight: math.unit(150, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/terrance-keayes/front.svg",
  23037. extra: 1.005,
  23038. bottom: 151 / 1615
  23039. }
  23040. },
  23041. side: {
  23042. height: math.unit(6, "feet"),
  23043. weight: math.unit(150, "lb"),
  23044. name: "Side",
  23045. image: {
  23046. source: "./media/characters/terrance-keayes/side.svg",
  23047. extra: 1.005,
  23048. bottom: 129.4 / 1544
  23049. }
  23050. },
  23051. back: {
  23052. height: math.unit(6, "feet"),
  23053. weight: math.unit(150, "lb"),
  23054. name: "Back",
  23055. image: {
  23056. source: "./media/characters/terrance-keayes/back.svg",
  23057. extra: 1.005,
  23058. bottom: 58.4 / 1557.3
  23059. }
  23060. },
  23061. dick: {
  23062. height: math.unit(6 * 0.208, "feet"),
  23063. name: "Dick",
  23064. image: {
  23065. source: "./media/characters/terrance-keayes/dick.svg"
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Canon Height",
  23072. height: math.unit(35, "miles"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23079. {
  23080. front: {
  23081. height: math.unit(6, "feet"),
  23082. weight: math.unit(150, "lb"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/ofelia/front.svg",
  23086. extra: 1130/1117,
  23087. bottom: 91/1221
  23088. }
  23089. },
  23090. back: {
  23091. height: math.unit(6, "feet"),
  23092. weight: math.unit(150, "lb"),
  23093. name: "Back",
  23094. image: {
  23095. source: "./media/characters/ofelia/back.svg",
  23096. extra: 1172/1159,
  23097. bottom: 28/1200
  23098. }
  23099. },
  23100. maw: {
  23101. height: math.unit(1, "feet"),
  23102. name: "Maw",
  23103. image: {
  23104. source: "./media/characters/ofelia/maw.svg"
  23105. }
  23106. },
  23107. foot: {
  23108. height: math.unit(1.949, "feet"),
  23109. name: "Foot",
  23110. image: {
  23111. source: "./media/characters/ofelia/foot.svg"
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Canon Height",
  23118. height: math.unit(2000, "miles"),
  23119. default: true
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(6, "feet"),
  23128. weight: math.unit(150, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/samuel/front.svg",
  23132. extra: 265 / 258,
  23133. bottom: 2 / 266.1566
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(100, "feet"),
  23141. default: true
  23142. },
  23143. {
  23144. name: "Full Size",
  23145. height: math.unit(1000, "miles")
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(6, "feet"),
  23154. weight: math.unit(300, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/beishir-kiel/front.svg",
  23158. extra: 569 / 547,
  23159. bottom: 41.9 / 609
  23160. }
  23161. },
  23162. maw: {
  23163. height: math.unit(6 * 0.202, "feet"),
  23164. name: "Maw",
  23165. image: {
  23166. source: "./media/characters/beishir-kiel/maw.svg"
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(300, "feet"),
  23174. default: true
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(5 + 7/12, "feet"),
  23183. weight: math.unit(120, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/logan-grey/front.svg",
  23187. extra: 1836/1738,
  23188. bottom: 108/1944
  23189. }
  23190. },
  23191. back: {
  23192. height: math.unit(5 + 7/12, "feet"),
  23193. weight: math.unit(120, "lb"),
  23194. name: "Back",
  23195. image: {
  23196. source: "./media/characters/logan-grey/back.svg",
  23197. extra: 1880/1794,
  23198. bottom: 24/1904
  23199. }
  23200. },
  23201. frontSfw: {
  23202. height: math.unit(5 + 7/12, "feet"),
  23203. weight: math.unit(120, "lb"),
  23204. name: "Front (SFW)",
  23205. image: {
  23206. source: "./media/characters/logan-grey/front-sfw.svg",
  23207. extra: 1836/1738,
  23208. bottom: 108/1944
  23209. }
  23210. },
  23211. backSfw: {
  23212. height: math.unit(5 + 7/12, "feet"),
  23213. weight: math.unit(120, "lb"),
  23214. name: "Back (SFW)",
  23215. image: {
  23216. source: "./media/characters/logan-grey/back-sfw.svg",
  23217. extra: 1880/1794,
  23218. bottom: 24/1904
  23219. }
  23220. },
  23221. hands: {
  23222. height: math.unit(0.84, "feet"),
  23223. name: "Hands",
  23224. image: {
  23225. source: "./media/characters/logan-grey/hands.svg"
  23226. }
  23227. },
  23228. paws: {
  23229. height: math.unit(0.72, "feet"),
  23230. name: "Paws",
  23231. image: {
  23232. source: "./media/characters/logan-grey/paws.svg"
  23233. }
  23234. },
  23235. cock: {
  23236. height: math.unit(1.45, "feet"),
  23237. name: "Cock",
  23238. image: {
  23239. source: "./media/characters/logan-grey/cock.svg"
  23240. }
  23241. },
  23242. cockAlt: {
  23243. height: math.unit(1.437, "feet"),
  23244. name: "Cock (alt)",
  23245. image: {
  23246. source: "./media/characters/logan-grey/cock-alt.svg"
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(5 + 8 / 12, "feet")
  23254. },
  23255. {
  23256. name: "The 500 Foot Femboy",
  23257. height: math.unit(500, "feet"),
  23258. default: true
  23259. },
  23260. {
  23261. name: "Megmacro",
  23262. height: math.unit(20, "miles")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(8 + 2 / 12, "feet"),
  23271. weight: math.unit(275, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/draganta/front.svg",
  23275. extra: 1177 / 1135,
  23276. bottom: 33.46 / 1212.1
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(8 + 6 / 12, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(150, "feet")
  23289. },
  23290. {
  23291. name: "Megamacro",
  23292. height: math.unit(1000, "miles")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(1.72, "m"),
  23301. weight: math.unit(80, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/voski/front.svg",
  23305. extra: 2076.22 / 2022.4,
  23306. bottom: 102.7 / 2177.3866
  23307. }
  23308. },
  23309. frontFlaccid: {
  23310. height: math.unit(1.72, "m"),
  23311. weight: math.unit(80, "lb"),
  23312. name: "Front (Flaccid)",
  23313. image: {
  23314. source: "./media/characters/voski/front-flaccid.svg",
  23315. extra: 2076.22 / 2022.4,
  23316. bottom: 102.7 / 2177.3866
  23317. }
  23318. },
  23319. frontErect: {
  23320. height: math.unit(1.72, "m"),
  23321. weight: math.unit(80, "lb"),
  23322. name: "Front (Erect)",
  23323. image: {
  23324. source: "./media/characters/voski/front-erect.svg",
  23325. extra: 2076.22 / 2022.4,
  23326. bottom: 102.7 / 2177.3866
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(1.72, "m"),
  23331. weight: math.unit(80, "lb"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/voski/back.svg",
  23335. extra: 2104 / 2051,
  23336. bottom: 10.45 / 2113.63
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(1.72, "m")
  23344. },
  23345. {
  23346. name: "Macro",
  23347. height: math.unit(55, "m"),
  23348. default: true
  23349. },
  23350. {
  23351. name: "Macro+",
  23352. height: math.unit(300, "m")
  23353. },
  23354. {
  23355. name: "Macro++",
  23356. height: math.unit(700, "m")
  23357. },
  23358. {
  23359. name: "Macro+++",
  23360. height: math.unit(4500, "m")
  23361. },
  23362. {
  23363. name: "Macro++++",
  23364. height: math.unit(45, "km")
  23365. },
  23366. {
  23367. name: "Macro+++++",
  23368. height: math.unit(1220, "km")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(2.3, "m"),
  23377. weight: math.unit(304, "kg"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/icowom-lee/front.svg",
  23381. extra: 985 / 955,
  23382. bottom: 25.4 / 1012
  23383. }
  23384. },
  23385. fronttentacles: {
  23386. height: math.unit(2.3, "m"),
  23387. weight: math.unit(304, "kg"),
  23388. name: "Front-tentacles",
  23389. image: {
  23390. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23391. extra: 985 / 955,
  23392. bottom: 25.4 / 1012
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(2.3, "m"),
  23397. weight: math.unit(304, "kg"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/icowom-lee/back.svg",
  23401. extra: 975 / 954,
  23402. bottom: 9.5 / 985
  23403. }
  23404. },
  23405. backtentacles: {
  23406. height: math.unit(2.3, "m"),
  23407. weight: math.unit(304, "kg"),
  23408. name: "Back-tentacles",
  23409. image: {
  23410. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23411. extra: 975 / 954,
  23412. bottom: 9.5 / 985
  23413. }
  23414. },
  23415. frontDressed: {
  23416. height: math.unit(2.3, "m"),
  23417. weight: math.unit(304, "kg"),
  23418. name: "Front (Dressed)",
  23419. image: {
  23420. source: "./media/characters/icowom-lee/front-dressed.svg",
  23421. extra: 3076 / 2933,
  23422. bottom: 51.4 / 3125.1889
  23423. }
  23424. },
  23425. rump: {
  23426. height: math.unit(0.776, "meters"),
  23427. name: "Rump",
  23428. image: {
  23429. source: "./media/characters/icowom-lee/rump.svg"
  23430. }
  23431. },
  23432. genitals: {
  23433. height: math.unit(0.78, "meters"),
  23434. name: "Genitals",
  23435. image: {
  23436. source: "./media/characters/icowom-lee/genitals.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(2.3, "meters"),
  23444. default: true
  23445. },
  23446. {
  23447. name: "Macro",
  23448. height: math.unit(94, "meters"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23455. {
  23456. front: {
  23457. height: math.unit(22, "meters"),
  23458. weight: math.unit(21000, "kg"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/shock-diamond/front.svg",
  23462. extra: 2204 / 2053,
  23463. bottom: 65 / 2239.47
  23464. }
  23465. },
  23466. frontNude: {
  23467. height: math.unit(22, "meters"),
  23468. weight: math.unit(21000, "kg"),
  23469. name: "Front (Nude)",
  23470. image: {
  23471. source: "./media/characters/shock-diamond/front-nude.svg",
  23472. extra: 2514 / 2285,
  23473. bottom: 13 / 2527.56
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(3, "meters")
  23481. },
  23482. {
  23483. name: "Macro",
  23484. height: math.unit(22, "meters"),
  23485. default: true
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(5 + 4 / 12, "feet"),
  23494. weight: math.unit(120, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/rory/front.svg",
  23498. extra: 1318/1241,
  23499. bottom: 42/1360
  23500. }
  23501. },
  23502. back: {
  23503. height: math.unit(5 + 4 / 12, "feet"),
  23504. weight: math.unit(120, "lb"),
  23505. name: "Back",
  23506. image: {
  23507. source: "./media/characters/rory/back.svg",
  23508. extra: 1318/1241,
  23509. bottom: 42/1360
  23510. }
  23511. },
  23512. butt: {
  23513. height: math.unit(1.74, "feet"),
  23514. name: "Butt",
  23515. image: {
  23516. source: "./media/characters/rory/butt.svg"
  23517. }
  23518. },
  23519. dick: {
  23520. height: math.unit(1.02, "feet"),
  23521. name: "Dick",
  23522. image: {
  23523. source: "./media/characters/rory/dick.svg"
  23524. }
  23525. },
  23526. paws: {
  23527. height: math.unit(1, "feet"),
  23528. name: "Paws",
  23529. image: {
  23530. source: "./media/characters/rory/paws.svg"
  23531. }
  23532. },
  23533. frontAlt: {
  23534. height: math.unit(5 + 4 / 12, "feet"),
  23535. weight: math.unit(120, "lb"),
  23536. name: "Front (Alt)",
  23537. image: {
  23538. source: "./media/characters/rory/front-alt.svg",
  23539. extra: 589 / 556,
  23540. bottom: 45.7 / 635.76
  23541. }
  23542. },
  23543. frontAltNude: {
  23544. height: math.unit(5 + 4 / 12, "feet"),
  23545. weight: math.unit(120, "lb"),
  23546. name: "Front (Alt, Nude)",
  23547. image: {
  23548. source: "./media/characters/rory/front-alt-nude.svg",
  23549. extra: 589 / 556,
  23550. bottom: 45.7 / 635.76
  23551. }
  23552. },
  23553. side: {
  23554. height: math.unit(5 + 4 / 12, "feet"),
  23555. weight: math.unit(120, "lb"),
  23556. name: "Side",
  23557. image: {
  23558. source: "./media/characters/rory/side.svg",
  23559. extra: 597 / 564,
  23560. bottom: 55 / 653
  23561. }
  23562. },
  23563. backAlt: {
  23564. height: math.unit(5 + 4 / 12, "feet"),
  23565. weight: math.unit(120, "lb"),
  23566. name: "Back (Alt)",
  23567. image: {
  23568. source: "./media/characters/rory/back-alt.svg",
  23569. extra: 620 / 585,
  23570. bottom: 8.86 / 630.43
  23571. }
  23572. },
  23573. dickAlt: {
  23574. height: math.unit(0.86, "feet"),
  23575. name: "Dick (Alt)",
  23576. image: {
  23577. source: "./media/characters/rory/dick-alt.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(5 + 4 / 12, "feet"),
  23585. default: true
  23586. },
  23587. {
  23588. name: "Macro",
  23589. height: math.unit(100, "feet")
  23590. },
  23591. {
  23592. name: "Macro+",
  23593. height: math.unit(140, "feet")
  23594. },
  23595. {
  23596. name: "Macro++",
  23597. height: math.unit(300, "feet")
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(5 + 9 / 12, "feet"),
  23606. weight: math.unit(190, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/sprisk/front.svg",
  23610. extra: 1225 / 1180,
  23611. bottom: 42.7 / 1266.4
  23612. }
  23613. },
  23614. frontNsfw: {
  23615. height: math.unit(5 + 9 / 12, "feet"),
  23616. weight: math.unit(190, "lb"),
  23617. name: "Front (NSFW)",
  23618. image: {
  23619. source: "./media/characters/sprisk/front-nsfw.svg",
  23620. extra: 1225 / 1180,
  23621. bottom: 42.7 / 1266.4
  23622. }
  23623. },
  23624. back: {
  23625. height: math.unit(5 + 9 / 12, "feet"),
  23626. weight: math.unit(190, "lb"),
  23627. name: "Back",
  23628. image: {
  23629. source: "./media/characters/sprisk/back.svg",
  23630. extra: 1247 / 1200,
  23631. bottom: 5.6 / 1253.04
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Tiny",
  23638. height: math.unit(2, "inches")
  23639. },
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 9 / 12, "feet"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Mini Macro",
  23647. height: math.unit(18, "feet")
  23648. },
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(100, "feet")
  23652. },
  23653. {
  23654. name: "MACRO",
  23655. height: math.unit(50, "miles")
  23656. },
  23657. {
  23658. name: "M A C R O",
  23659. height: math.unit(300, "miles")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23665. {
  23666. side: {
  23667. height: math.unit(15.6, "meters"),
  23668. weight: math.unit(700000, "kg"),
  23669. name: "Side",
  23670. image: {
  23671. source: "./media/characters/bunsen/side.svg",
  23672. extra: 1644 / 358
  23673. }
  23674. },
  23675. foot: {
  23676. height: math.unit(1.611 * 1644 / 358, "meter"),
  23677. name: "Foot",
  23678. image: {
  23679. source: "./media/characters/bunsen/foot.svg"
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Small",
  23686. height: math.unit(10, "feet")
  23687. },
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(15.6, "meters"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(4 + 11 / 12, "feet"),
  23700. weight: math.unit(140, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/sesh/front.svg",
  23704. extra: 3420 / 3231,
  23705. bottom: 72 / 3949.5
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Normal",
  23712. height: math.unit(4 + 11 / 12, "feet")
  23713. },
  23714. {
  23715. name: "Grown",
  23716. height: math.unit(15, "feet"),
  23717. default: true
  23718. },
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(1500, "feet")
  23722. },
  23723. {
  23724. name: "Megamacro",
  23725. height: math.unit(30, "miles")
  23726. },
  23727. {
  23728. name: "Continental",
  23729. height: math.unit(3000, "miles")
  23730. },
  23731. {
  23732. name: "Gravity Mass",
  23733. height: math.unit(300000, "miles")
  23734. },
  23735. {
  23736. name: "Planet Buster",
  23737. height: math.unit(30000000, "miles")
  23738. },
  23739. {
  23740. name: "Big",
  23741. height: math.unit(3000000000, "miles")
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(9, "feet"),
  23750. weight: math.unit(350, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/pepper/front.svg",
  23754. extra: 1448 / 1312,
  23755. bottom: 9.4 / 1457.88
  23756. }
  23757. },
  23758. back: {
  23759. height: math.unit(9, "feet"),
  23760. weight: math.unit(350, "lb"),
  23761. name: "Back",
  23762. image: {
  23763. source: "./media/characters/pepper/back.svg",
  23764. extra: 1423 / 1300,
  23765. bottom: 4.6 / 1429
  23766. }
  23767. },
  23768. maw: {
  23769. height: math.unit(0.932, "feet"),
  23770. name: "Maw",
  23771. image: {
  23772. source: "./media/characters/pepper/maw.svg"
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(9, "feet"),
  23780. default: true
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23786. {
  23787. front: {
  23788. height: math.unit(6, "feet"),
  23789. weight: math.unit(150, "lb"),
  23790. name: "Front",
  23791. image: {
  23792. source: "./media/characters/maelstrom/front.svg",
  23793. extra: 2100 / 1883,
  23794. bottom: 94 / 2196.7
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Less Kaiju",
  23801. height: math.unit(200, "feet")
  23802. },
  23803. {
  23804. name: "Kaiju",
  23805. height: math.unit(400, "feet"),
  23806. default: true
  23807. },
  23808. {
  23809. name: "Kaiju-er",
  23810. height: math.unit(600, "feet")
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(6 + 5 / 12, "feet"),
  23819. weight: math.unit(180, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/lexir/front.svg",
  23823. extra: 180 / 172,
  23824. bottom: 12 / 192
  23825. }
  23826. },
  23827. back: {
  23828. height: math.unit(6 + 5 / 12, "feet"),
  23829. weight: math.unit(180, "lb"),
  23830. name: "Back",
  23831. image: {
  23832. source: "./media/characters/lexir/back.svg",
  23833. extra: 1273/1201,
  23834. bottom: 39/1312
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Very Smal",
  23841. height: math.unit(1, "nm")
  23842. },
  23843. {
  23844. name: "Normal",
  23845. height: math.unit(6 + 5 / 12, "feet"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Macro",
  23850. height: math.unit(1, "mile")
  23851. },
  23852. {
  23853. name: "Megamacro",
  23854. height: math.unit(50, "miles")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(1.5, "meters"),
  23863. weight: math.unit(100, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/maksio/front.svg",
  23867. extra: 1549 / 1531,
  23868. bottom: 123.7 / 1674.5429
  23869. }
  23870. },
  23871. back: {
  23872. height: math.unit(1.5, "meters"),
  23873. weight: math.unit(100, "lb"),
  23874. name: "Back",
  23875. image: {
  23876. source: "./media/characters/maksio/back.svg",
  23877. extra: 1541 / 1509,
  23878. bottom: 97 / 1639
  23879. }
  23880. },
  23881. hand: {
  23882. height: math.unit(0.621, "feet"),
  23883. name: "Hand",
  23884. image: {
  23885. source: "./media/characters/maksio/hand.svg"
  23886. }
  23887. },
  23888. foot: {
  23889. height: math.unit(1.611, "feet"),
  23890. name: "Foot",
  23891. image: {
  23892. source: "./media/characters/maksio/foot.svg"
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Shrunken",
  23899. height: math.unit(10, "cm")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(150, "cm"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(100, "feet"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/erza-bear/front.svg",
  23916. extra: 2449 / 2390,
  23917. bottom: 46 / 2494
  23918. }
  23919. },
  23920. back: {
  23921. height: math.unit(100, "feet"),
  23922. name: "Back",
  23923. image: {
  23924. source: "./media/characters/erza-bear/back.svg",
  23925. extra: 2489 / 2430,
  23926. bottom: 85.4 / 2480
  23927. }
  23928. },
  23929. tail: {
  23930. height: math.unit(42, "feet"),
  23931. name: "Tail",
  23932. image: {
  23933. source: "./media/characters/erza-bear/tail.svg"
  23934. }
  23935. },
  23936. tongue: {
  23937. height: math.unit(8, "feet"),
  23938. name: "Tongue",
  23939. image: {
  23940. source: "./media/characters/erza-bear/tongue.svg"
  23941. }
  23942. },
  23943. dick: {
  23944. height: math.unit(10.5, "feet"),
  23945. name: "Dick",
  23946. image: {
  23947. source: "./media/characters/erza-bear/dick.svg"
  23948. }
  23949. },
  23950. dickVertical: {
  23951. height: math.unit(16.9, "feet"),
  23952. name: "Dick (Vertical)",
  23953. image: {
  23954. source: "./media/characters/erza-bear/dick-vertical.svg"
  23955. }
  23956. },
  23957. },
  23958. [
  23959. {
  23960. name: "Macro",
  23961. height: math.unit(100, "feet"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(172, "cm"),
  23971. weight: math.unit(73, "kg"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/violet-flor/front.svg",
  23975. extra: 1530 / 1442,
  23976. bottom: 61.9 / 1588.8
  23977. }
  23978. },
  23979. back: {
  23980. height: math.unit(180, "cm"),
  23981. weight: math.unit(73, "kg"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/violet-flor/back.svg",
  23985. extra: 1692 / 1630,
  23986. bottom: 20 / 1712
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(172, "cm"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(6, "feet"),
  24003. weight: math.unit(220, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/lynn-rhea/front.svg",
  24007. extra: 310 / 273
  24008. }
  24009. },
  24010. back: {
  24011. height: math.unit(6, "feet"),
  24012. weight: math.unit(220, "lb"),
  24013. name: "Back",
  24014. image: {
  24015. source: "./media/characters/lynn-rhea/back.svg",
  24016. extra: 310 / 273
  24017. }
  24018. },
  24019. dicks: {
  24020. height: math.unit(0.9, "feet"),
  24021. name: "Dicks",
  24022. image: {
  24023. source: "./media/characters/lynn-rhea/dicks.svg"
  24024. }
  24025. },
  24026. slit: {
  24027. height: math.unit(0.4, "feet"),
  24028. name: "Slit",
  24029. image: {
  24030. source: "./media/characters/lynn-rhea/slit.svg"
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Micro",
  24037. height: math.unit(1, "inch")
  24038. },
  24039. {
  24040. name: "Macro",
  24041. height: math.unit(60, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Megamacro",
  24046. height: math.unit(2, "miles")
  24047. },
  24048. {
  24049. name: "Gigamacro",
  24050. height: math.unit(3, "earths")
  24051. },
  24052. {
  24053. name: "Galactic",
  24054. height: math.unit(0.8, "galaxies")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24060. {
  24061. front: {
  24062. height: math.unit(1600, "feet"),
  24063. weight: math.unit(85758785169, "kg"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/valathos/front.svg",
  24067. extra: 1451 / 1339
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(1600, "feet"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(7 + 5 / 12, "feet"),
  24084. weight: math.unit(300, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/azula/front.svg",
  24088. extra: 3208 / 2880,
  24089. bottom: 80.2 / 3277
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(7 + 5 / 12, "feet"),
  24094. weight: math.unit(300, "lb"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/azula/back.svg",
  24098. extra: 3169 / 2822,
  24099. bottom: 150.6 / 3321
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(7 + 5 / 12, "feet"),
  24107. default: true
  24108. },
  24109. {
  24110. name: "Big",
  24111. height: math.unit(20, "feet")
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24117. {
  24118. front: {
  24119. height: math.unit(5 + 1 / 12, "feet"),
  24120. weight: math.unit(110, "lb"),
  24121. name: "Front",
  24122. image: {
  24123. source: "./media/characters/rupert/front.svg",
  24124. extra: 1549 / 1495,
  24125. bottom: 54.2 / 1604.4
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(5 + 1 / 12, "feet"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24139. {
  24140. front: {
  24141. height: math.unit(8 + 4 / 12, "feet"),
  24142. weight: math.unit(350, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/sheera-castellar/front.svg",
  24146. extra: 1957 / 1894,
  24147. bottom: 26.97 / 1975.017
  24148. }
  24149. },
  24150. side: {
  24151. height: math.unit(8 + 4 / 12, "feet"),
  24152. weight: math.unit(350, "lb"),
  24153. name: "Side",
  24154. image: {
  24155. source: "./media/characters/sheera-castellar/side.svg",
  24156. extra: 1957 / 1894
  24157. }
  24158. },
  24159. back: {
  24160. height: math.unit(8 + 4 / 12, "feet"),
  24161. weight: math.unit(350, "lb"),
  24162. name: "Back",
  24163. image: {
  24164. source: "./media/characters/sheera-castellar/back.svg",
  24165. extra: 1957 / 1894
  24166. }
  24167. },
  24168. angled: {
  24169. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24170. weight: math.unit(350, "lb"),
  24171. name: "Angled",
  24172. image: {
  24173. source: "./media/characters/sheera-castellar/angled.svg",
  24174. extra: 1807 / 1707,
  24175. bottom: 68 / 1875
  24176. }
  24177. },
  24178. genitals: {
  24179. height: math.unit(2.2, "feet"),
  24180. name: "Genitals",
  24181. image: {
  24182. source: "./media/characters/sheera-castellar/genitals.svg"
  24183. }
  24184. },
  24185. taur: {
  24186. height: math.unit(10 + 6/12, "feet"),
  24187. name: "Taur",
  24188. image: {
  24189. source: "./media/characters/sheera-castellar/taur.svg",
  24190. extra: 2017/1909,
  24191. bottom: 185/2202
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Normal",
  24198. height: math.unit(8 + 4 / 12, "feet")
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(150, "feet"),
  24203. default: true
  24204. },
  24205. {
  24206. name: "Macro+",
  24207. height: math.unit(800, "feet")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6, "feet"),
  24216. weight: math.unit(150, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/jaipur/front.svg",
  24220. extra: 3860 / 3731,
  24221. bottom: 287 / 4140
  24222. }
  24223. },
  24224. back: {
  24225. height: math.unit(6, "feet"),
  24226. weight: math.unit(150, "lb"),
  24227. name: "Back",
  24228. image: {
  24229. source: "./media/characters/jaipur/back.svg",
  24230. extra: 1637/1561,
  24231. bottom: 154/1791
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Normal",
  24238. height: math.unit(1.85, "meters"),
  24239. default: true
  24240. },
  24241. {
  24242. name: "Macro",
  24243. height: math.unit(150, "meters")
  24244. },
  24245. {
  24246. name: "Macro+",
  24247. height: math.unit(0.5, "miles")
  24248. },
  24249. {
  24250. name: "Macro++",
  24251. height: math.unit(2.5, "miles")
  24252. },
  24253. {
  24254. name: "Macro+++",
  24255. height: math.unit(12, "miles")
  24256. },
  24257. {
  24258. name: "Macro++++",
  24259. height: math.unit(120, "miles")
  24260. },
  24261. {
  24262. name: "Macro+++++",
  24263. height: math.unit(1200, "miles")
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(6, "feet"),
  24272. weight: math.unit(150, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/sheila-wolf/front.svg",
  24276. extra: 1931 / 1808,
  24277. bottom: 29.5 / 1960
  24278. }
  24279. },
  24280. dick: {
  24281. height: math.unit(1.464, "feet"),
  24282. name: "Dick",
  24283. image: {
  24284. source: "./media/characters/sheila-wolf/dick.svg"
  24285. }
  24286. },
  24287. muzzle: {
  24288. height: math.unit(0.513, "feet"),
  24289. name: "Muzzle",
  24290. image: {
  24291. source: "./media/characters/sheila-wolf/muzzle.svg"
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(70, "feet"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(32, "meters"),
  24308. weight: math.unit(300000, "kg"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/almor/front.svg",
  24312. extra: 1408 / 1322,
  24313. bottom: 94.6 / 1506.5
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Macro",
  24320. height: math.unit(32, "meters"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(7, "feet"),
  24330. weight: math.unit(200, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/silver/front.svg",
  24334. extra: 472.1 / 450.5,
  24335. bottom: 26.5 / 499.424
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(7, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(800, "feet")
  24348. },
  24349. {
  24350. name: "Megamacro",
  24351. height: math.unit(250, "miles")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(150, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/pliskin/front.svg",
  24364. extra: 1469 / 1359,
  24365. bottom: 70 / 1540
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Micro",
  24372. height: math.unit(3, "inches")
  24373. },
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(5 + 11 / 12, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Macro",
  24381. height: math.unit(120, "feet")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(6, "feet"),
  24390. weight: math.unit(150, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/sammy/front.svg",
  24394. extra: 1193 / 1089,
  24395. bottom: 30.5 / 1226
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Macro",
  24402. height: math.unit(1700, "feet"),
  24403. default: true
  24404. },
  24405. {
  24406. name: "Examacro",
  24407. height: math.unit(2.5e9, "lightyears")
  24408. },
  24409. ]
  24410. ))
  24411. characterMakers.push(() => makeCharacter(
  24412. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24413. {
  24414. front: {
  24415. height: math.unit(21, "meters"),
  24416. weight: math.unit(12, "tonnes"),
  24417. name: "Front",
  24418. image: {
  24419. source: "./media/characters/kuru/front.svg",
  24420. extra: 4301 / 3785,
  24421. bottom: 371.3 / 4691
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Macro",
  24428. height: math.unit(21, "meters"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(23, "meters"),
  24438. weight: math.unit(12.2, "tonnes"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/rakka/front.svg",
  24442. extra: 4670 / 4169,
  24443. bottom: 301 / 4968.7
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(23, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(6, "feet"),
  24460. weight: math.unit(150, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/rhys-feline/front.svg",
  24464. extra: 2488 / 2308,
  24465. bottom: 35.67 / 2519.19
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Really Small",
  24472. height: math.unit(1, "nm")
  24473. },
  24474. {
  24475. name: "Micro",
  24476. height: math.unit(4, "inches")
  24477. },
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(4 + 10 / 12, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Macro",
  24485. height: math.unit(100, "feet")
  24486. },
  24487. {
  24488. name: "Megamacto",
  24489. height: math.unit(50, "miles")
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24495. {
  24496. side: {
  24497. height: math.unit(30, "feet"),
  24498. weight: math.unit(35000, "kg"),
  24499. name: "Side",
  24500. image: {
  24501. source: "./media/characters/alydar/side.svg",
  24502. extra: 234 / 222,
  24503. bottom: 6.5 / 241
  24504. }
  24505. },
  24506. front: {
  24507. height: math.unit(30, "feet"),
  24508. weight: math.unit(35000, "kg"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/alydar/front.svg",
  24512. extra: 223.37 / 210.2,
  24513. bottom: 22.3 / 246.76
  24514. }
  24515. },
  24516. top: {
  24517. height: math.unit(64.54, "feet"),
  24518. weight: math.unit(35000, "kg"),
  24519. name: "Top",
  24520. image: {
  24521. source: "./media/characters/alydar/top.svg"
  24522. }
  24523. },
  24524. anthro: {
  24525. height: math.unit(30, "feet"),
  24526. weight: math.unit(9000, "kg"),
  24527. name: "Anthro",
  24528. image: {
  24529. source: "./media/characters/alydar/anthro.svg",
  24530. extra: 432 / 421,
  24531. bottom: 7.18 / 440
  24532. }
  24533. },
  24534. maw: {
  24535. height: math.unit(11.693, "feet"),
  24536. name: "Maw",
  24537. image: {
  24538. source: "./media/characters/alydar/maw.svg"
  24539. }
  24540. },
  24541. head: {
  24542. height: math.unit(11.693, "feet"),
  24543. name: "Head",
  24544. image: {
  24545. source: "./media/characters/alydar/head.svg"
  24546. }
  24547. },
  24548. headAlt: {
  24549. height: math.unit(12.861, "feet"),
  24550. name: "Head (Alt)",
  24551. image: {
  24552. source: "./media/characters/alydar/head-alt.svg"
  24553. }
  24554. },
  24555. wing: {
  24556. height: math.unit(20.712, "feet"),
  24557. name: "Wing",
  24558. image: {
  24559. source: "./media/characters/alydar/wing.svg"
  24560. }
  24561. },
  24562. wingFeather: {
  24563. height: math.unit(9.662, "feet"),
  24564. name: "Wing Feather",
  24565. image: {
  24566. source: "./media/characters/alydar/wing-feather.svg"
  24567. }
  24568. },
  24569. countourFeather: {
  24570. height: math.unit(4.154, "feet"),
  24571. name: "Contour Feather",
  24572. image: {
  24573. source: "./media/characters/alydar/contour-feather.svg"
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Diplomatic",
  24580. height: math.unit(13, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Small",
  24585. height: math.unit(30, "feet")
  24586. },
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(95, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Large",
  24594. height: math.unit(285, "feet")
  24595. },
  24596. {
  24597. name: "Incomprehensible",
  24598. height: math.unit(450, "megameters")
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24604. {
  24605. side: {
  24606. height: math.unit(11, "feet"),
  24607. weight: math.unit(1750, "kg"),
  24608. name: "Side",
  24609. image: {
  24610. source: "./media/characters/selicia/side.svg",
  24611. extra: 440 / 396,
  24612. bottom: 24.8 / 465.979
  24613. }
  24614. },
  24615. maw: {
  24616. height: math.unit(4.665, "feet"),
  24617. name: "Maw",
  24618. image: {
  24619. source: "./media/characters/selicia/maw.svg"
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(11, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24633. {
  24634. side: {
  24635. height: math.unit(2 + 6 / 12, "feet"),
  24636. weight: math.unit(30, "lb"),
  24637. name: "Side",
  24638. image: {
  24639. source: "./media/characters/layla/side.svg",
  24640. extra: 244 / 188,
  24641. bottom: 18.2 / 262.1
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(2 + 6 / 12, "feet"),
  24646. weight: math.unit(30, "lb"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/layla/back.svg",
  24650. extra: 308 / 241.5,
  24651. bottom: 8.9 / 316.8
  24652. }
  24653. },
  24654. cumming: {
  24655. height: math.unit(2 + 6 / 12, "feet"),
  24656. weight: math.unit(30, "lb"),
  24657. name: "Cumming",
  24658. image: {
  24659. source: "./media/characters/layla/cumming.svg",
  24660. extra: 342 / 279,
  24661. bottom: 595 / 938
  24662. }
  24663. },
  24664. dickFlaccid: {
  24665. height: math.unit(2.595, "feet"),
  24666. name: "Flaccid Genitals",
  24667. image: {
  24668. source: "./media/characters/layla/dick-flaccid.svg"
  24669. }
  24670. },
  24671. dickErect: {
  24672. height: math.unit(2.359, "feet"),
  24673. name: "Erect Genitals",
  24674. image: {
  24675. source: "./media/characters/layla/dick-erect.svg"
  24676. }
  24677. },
  24678. dragon: {
  24679. height: math.unit(40, "feet"),
  24680. name: "Dragon",
  24681. image: {
  24682. source: "./media/characters/layla/dragon.svg",
  24683. extra: 610/535,
  24684. bottom: 367/977
  24685. }
  24686. },
  24687. taur: {
  24688. height: math.unit(30, "feet"),
  24689. name: "Taur",
  24690. image: {
  24691. source: "./media/characters/layla/taur.svg",
  24692. extra: 1268/1199,
  24693. bottom: 112/1380
  24694. }
  24695. },
  24696. },
  24697. [
  24698. {
  24699. name: "Micro",
  24700. height: math.unit(1, "inch")
  24701. },
  24702. {
  24703. name: "Small",
  24704. height: math.unit(1, "foot")
  24705. },
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(2 + 6 / 12, "feet"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Macro",
  24713. height: math.unit(200, "feet")
  24714. },
  24715. {
  24716. name: "Megamacro",
  24717. height: math.unit(1000, "miles")
  24718. },
  24719. {
  24720. name: "Planetary",
  24721. height: math.unit(8000, "miles")
  24722. },
  24723. {
  24724. name: "True Layla",
  24725. height: math.unit(200000 * 7, "multiverses")
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24731. {
  24732. back: {
  24733. height: math.unit(10.5, "feet"),
  24734. weight: math.unit(800, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/knox/back.svg",
  24738. extra: 1486 / 1089,
  24739. bottom: 107 / 1601.4
  24740. }
  24741. },
  24742. side: {
  24743. height: math.unit(10.5, "feet"),
  24744. weight: math.unit(800, "lb"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/knox/side.svg",
  24748. extra: 244 / 218,
  24749. bottom: 14 / 260
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Compact",
  24756. height: math.unit(10.5, "feet"),
  24757. default: true
  24758. },
  24759. {
  24760. name: "Dynamax",
  24761. height: math.unit(210, "feet")
  24762. },
  24763. {
  24764. name: "Full Macro",
  24765. height: math.unit(850, "feet")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(28, "feet"),
  24774. weight: math.unit(10500, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/kayda/front.svg",
  24778. extra: 1536 / 1428,
  24779. bottom: 68.7 / 1603
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(28, "feet"),
  24784. weight: math.unit(10500, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/kayda/back.svg",
  24788. extra: 1557 / 1464,
  24789. bottom: 39.5 / 1597.49
  24790. }
  24791. },
  24792. dick: {
  24793. height: math.unit(3.858, "feet"),
  24794. name: "Dick",
  24795. image: {
  24796. source: "./media/characters/kayda/dick.svg"
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(28, "feet"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(10 + 11 / 12, "feet"),
  24813. weight: math.unit(1400, "lb"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/brian/front.svg",
  24817. extra: 737 / 692,
  24818. bottom: 55.4 / 785
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(10 + 11 / 12, "feet"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(5 + 8 / 12, "feet"),
  24835. weight: math.unit(140, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/khemri/front.svg",
  24839. extra: 4780 / 4059,
  24840. bottom: 80.1 / 4859.25
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Micro",
  24847. height: math.unit(6, "inches")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(5 + 8 / 12, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24858. {
  24859. front: {
  24860. height: math.unit(13, "feet"),
  24861. weight: math.unit(1700, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/felix-braveheart/front.svg",
  24865. extra: 1222 / 1157,
  24866. bottom: 53.2 / 1280
  24867. }
  24868. },
  24869. back: {
  24870. height: math.unit(13, "feet"),
  24871. weight: math.unit(1700, "lb"),
  24872. name: "Back",
  24873. image: {
  24874. source: "./media/characters/felix-braveheart/back.svg",
  24875. extra: 1277 / 1203,
  24876. bottom: 50.2 / 1327
  24877. }
  24878. },
  24879. feral: {
  24880. height: math.unit(6, "feet"),
  24881. weight: math.unit(400, "lb"),
  24882. name: "Feral",
  24883. image: {
  24884. source: "./media/characters/felix-braveheart/feral.svg",
  24885. extra: 682 / 625,
  24886. bottom: 6.9 / 688
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(13, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24900. {
  24901. side: {
  24902. height: math.unit(5 + 11 / 12, "feet"),
  24903. weight: math.unit(1400, "lb"),
  24904. name: "Side",
  24905. image: {
  24906. source: "./media/characters/shadow-blade/side.svg",
  24907. extra: 1726 / 1267,
  24908. bottom: 58.4 / 1785
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Normal",
  24915. height: math.unit(5 + 11 / 12, "feet"),
  24916. default: true
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(1 + 6 / 12, "feet"),
  24925. weight: math.unit(25, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/karla-halldor/front.svg",
  24929. extra: 1459 / 1383,
  24930. bottom: 12 / 1472
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(1 + 6 / 12, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(6 + 2 / 12, "feet"),
  24947. weight: math.unit(160, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/ariam/front.svg",
  24951. extra: 1073/976,
  24952. bottom: 52/1125
  24953. }
  24954. },
  24955. back: {
  24956. height: math.unit(6 + 2/12, "feet"),
  24957. weight: math.unit(160, "lb"),
  24958. name: "Back",
  24959. image: {
  24960. source: "./media/characters/ariam/back.svg",
  24961. extra: 1103/1023,
  24962. bottom: 9/1112
  24963. }
  24964. },
  24965. dressed: {
  24966. height: math.unit(6 + 2/12, "feet"),
  24967. weight: math.unit(160, "lb"),
  24968. name: "Dressed",
  24969. image: {
  24970. source: "./media/characters/ariam/dressed.svg",
  24971. extra: 1099/1009,
  24972. bottom: 25/1124
  24973. }
  24974. },
  24975. squatting: {
  24976. height: math.unit(4.1, "feet"),
  24977. weight: math.unit(160, "lb"),
  24978. name: "Squatting",
  24979. image: {
  24980. source: "./media/characters/ariam/squatting.svg",
  24981. extra: 2617 / 2112,
  24982. bottom: 61.2 / 2681,
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Normal",
  24989. height: math.unit(6 + 2 / 12, "feet"),
  24990. default: true
  24991. },
  24992. {
  24993. name: "Normal+",
  24994. height: math.unit(4, "meters")
  24995. },
  24996. {
  24997. name: "Macro",
  24998. height: math.unit(50, "meters")
  24999. },
  25000. {
  25001. name: "Macro+",
  25002. height: math.unit(100, "meters")
  25003. },
  25004. {
  25005. name: "Megamacro",
  25006. height: math.unit(20, "km")
  25007. },
  25008. {
  25009. name: "Caretaker",
  25010. height: math.unit(444, "megameters")
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(1.67, "meters"),
  25019. weight: math.unit(140, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25023. extra: 438 / 410,
  25024. bottom: 0.75 / 439
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Shrunken",
  25031. height: math.unit(7.6, "cm")
  25032. },
  25033. {
  25034. name: "Human Scale",
  25035. height: math.unit(1.67, "meters")
  25036. },
  25037. {
  25038. name: "Wolxi Scale",
  25039. height: math.unit(36.7, "meters"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(1.73, "meters"),
  25049. weight: math.unit(240, "lb"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/izue-two-mothers/front.svg",
  25053. extra: 469 / 437,
  25054. bottom: 1.24 / 470.6
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Shrunken",
  25061. height: math.unit(7.86, "cm")
  25062. },
  25063. {
  25064. name: "Human Scale",
  25065. height: math.unit(1.73, "meters")
  25066. },
  25067. {
  25068. name: "Wolxi Scale",
  25069. height: math.unit(38, "meters"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(1.55, "meters"),
  25079. weight: math.unit(120, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/teeku-love-shack/front.svg",
  25083. extra: 387 / 362,
  25084. bottom: 1.51 / 388
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Shrunken",
  25091. height: math.unit(7, "cm")
  25092. },
  25093. {
  25094. name: "Human Scale",
  25095. height: math.unit(1.55, "meters")
  25096. },
  25097. {
  25098. name: "Wolxi Scale",
  25099. height: math.unit(34.1, "meters"),
  25100. default: true
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(1.83, "meters"),
  25109. weight: math.unit(135, "lb"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/dejma-the-red/front.svg",
  25113. extra: 480 / 458,
  25114. bottom: 1.8 / 482
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Shrunken",
  25121. height: math.unit(8.3, "cm")
  25122. },
  25123. {
  25124. name: "Human Scale",
  25125. height: math.unit(1.83, "meters")
  25126. },
  25127. {
  25128. name: "Wolxi Scale",
  25129. height: math.unit(40, "meters"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(1.78, "meters"),
  25139. weight: math.unit(65, "kg"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/aki/front.svg",
  25143. extra: 452 / 415
  25144. }
  25145. },
  25146. frontNsfw: {
  25147. height: math.unit(1.78, "meters"),
  25148. weight: math.unit(65, "kg"),
  25149. name: "Front (NSFW)",
  25150. image: {
  25151. source: "./media/characters/aki/front-nsfw.svg",
  25152. extra: 452 / 415
  25153. }
  25154. },
  25155. back: {
  25156. height: math.unit(1.78, "meters"),
  25157. weight: math.unit(65, "kg"),
  25158. name: "Back",
  25159. image: {
  25160. source: "./media/characters/aki/back.svg",
  25161. extra: 452 / 415
  25162. }
  25163. },
  25164. rump: {
  25165. height: math.unit(2.05, "feet"),
  25166. name: "Rump",
  25167. image: {
  25168. source: "./media/characters/aki/rump.svg"
  25169. }
  25170. },
  25171. dick: {
  25172. height: math.unit(0.95, "feet"),
  25173. name: "Dick",
  25174. image: {
  25175. source: "./media/characters/aki/dick.svg"
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Micro",
  25182. height: math.unit(15, "cm")
  25183. },
  25184. {
  25185. name: "Normal",
  25186. height: math.unit(178, "cm"),
  25187. default: true
  25188. },
  25189. {
  25190. name: "Macro",
  25191. height: math.unit(214, "m")
  25192. },
  25193. {
  25194. name: "Macro+",
  25195. height: math.unit(534, "m")
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(5 + 5 / 12, "feet"),
  25204. weight: math.unit(120, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/ari/front.svg",
  25208. extra: 1550/1471,
  25209. bottom: 39/1589
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(5 + 5 / 12, "feet")
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(100, "feet"),
  25221. default: true
  25222. },
  25223. {
  25224. name: "Megamacro",
  25225. height: math.unit(100, "miles")
  25226. },
  25227. {
  25228. name: "Gigamacro",
  25229. height: math.unit(80000, "miles")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25235. {
  25236. side: {
  25237. height: math.unit(9, "feet"),
  25238. weight: math.unit(400, "kg"),
  25239. name: "Side",
  25240. image: {
  25241. source: "./media/characters/bolt/side.svg",
  25242. extra: 1126 / 896,
  25243. bottom: 60 / 1187.3,
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Micro",
  25250. height: math.unit(5, "inches")
  25251. },
  25252. {
  25253. name: "Normal",
  25254. height: math.unit(9, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Macro",
  25259. height: math.unit(700, "feet")
  25260. },
  25261. {
  25262. name: "Max Size",
  25263. height: math.unit(1.52e22, "yottameters")
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25269. {
  25270. front: {
  25271. height: math.unit(4.3, "meters"),
  25272. weight: math.unit(3, "tons"),
  25273. name: "Front",
  25274. image: {
  25275. source: "./media/characters/draekon-sylviar/front.svg",
  25276. extra: 2072/1512,
  25277. bottom: 74/2146
  25278. }
  25279. },
  25280. back: {
  25281. height: math.unit(4.3, "meters"),
  25282. weight: math.unit(3, "tons"),
  25283. name: "Back",
  25284. image: {
  25285. source: "./media/characters/draekon-sylviar/back.svg",
  25286. extra: 1639/1483,
  25287. bottom: 41/1680
  25288. }
  25289. },
  25290. feral: {
  25291. height: math.unit(1.15, "meters"),
  25292. weight: math.unit(3, "tons"),
  25293. name: "Feral",
  25294. image: {
  25295. source: "./media/characters/draekon-sylviar/feral.svg",
  25296. extra: 1033/395,
  25297. bottom: 130/1163
  25298. }
  25299. },
  25300. maw: {
  25301. height: math.unit(1.3, "meters"),
  25302. name: "Maw",
  25303. image: {
  25304. source: "./media/characters/draekon-sylviar/maw.svg"
  25305. }
  25306. },
  25307. mawSeparated: {
  25308. height: math.unit(1.53, "meters"),
  25309. name: "Separated Maw",
  25310. image: {
  25311. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25312. }
  25313. },
  25314. tail: {
  25315. height: math.unit(1.15, "meters"),
  25316. name: "Tail",
  25317. image: {
  25318. source: "./media/characters/draekon-sylviar/tail.svg"
  25319. }
  25320. },
  25321. tailDick: {
  25322. height: math.unit(1.15, "meters"),
  25323. name: "Tail (Dick)",
  25324. image: {
  25325. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25326. }
  25327. },
  25328. tailDickSeparated: {
  25329. height: math.unit(1.19, "meters"),
  25330. name: "Tail (Separated Dick)",
  25331. image: {
  25332. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25333. }
  25334. },
  25335. slit: {
  25336. height: math.unit(1, "meters"),
  25337. name: "Slit",
  25338. image: {
  25339. source: "./media/characters/draekon-sylviar/slit.svg"
  25340. }
  25341. },
  25342. dick: {
  25343. height: math.unit(1.15, "meters"),
  25344. name: "Dick",
  25345. image: {
  25346. source: "./media/characters/draekon-sylviar/dick.svg"
  25347. }
  25348. },
  25349. dickSeparated: {
  25350. height: math.unit(1.1, "meters"),
  25351. name: "Separated Dick",
  25352. image: {
  25353. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25354. }
  25355. },
  25356. sheath: {
  25357. height: math.unit(1.15, "meters"),
  25358. name: "Sheath",
  25359. image: {
  25360. source: "./media/characters/draekon-sylviar/sheath.svg"
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Small",
  25367. height: math.unit(4.53 / 2, "meters"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(4.53, "meters"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Large",
  25377. height: math.unit(4.53 * 2, "meters"),
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(6 + 2 / 12, "feet"),
  25386. weight: math.unit(180, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/brawler/front.svg",
  25390. extra: 3301 / 3027,
  25391. bottom: 138 / 3439
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(6 + 2 / 12, "feet"),
  25399. default: true
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(11, "feet"),
  25408. weight: math.unit(1000, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/alex/front.svg",
  25412. bottom: 44.5 / 620
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Micro",
  25419. height: math.unit(5, "inches")
  25420. },
  25421. {
  25422. name: "Normal",
  25423. height: math.unit(11, "feet"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Macro",
  25428. height: math.unit(9.5e9, "feet")
  25429. },
  25430. {
  25431. name: "Max Size",
  25432. height: math.unit(1.4e283, "yottameters")
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25438. {
  25439. female: {
  25440. height: math.unit(29.9, "m"),
  25441. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25442. name: "Female",
  25443. image: {
  25444. source: "./media/characters/zenari/female.svg",
  25445. extra: 3281.6 / 3217,
  25446. bottom: 72.2 / 3353
  25447. }
  25448. },
  25449. male: {
  25450. height: math.unit(27.7, "m"),
  25451. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25452. name: "Male",
  25453. image: {
  25454. source: "./media/characters/zenari/male.svg",
  25455. extra: 3008 / 2991,
  25456. bottom: 54.6 / 3069
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Macro",
  25463. height: math.unit(29.7, "meters"),
  25464. default: true
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25470. {
  25471. female: {
  25472. height: math.unit(23.8, "m"),
  25473. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25474. name: "Female",
  25475. image: {
  25476. source: "./media/characters/mactarian/female.svg",
  25477. extra: 2662 / 2569,
  25478. bottom: 73 / 2736
  25479. }
  25480. },
  25481. male: {
  25482. height: math.unit(23.8, "m"),
  25483. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25484. name: "Male",
  25485. image: {
  25486. source: "./media/characters/mactarian/male.svg",
  25487. extra: 2673 / 2600,
  25488. bottom: 76 / 2750
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Macro",
  25495. height: math.unit(23.8, "meters"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25502. {
  25503. female: {
  25504. height: math.unit(19.3, "m"),
  25505. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25506. name: "Female",
  25507. image: {
  25508. source: "./media/characters/umok/female.svg",
  25509. extra: 2186 / 2078,
  25510. bottom: 87 / 2277
  25511. }
  25512. },
  25513. male: {
  25514. height: math.unit(19.5, "m"),
  25515. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25516. name: "Male",
  25517. image: {
  25518. source: "./media/characters/umok/male.svg",
  25519. extra: 2233 / 2140,
  25520. bottom: 24.4 / 2258
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Macro",
  25527. height: math.unit(19.3, "meters"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25534. {
  25535. female: {
  25536. height: math.unit(26.15, "m"),
  25537. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25538. name: "Female",
  25539. image: {
  25540. source: "./media/characters/joraxian/female.svg",
  25541. extra: 2912 / 2824,
  25542. bottom: 36 / 2956
  25543. }
  25544. },
  25545. male: {
  25546. height: math.unit(25.4, "m"),
  25547. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25548. name: "Male",
  25549. image: {
  25550. source: "./media/characters/joraxian/male.svg",
  25551. extra: 2877 / 2721,
  25552. bottom: 82 / 2967
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Macro",
  25559. height: math.unit(26.15, "meters"),
  25560. default: true
  25561. },
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25566. {
  25567. female: {
  25568. height: math.unit(21.6, "m"),
  25569. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25570. name: "Female",
  25571. image: {
  25572. source: "./media/characters/sthara/female.svg",
  25573. extra: 2516 / 2347,
  25574. bottom: 21.5 / 2537
  25575. }
  25576. },
  25577. male: {
  25578. height: math.unit(24, "m"),
  25579. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25580. name: "Male",
  25581. image: {
  25582. source: "./media/characters/sthara/male.svg",
  25583. extra: 2732 / 2607,
  25584. bottom: 23 / 2732
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Macro",
  25591. height: math.unit(21.6, "meters"),
  25592. default: true
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(6 + 4 / 12, "feet"),
  25601. weight: math.unit(175, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/luka-bryzant/front.svg",
  25605. extra: 311 / 289,
  25606. bottom: 4 / 315
  25607. }
  25608. },
  25609. back: {
  25610. height: math.unit(6 + 4 / 12, "feet"),
  25611. weight: math.unit(175, "lb"),
  25612. name: "Back",
  25613. image: {
  25614. source: "./media/characters/luka-bryzant/back.svg",
  25615. extra: 311 / 289,
  25616. bottom: 3.8 / 313.7
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Micro",
  25623. height: math.unit(10, "inches")
  25624. },
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(6 + 4 / 12, "feet"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Large",
  25632. height: math.unit(12, "feet")
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25638. {
  25639. front: {
  25640. height: math.unit(5 + 7 / 12, "feet"),
  25641. weight: math.unit(185, "lb"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/aman-aquila/front.svg",
  25645. extra: 1013 / 976,
  25646. bottom: 45.6 / 1057
  25647. }
  25648. },
  25649. side: {
  25650. height: math.unit(5 + 7 / 12, "feet"),
  25651. weight: math.unit(185, "lb"),
  25652. name: "Side",
  25653. image: {
  25654. source: "./media/characters/aman-aquila/side.svg",
  25655. extra: 1054 / 1011,
  25656. bottom: 15 / 1070
  25657. }
  25658. },
  25659. back: {
  25660. height: math.unit(5 + 7 / 12, "feet"),
  25661. weight: math.unit(185, "lb"),
  25662. name: "Back",
  25663. image: {
  25664. source: "./media/characters/aman-aquila/back.svg",
  25665. extra: 1026 / 970,
  25666. bottom: 12 / 1039
  25667. }
  25668. },
  25669. head: {
  25670. height: math.unit(1.211, "feet"),
  25671. name: "Head",
  25672. image: {
  25673. source: "./media/characters/aman-aquila/head.svg",
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Minimicro",
  25680. height: math.unit(0.057, "inches")
  25681. },
  25682. {
  25683. name: "Micro",
  25684. height: math.unit(7, "inches")
  25685. },
  25686. {
  25687. name: "Mini",
  25688. height: math.unit(3 + 7 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(5 + 7 / 12, "feet"),
  25693. default: true
  25694. },
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(157 + 7 / 12, "feet")
  25698. },
  25699. {
  25700. name: "Megamacro",
  25701. height: math.unit(1557 + 7 / 12, "feet")
  25702. },
  25703. {
  25704. name: "Gigamacro",
  25705. height: math.unit(15557 + 7 / 12, "feet")
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(3 + 2 / 12, "inches"),
  25714. weight: math.unit(0.3, "ounces"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/hiphae/front.svg",
  25718. extra: 1931 / 1683,
  25719. bottom: 24 / 1955
  25720. }
  25721. },
  25722. },
  25723. [
  25724. {
  25725. name: "Normal",
  25726. height: math.unit(3 + 1 / 2, "inches"),
  25727. default: true
  25728. },
  25729. ]
  25730. ))
  25731. characterMakers.push(() => makeCharacter(
  25732. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25733. {
  25734. front: {
  25735. height: math.unit(5 + 10 / 12, "feet"),
  25736. weight: math.unit(165, "lb"),
  25737. name: "Front",
  25738. image: {
  25739. source: "./media/characters/nicky/front.svg",
  25740. extra: 3144 / 2886,
  25741. bottom: 45.6 / 3192
  25742. }
  25743. },
  25744. back: {
  25745. height: math.unit(5 + 10 / 12, "feet"),
  25746. weight: math.unit(165, "lb"),
  25747. name: "Back",
  25748. image: {
  25749. source: "./media/characters/nicky/back.svg",
  25750. extra: 3055 / 2804,
  25751. bottom: 28.4 / 3087
  25752. }
  25753. },
  25754. frontclothed: {
  25755. height: math.unit(5 + 10 / 12, "feet"),
  25756. weight: math.unit(165, "lb"),
  25757. name: "Front-clothed",
  25758. image: {
  25759. source: "./media/characters/nicky/front-clothed.svg",
  25760. extra: 3184.9 / 2926.9,
  25761. bottom: 86.5 / 3239.9
  25762. }
  25763. },
  25764. foot: {
  25765. height: math.unit(1.16, "feet"),
  25766. name: "Foot",
  25767. image: {
  25768. source: "./media/characters/nicky/foot.svg"
  25769. }
  25770. },
  25771. feet: {
  25772. height: math.unit(1.34, "feet"),
  25773. name: "Feet",
  25774. image: {
  25775. source: "./media/characters/nicky/feet.svg"
  25776. }
  25777. },
  25778. maw: {
  25779. height: math.unit(0.9, "feet"),
  25780. name: "Maw",
  25781. image: {
  25782. source: "./media/characters/nicky/maw.svg"
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(5 + 10 / 12, "feet"),
  25790. default: true
  25791. },
  25792. {
  25793. name: "Macro",
  25794. height: math.unit(60, "feet")
  25795. },
  25796. {
  25797. name: "Megamacro",
  25798. height: math.unit(1, "mile")
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25804. {
  25805. side: {
  25806. height: math.unit(10, "feet"),
  25807. weight: math.unit(600, "lb"),
  25808. name: "Side",
  25809. image: {
  25810. source: "./media/characters/blair/side.svg",
  25811. bottom: 16.6 / 475,
  25812. extra: 458 / 431
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Micro",
  25819. height: math.unit(8, "inches")
  25820. },
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(10, "feet"),
  25824. default: true
  25825. },
  25826. {
  25827. name: "Macro",
  25828. height: math.unit(180, "feet")
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(5 + 4 / 12, "feet"),
  25837. weight: math.unit(125, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/fisher/front.svg",
  25841. extra: 444 / 390,
  25842. bottom: 2 / 444.8
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Micro",
  25849. height: math.unit(4, "inches")
  25850. },
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(5 + 4 / 12, "feet"),
  25854. default: true
  25855. },
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(100, "feet")
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(6.71, "feet"),
  25867. weight: math.unit(200, "lb"),
  25868. capacity: math.unit(1000000, "people"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/gliss/front.svg",
  25872. extra: 2347 / 2231,
  25873. bottom: 113 / 2462
  25874. }
  25875. },
  25876. hammerspaceSize: {
  25877. height: math.unit(6.71 * 717, "feet"),
  25878. weight: math.unit(200, "lb"),
  25879. capacity: math.unit(1000000, "people"),
  25880. name: "Hammerspace Size",
  25881. image: {
  25882. source: "./media/characters/gliss/front.svg",
  25883. extra: 2347 / 2231,
  25884. bottom: 113 / 2462
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(6.71, "feet"),
  25892. default: true
  25893. },
  25894. ]
  25895. ))
  25896. characterMakers.push(() => makeCharacter(
  25897. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25898. {
  25899. side: {
  25900. height: math.unit(1.44, "m"),
  25901. weight: math.unit(80, "kg"),
  25902. name: "Side",
  25903. image: {
  25904. source: "./media/characters/dune-anderson/side.svg",
  25905. bottom: 49 / 1426
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Wolf-sized",
  25912. height: math.unit(1.44, "meters")
  25913. },
  25914. {
  25915. name: "Normal",
  25916. height: math.unit(5.05, "meters"),
  25917. default: true
  25918. },
  25919. {
  25920. name: "Big",
  25921. height: math.unit(14.4, "meters")
  25922. },
  25923. {
  25924. name: "Huge",
  25925. height: math.unit(144, "meters")
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25931. {
  25932. front: {
  25933. height: math.unit(7, "feet"),
  25934. weight: math.unit(425, "lb"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/hind/front.svg",
  25938. extra: 2091 / 1860,
  25939. bottom: 129 / 2220
  25940. }
  25941. },
  25942. back: {
  25943. height: math.unit(7, "feet"),
  25944. weight: math.unit(425, "lb"),
  25945. name: "Back",
  25946. image: {
  25947. source: "./media/characters/hind/back.svg",
  25948. extra: 2091 / 1860,
  25949. bottom: 24.6 / 2309
  25950. }
  25951. },
  25952. tail: {
  25953. height: math.unit(2.8, "feet"),
  25954. name: "Tail",
  25955. image: {
  25956. source: "./media/characters/hind/tail.svg"
  25957. }
  25958. },
  25959. head: {
  25960. height: math.unit(2.55, "feet"),
  25961. name: "Head",
  25962. image: {
  25963. source: "./media/characters/hind/head.svg"
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "XS",
  25970. height: math.unit(0.7, "feet")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(7, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "XL",
  25979. height: math.unit(70, "feet")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(2.1, "meters"),
  25988. weight: math.unit(150, "lb"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/tharquench-sizestealer/front.svg",
  25992. extra: 1605/1470,
  25993. bottom: 36/1641
  25994. }
  25995. },
  25996. frontAlt: {
  25997. height: math.unit(2.1, "meters"),
  25998. weight: math.unit(150, "lb"),
  25999. name: "Front (Alt)",
  26000. image: {
  26001. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26002. extra: 2318 / 2063,
  26003. bottom: 93.4 / 2410
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Nano",
  26010. height: math.unit(1, "mm")
  26011. },
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(1, "cm")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(2.1, "meters"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(7 + 5 / 12, "feet"),
  26028. weight: math.unit(357, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/solex-draconov/front.svg",
  26032. extra: 1993 / 1865,
  26033. bottom: 117 / 2111
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Natural Height",
  26040. height: math.unit(7 + 5 / 12, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Macro",
  26045. height: math.unit(350, "feet")
  26046. },
  26047. {
  26048. name: "Macro+",
  26049. height: math.unit(1000, "feet")
  26050. },
  26051. {
  26052. name: "Megamacro",
  26053. height: math.unit(20, "km")
  26054. },
  26055. {
  26056. name: "Megamacro+",
  26057. height: math.unit(1000, "km")
  26058. },
  26059. {
  26060. name: "Gigamacro",
  26061. height: math.unit(2.5, "Gm")
  26062. },
  26063. {
  26064. name: "Teramacro",
  26065. height: math.unit(15, "Tm")
  26066. },
  26067. {
  26068. name: "Galactic",
  26069. height: math.unit(30, "Zm")
  26070. },
  26071. {
  26072. name: "Universal",
  26073. height: math.unit(21000, "Ym")
  26074. },
  26075. {
  26076. name: "Omniversal",
  26077. height: math.unit(9.861e50, "Ym")
  26078. },
  26079. {
  26080. name: "Existential",
  26081. height: math.unit(1e300, "meters")
  26082. },
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26087. {
  26088. side: {
  26089. height: math.unit(25, "feet"),
  26090. weight: math.unit(90000, "lb"),
  26091. name: "Side",
  26092. image: {
  26093. source: "./media/characters/mandarax/side.svg",
  26094. extra: 614 / 332,
  26095. bottom: 55 / 630
  26096. }
  26097. },
  26098. lounging: {
  26099. height: math.unit(15.4, "feet"),
  26100. weight: math.unit(90000, "lb"),
  26101. name: "Lounging",
  26102. image: {
  26103. source: "./media/characters/mandarax/lounging.svg",
  26104. extra: 817/609,
  26105. bottom: 685/1502
  26106. }
  26107. },
  26108. head: {
  26109. height: math.unit(11.4, "feet"),
  26110. name: "Head",
  26111. image: {
  26112. source: "./media/characters/mandarax/head.svg"
  26113. }
  26114. },
  26115. belly: {
  26116. height: math.unit(33, "feet"),
  26117. name: "Belly",
  26118. capacity: math.unit(500, "people"),
  26119. image: {
  26120. source: "./media/characters/mandarax/belly.svg"
  26121. }
  26122. },
  26123. dick: {
  26124. height: math.unit(8.46, "feet"),
  26125. name: "Dick",
  26126. image: {
  26127. source: "./media/characters/mandarax/dick.svg"
  26128. }
  26129. },
  26130. top: {
  26131. height: math.unit(28, "meters"),
  26132. name: "Top",
  26133. image: {
  26134. source: "./media/characters/mandarax/top.svg"
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Normal",
  26141. height: math.unit(25, "feet"),
  26142. default: true
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(5, "feet"),
  26151. weight: math.unit(90, "lb"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/pixil/front.svg",
  26155. extra: 2000 / 1618,
  26156. bottom: 12.3 / 2011
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Normal",
  26163. height: math.unit(5, "feet"),
  26164. default: true
  26165. },
  26166. {
  26167. name: "Megamacro",
  26168. height: math.unit(10, "miles"),
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(7 + 2 / 12, "feet"),
  26177. weight: math.unit(200, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/angel/front.svg",
  26181. extra: 1830 / 1737,
  26182. bottom: 22.6 / 1854,
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(7 + 2 / 12, "feet"),
  26190. default: true
  26191. },
  26192. {
  26193. name: "Macro",
  26194. height: math.unit(1000, "feet")
  26195. },
  26196. {
  26197. name: "Megamacro",
  26198. height: math.unit(2, "miles")
  26199. },
  26200. {
  26201. name: "Gigamacro",
  26202. height: math.unit(20, "earths")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(5, "feet"),
  26211. weight: math.unit(180, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/mekana/front.svg",
  26215. extra: 1671 / 1605,
  26216. bottom: 3.5 / 1691
  26217. }
  26218. },
  26219. side: {
  26220. height: math.unit(5, "feet"),
  26221. weight: math.unit(180, "lb"),
  26222. name: "Side",
  26223. image: {
  26224. source: "./media/characters/mekana/side.svg",
  26225. extra: 1671 / 1605,
  26226. bottom: 3.5 / 1691
  26227. }
  26228. },
  26229. back: {
  26230. height: math.unit(5, "feet"),
  26231. weight: math.unit(180, "lb"),
  26232. name: "Back",
  26233. image: {
  26234. source: "./media/characters/mekana/back.svg",
  26235. extra: 1671 / 1605,
  26236. bottom: 3.5 / 1691
  26237. }
  26238. },
  26239. },
  26240. [
  26241. {
  26242. name: "Normal",
  26243. height: math.unit(5, "feet"),
  26244. default: true
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26250. {
  26251. front: {
  26252. height: math.unit(4 + 6 / 12, "feet"),
  26253. weight: math.unit(80, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/pixie/front.svg",
  26257. extra: 1924 / 1825,
  26258. bottom: 22.4 / 1946
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Normal",
  26265. height: math.unit(4 + 6 / 12, "feet"),
  26266. default: true
  26267. },
  26268. {
  26269. name: "Macro",
  26270. height: math.unit(40, "feet")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(2.1, "meters"),
  26279. weight: math.unit(200, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/the-lascivious/front.svg",
  26283. extra: 1 / 0.893,
  26284. bottom: 3.5 / 573.7
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Human Scale",
  26291. height: math.unit(2.1, "meters")
  26292. },
  26293. {
  26294. name: "Wolxi Scale",
  26295. height: math.unit(46.2, "m"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Boinker of Buildings",
  26300. height: math.unit(10, "km")
  26301. },
  26302. {
  26303. name: "Shagger of Skyscrapers",
  26304. height: math.unit(40, "km")
  26305. },
  26306. {
  26307. name: "Banger of Boroughs",
  26308. height: math.unit(4000, "km")
  26309. },
  26310. {
  26311. name: "Screwer of States",
  26312. height: math.unit(100000, "km")
  26313. },
  26314. {
  26315. name: "Pounder of Planets",
  26316. height: math.unit(2000000, "km")
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(6, "feet"),
  26325. weight: math.unit(150, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/aj/front.svg",
  26329. extra: 2039 / 1562,
  26330. bottom: 40 / 2079
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(11 + 6 / 12, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Megamacro",
  26342. height: math.unit(60, "megameters")
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26348. {
  26349. side: {
  26350. height: math.unit(31 + 8 / 12, "feet"),
  26351. weight: math.unit(75000, "kg"),
  26352. name: "Side",
  26353. image: {
  26354. source: "./media/characters/koros/side.svg",
  26355. extra: 1442 / 1297,
  26356. bottom: 122.7 / 1562
  26357. }
  26358. },
  26359. dicksKingsCrown: {
  26360. height: math.unit(6, "feet"),
  26361. name: "Dicks (King's Crown)",
  26362. image: {
  26363. source: "./media/characters/koros/dicks-kings-crown.svg"
  26364. }
  26365. },
  26366. dicksTailSet: {
  26367. height: math.unit(3, "feet"),
  26368. name: "Dicks (Tail Set)",
  26369. image: {
  26370. source: "./media/characters/koros/dicks-tail-set.svg"
  26371. }
  26372. },
  26373. dickCumming: {
  26374. height: math.unit(7.98, "feet"),
  26375. name: "Dick (Cumming)",
  26376. image: {
  26377. source: "./media/characters/koros/dick-cumming.svg"
  26378. }
  26379. },
  26380. dicksBack: {
  26381. height: math.unit(5.9, "feet"),
  26382. name: "Dicks (Back)",
  26383. image: {
  26384. source: "./media/characters/koros/dicks-back.svg"
  26385. }
  26386. },
  26387. dicksFront: {
  26388. height: math.unit(3.72, "feet"),
  26389. name: "Dicks (Front)",
  26390. image: {
  26391. source: "./media/characters/koros/dicks-front.svg"
  26392. }
  26393. },
  26394. dicksPeeking: {
  26395. height: math.unit(3.0, "feet"),
  26396. name: "Dicks (Peeking)",
  26397. image: {
  26398. source: "./media/characters/koros/dicks-peeking.svg"
  26399. }
  26400. },
  26401. eye: {
  26402. height: math.unit(1.7, "feet"),
  26403. name: "Eye",
  26404. image: {
  26405. source: "./media/characters/koros/eye.svg"
  26406. }
  26407. },
  26408. headFront: {
  26409. height: math.unit(11.69, "feet"),
  26410. name: "Head (Front)",
  26411. image: {
  26412. source: "./media/characters/koros/head-front.svg"
  26413. }
  26414. },
  26415. headSide: {
  26416. height: math.unit(14, "feet"),
  26417. name: "Head (Side)",
  26418. image: {
  26419. source: "./media/characters/koros/head-side.svg"
  26420. }
  26421. },
  26422. leg: {
  26423. height: math.unit(17, "feet"),
  26424. name: "Leg",
  26425. image: {
  26426. source: "./media/characters/koros/leg.svg"
  26427. }
  26428. },
  26429. mawSide: {
  26430. height: math.unit(12.8, "feet"),
  26431. name: "Maw (Side)",
  26432. image: {
  26433. source: "./media/characters/koros/maw-side.svg"
  26434. }
  26435. },
  26436. mawSpitting: {
  26437. height: math.unit(17, "feet"),
  26438. name: "Maw (Spitting)",
  26439. image: {
  26440. source: "./media/characters/koros/maw-spitting.svg"
  26441. }
  26442. },
  26443. slit: {
  26444. height: math.unit(2.8, "feet"),
  26445. name: "Slit",
  26446. image: {
  26447. source: "./media/characters/koros/slit.svg"
  26448. }
  26449. },
  26450. stomach: {
  26451. height: math.unit(6.8, "feet"),
  26452. capacity: math.unit(20, "people"),
  26453. name: "Stomach",
  26454. image: {
  26455. source: "./media/characters/koros/stomach.svg"
  26456. }
  26457. },
  26458. wingspanBottom: {
  26459. height: math.unit(114, "feet"),
  26460. name: "Wingspan (Bottom)",
  26461. image: {
  26462. source: "./media/characters/koros/wingspan-bottom.svg"
  26463. }
  26464. },
  26465. wingspanTop: {
  26466. height: math.unit(104, "feet"),
  26467. name: "Wingspan (Top)",
  26468. image: {
  26469. source: "./media/characters/koros/wingspan-top.svg"
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(31 + 8 / 12, "feet"),
  26477. default: true
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(18 + 5 / 12, "feet"),
  26486. weight: math.unit(3750, "kg"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/vexx/front.svg",
  26490. extra: 426 / 396,
  26491. bottom: 31.5 / 458
  26492. }
  26493. },
  26494. maw: {
  26495. height: math.unit(6, "feet"),
  26496. name: "Maw",
  26497. image: {
  26498. source: "./media/characters/vexx/maw.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(18 + 5 / 12, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(17 + 6 / 12, "feet"),
  26515. weight: math.unit(150, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/baadra/front.svg",
  26519. extra: 1694/1553,
  26520. bottom: 179/1873
  26521. }
  26522. },
  26523. frontAlt: {
  26524. height: math.unit(17 + 6 / 12, "feet"),
  26525. weight: math.unit(150, "lb"),
  26526. name: "Front (Alt)",
  26527. image: {
  26528. source: "./media/characters/baadra/front-alt.svg",
  26529. extra: 3137 / 2890,
  26530. bottom: 168.4 / 3305
  26531. }
  26532. },
  26533. back: {
  26534. height: math.unit(17 + 6 / 12, "feet"),
  26535. weight: math.unit(150, "lb"),
  26536. name: "Back",
  26537. image: {
  26538. source: "./media/characters/baadra/back.svg",
  26539. extra: 3142 / 2890,
  26540. bottom: 220 / 3371
  26541. }
  26542. },
  26543. head: {
  26544. height: math.unit(5.45, "feet"),
  26545. name: "Head",
  26546. image: {
  26547. source: "./media/characters/baadra/head.svg"
  26548. }
  26549. },
  26550. headAngry: {
  26551. height: math.unit(4.95, "feet"),
  26552. name: "Head (Angry)",
  26553. image: {
  26554. source: "./media/characters/baadra/head-angry.svg"
  26555. }
  26556. },
  26557. headOpen: {
  26558. height: math.unit(6, "feet"),
  26559. name: "Head (Open)",
  26560. image: {
  26561. source: "./media/characters/baadra/head-open.svg"
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(17 + 6 / 12, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(7 + 3 / 12, "feet"),
  26578. weight: math.unit(180, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/juri/front.svg",
  26582. extra: 1401 / 1237,
  26583. bottom: 18.5 / 1418
  26584. }
  26585. },
  26586. side: {
  26587. height: math.unit(7 + 3 / 12, "feet"),
  26588. weight: math.unit(180, "lb"),
  26589. name: "Side",
  26590. image: {
  26591. source: "./media/characters/juri/side.svg",
  26592. extra: 1424 / 1242,
  26593. bottom: 18.5 / 1447
  26594. }
  26595. },
  26596. sitting: {
  26597. height: math.unit(6, "feet"),
  26598. weight: math.unit(180, "lb"),
  26599. name: "Sitting",
  26600. image: {
  26601. source: "./media/characters/juri/sitting.svg",
  26602. extra: 1270 / 1143,
  26603. bottom: 100 / 1343
  26604. }
  26605. },
  26606. back: {
  26607. height: math.unit(7 + 3 / 12, "feet"),
  26608. weight: math.unit(180, "lb"),
  26609. name: "Back",
  26610. image: {
  26611. source: "./media/characters/juri/back.svg",
  26612. extra: 1377 / 1240,
  26613. bottom: 23.7 / 1405
  26614. }
  26615. },
  26616. maw: {
  26617. height: math.unit(2.8, "feet"),
  26618. name: "Maw",
  26619. image: {
  26620. source: "./media/characters/juri/maw.svg"
  26621. }
  26622. },
  26623. stomach: {
  26624. height: math.unit(0.89, "feet"),
  26625. capacity: math.unit(4, "liters"),
  26626. name: "Stomach",
  26627. image: {
  26628. source: "./media/characters/juri/stomach.svg"
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(7 + 3 / 12, "feet"),
  26636. default: true
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26642. {
  26643. fox: {
  26644. height: math.unit(5 + 6 / 12, "feet"),
  26645. weight: math.unit(140, "lb"),
  26646. name: "Fox",
  26647. image: {
  26648. source: "./media/characters/maxene-sita/fox.svg",
  26649. extra: 146 / 138,
  26650. bottom: 2.1 / 148.19
  26651. }
  26652. },
  26653. foxLaying: {
  26654. height: math.unit(1.70, "feet"),
  26655. weight: math.unit(140, "lb"),
  26656. name: "Fox (Laying)",
  26657. image: {
  26658. source: "./media/characters/maxene-sita/fox-laying.svg",
  26659. extra: 910 / 572,
  26660. bottom: 71 / 981
  26661. }
  26662. },
  26663. kitsune: {
  26664. height: math.unit(10, "feet"),
  26665. weight: math.unit(800, "lb"),
  26666. name: "Kitsune",
  26667. image: {
  26668. source: "./media/characters/maxene-sita/kitsune.svg",
  26669. extra: 185 / 176,
  26670. bottom: 4.7 / 189.9
  26671. }
  26672. },
  26673. hellhound: {
  26674. height: math.unit(10, "feet"),
  26675. weight: math.unit(700, "lb"),
  26676. name: "Hellhound",
  26677. image: {
  26678. source: "./media/characters/maxene-sita/hellhound.svg",
  26679. extra: 1600 / 1545,
  26680. bottom: 81 / 1681
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(5 + 6 / 12, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26694. {
  26695. front: {
  26696. height: math.unit(3 + 4 / 12, "feet"),
  26697. weight: math.unit(70, "lb"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/maia/front.svg",
  26701. extra: 227 / 219.5,
  26702. bottom: 40 / 267
  26703. }
  26704. },
  26705. back: {
  26706. height: math.unit(3 + 4 / 12, "feet"),
  26707. weight: math.unit(70, "lb"),
  26708. name: "Back",
  26709. image: {
  26710. source: "./media/characters/maia/back.svg",
  26711. extra: 237 / 225
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Normal",
  26718. height: math.unit(3 + 4 / 12, "feet"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(5 + 10 / 12, "feet"),
  26728. weight: math.unit(197, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/jabaro/front.svg",
  26732. extra: 225 / 216,
  26733. bottom: 5.06 / 230
  26734. }
  26735. },
  26736. back: {
  26737. height: math.unit(5 + 10 / 12, "feet"),
  26738. weight: math.unit(197, "lb"),
  26739. name: "Back",
  26740. image: {
  26741. source: "./media/characters/jabaro/back.svg",
  26742. extra: 225 / 219,
  26743. bottom: 1.9 / 227
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(5 + 10 / 12, "feet"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(5 + 8 / 12, "feet"),
  26760. weight: math.unit(139, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/risa/front.svg",
  26764. extra: 270 / 260,
  26765. bottom: 11.2 / 282
  26766. }
  26767. },
  26768. back: {
  26769. height: math.unit(5 + 8 / 12, "feet"),
  26770. weight: math.unit(139, "lb"),
  26771. name: "Back",
  26772. image: {
  26773. source: "./media/characters/risa/back.svg",
  26774. extra: 264 / 255,
  26775. bottom: 4 / 268
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Normal",
  26782. height: math.unit(5 + 8 / 12, "feet"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(2 + 11 / 12, "feet"),
  26792. weight: math.unit(30, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/weatley/front.svg",
  26796. bottom: 10.7 / 414,
  26797. extra: 403.5 / 362
  26798. }
  26799. },
  26800. back: {
  26801. height: math.unit(2 + 11 / 12, "feet"),
  26802. weight: math.unit(30, "lb"),
  26803. name: "Back",
  26804. image: {
  26805. source: "./media/characters/weatley/back.svg",
  26806. bottom: 10.7 / 414,
  26807. extra: 403.5 / 362
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(2 + 11 / 12, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(5 + 2 / 12, "feet"),
  26824. weight: math.unit(50, "kg"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/mercury-crescent/front.svg",
  26828. extra: 1088 / 1033,
  26829. bottom: 18.9 / 1109
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(5 + 2 / 12, "feet"),
  26837. default: true
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(2, "feet"),
  26846. weight: math.unit(15, "kg"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/diamond-jones/front.svg",
  26850. extra: 727/723,
  26851. bottom: 46/773
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(2, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(3, "feet"),
  26868. weight: math.unit(30, "kg"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/sweet-bit/front.svg",
  26872. extra: 675 / 567,
  26873. bottom: 27.7 / 703
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(3, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26887. {
  26888. side: {
  26889. height: math.unit(9.178, "feet"),
  26890. weight: math.unit(500, "lb"),
  26891. name: "Side",
  26892. image: {
  26893. source: "./media/characters/umbrazen/side.svg",
  26894. extra: 1730 / 1473,
  26895. bottom: 34.6 / 1765
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(9.178, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(10, "feet"),
  26912. weight: math.unit(750, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/arlist/front.svg",
  26916. extra: 961 / 778,
  26917. bottom: 6.2 / 986
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(10, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(5 + 1 / 12, "feet"),
  26934. weight: math.unit(110, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/aradel/front.svg",
  26938. extra: 324 / 303,
  26939. bottom: 3.6 / 329.4
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(5 + 1 / 12, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26953. {
  26954. dressed: {
  26955. height: math.unit(3 + 8 / 12, "feet"),
  26956. weight: math.unit(50, "lb"),
  26957. name: "Dressed",
  26958. image: {
  26959. source: "./media/characters/serryn/dressed.svg",
  26960. extra: 1792 / 1656,
  26961. bottom: 43.5 / 1840
  26962. }
  26963. },
  26964. nude: {
  26965. height: math.unit(3 + 8 / 12, "feet"),
  26966. weight: math.unit(50, "lb"),
  26967. name: "Nude",
  26968. image: {
  26969. source: "./media/characters/serryn/nude.svg",
  26970. extra: 1792 / 1656,
  26971. bottom: 43.5 / 1840
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Normal",
  26978. height: math.unit(3 + 8 / 12, "feet"),
  26979. default: true
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(7 + 10 / 12, "feet"),
  26988. weight: math.unit(255, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/xavier-thyme/front.svg",
  26992. extra: 3733 / 3642,
  26993. bottom: 131 / 3869
  26994. }
  26995. },
  26996. frontRaven: {
  26997. height: math.unit(7 + 10 / 12, "feet"),
  26998. weight: math.unit(255, "lb"),
  26999. name: "Front (Raven)",
  27000. image: {
  27001. source: "./media/characters/xavier-thyme/front-raven.svg",
  27002. extra: 4385 / 3642,
  27003. bottom: 131 / 4517
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(7 + 10 / 12, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(1.6, "m"),
  27020. weight: math.unit(50, "kg"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/kiki/front.svg",
  27024. extra: 4682 / 3610,
  27025. bottom: 115 / 4777
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Normal",
  27032. height: math.unit(1.6, "meters"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(50, "m"),
  27042. weight: math.unit(500, "tonnes"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/ryoko/front.svg",
  27046. extra: 4632 / 3926,
  27047. bottom: 193 / 4823
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(50, "meters"),
  27055. default: true
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(30, "m"),
  27064. weight: math.unit(22, "tonnes"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/elio/front.svg",
  27068. extra: 4582 / 3720,
  27069. bottom: 236 / 4828
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(30, "meters"),
  27077. default: true
  27078. },
  27079. ]
  27080. ))
  27081. characterMakers.push(() => makeCharacter(
  27082. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27083. {
  27084. front: {
  27085. height: math.unit(6 + 3 / 12, "feet"),
  27086. weight: math.unit(120, "lb"),
  27087. name: "Front",
  27088. image: {
  27089. source: "./media/characters/azura/front.svg",
  27090. extra: 1149 / 1135,
  27091. bottom: 45 / 1194
  27092. }
  27093. },
  27094. frontClothed: {
  27095. height: math.unit(6 + 3 / 12, "feet"),
  27096. weight: math.unit(120, "lb"),
  27097. name: "Front (Clothed)",
  27098. image: {
  27099. source: "./media/characters/azura/front-clothed.svg",
  27100. extra: 1149 / 1135,
  27101. bottom: 45 / 1194
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(6 + 3 / 12, "feet"),
  27109. default: true
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(20 + 6 / 12, "feet")
  27114. },
  27115. {
  27116. name: "Megamacro",
  27117. height: math.unit(12, "miles")
  27118. },
  27119. {
  27120. name: "Gigamacro",
  27121. height: math.unit(10000, "miles")
  27122. },
  27123. {
  27124. name: "Teramacro",
  27125. height: math.unit(900000, "miles")
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(12, "feet"),
  27134. weight: math.unit(1, "ton"),
  27135. capacity: math.unit(660000, "gallons"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/zeus/front.svg",
  27139. extra: 5005 / 4717,
  27140. bottom: 363 / 5388
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(12, "feet")
  27148. },
  27149. {
  27150. name: "Preferred Size",
  27151. height: math.unit(0.5, "miles"),
  27152. default: true
  27153. },
  27154. {
  27155. name: "Giga Horse",
  27156. height: math.unit(300, "miles")
  27157. },
  27158. {
  27159. name: "Riding Planets",
  27160. height: math.unit(30, "megameters")
  27161. },
  27162. {
  27163. name: "Cosmic Giant",
  27164. height: math.unit(3, "zettameters")
  27165. },
  27166. {
  27167. name: "Breeding God",
  27168. height: math.unit(9.92e22, "yottameters")
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27174. {
  27175. side: {
  27176. height: math.unit(9, "feet"),
  27177. weight: math.unit(1500, "kg"),
  27178. name: "Side",
  27179. image: {
  27180. source: "./media/characters/fang/side.svg",
  27181. extra: 924 / 866,
  27182. bottom: 47.5 / 972.3
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(9, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Macro",
  27194. height: math.unit(75 + 6 / 12, "feet")
  27195. },
  27196. {
  27197. name: "Teramacro",
  27198. height: math.unit(50000, "miles")
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27204. {
  27205. front: {
  27206. height: math.unit(10, "feet"),
  27207. weight: math.unit(2, "tons"),
  27208. name: "Front",
  27209. image: {
  27210. source: "./media/characters/rekhit/front.svg",
  27211. extra: 2796 / 2590,
  27212. bottom: 225 / 3022
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(10, "feet"),
  27220. default: true
  27221. },
  27222. {
  27223. name: "Macro",
  27224. height: math.unit(500, "feet")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(7 + 6.451 / 12, "feet"),
  27233. weight: math.unit(310, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/dahlia-verrick/front.svg",
  27237. extra: 1488 / 1365,
  27238. bottom: 6.2 / 1495
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(7 + 6.451 / 12, "feet"),
  27243. weight: math.unit(310, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/dahlia-verrick/back.svg",
  27247. extra: 1472 / 1351,
  27248. bottom: 5.28 / 1477
  27249. }
  27250. },
  27251. frontBusiness: {
  27252. height: math.unit(7 + 6.451 / 12, "feet"),
  27253. weight: math.unit(200, "lb"),
  27254. name: "Front (Business)",
  27255. image: {
  27256. source: "./media/characters/dahlia-verrick/front-business.svg",
  27257. extra: 1478 / 1381,
  27258. bottom: 5.5 / 1484
  27259. }
  27260. },
  27261. frontCasual: {
  27262. height: math.unit(7 + 6.451 / 12, "feet"),
  27263. weight: math.unit(200, "lb"),
  27264. name: "Front (Casual)",
  27265. image: {
  27266. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27267. extra: 1478 / 1381,
  27268. bottom: 5.5 / 1484
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Travel-Sized",
  27275. height: math.unit(7.45, "inches")
  27276. },
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(7 + 6.451 / 12, "feet"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Hitting the Town",
  27284. height: math.unit(37 + 8 / 12, "feet")
  27285. },
  27286. {
  27287. name: "Stomp in the Suburbs",
  27288. height: math.unit(964 + 9.728 / 12, "feet")
  27289. },
  27290. {
  27291. name: "Sit on the City",
  27292. height: math.unit(61747 + 10.592 / 12, "feet")
  27293. },
  27294. {
  27295. name: "Glomp the Globe",
  27296. height: math.unit(252919327 + 4.832 / 12, "feet")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(6 + 4 / 12, "feet"),
  27305. weight: math.unit(320, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/balina-mahigan/front.svg",
  27309. extra: 447 / 428,
  27310. bottom: 18 / 466
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(6 + 4 / 12, "feet"),
  27315. weight: math.unit(320, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/balina-mahigan/back.svg",
  27319. extra: 445 / 428,
  27320. bottom: 4.07 / 448
  27321. }
  27322. },
  27323. arm: {
  27324. height: math.unit(1.88, "feet"),
  27325. name: "Arm",
  27326. image: {
  27327. source: "./media/characters/balina-mahigan/arm.svg"
  27328. }
  27329. },
  27330. backPort: {
  27331. height: math.unit(0.685, "feet"),
  27332. name: "Back Port",
  27333. image: {
  27334. source: "./media/characters/balina-mahigan/back-port.svg"
  27335. }
  27336. },
  27337. hoofpaw: {
  27338. height: math.unit(1.41, "feet"),
  27339. name: "Hoofpaw",
  27340. image: {
  27341. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27342. }
  27343. },
  27344. leftHandBack: {
  27345. height: math.unit(0.938, "feet"),
  27346. name: "Left Hand (Back)",
  27347. image: {
  27348. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27349. }
  27350. },
  27351. leftHandFront: {
  27352. height: math.unit(0.938, "feet"),
  27353. name: "Left Hand (Front)",
  27354. image: {
  27355. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27356. }
  27357. },
  27358. rightHandBack: {
  27359. height: math.unit(0.95, "feet"),
  27360. name: "Right Hand (Back)",
  27361. image: {
  27362. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27363. }
  27364. },
  27365. rightHandFront: {
  27366. height: math.unit(0.95, "feet"),
  27367. name: "Right Hand (Front)",
  27368. image: {
  27369. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(6 + 4 / 12, "feet"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(6, "feet"),
  27386. weight: math.unit(320, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/balina-mejeri/front.svg",
  27390. extra: 517 / 488,
  27391. bottom: 44.2 / 561
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(6 + 4 / 12, "feet")
  27399. },
  27400. {
  27401. name: "Business",
  27402. height: math.unit(155, "feet"),
  27403. default: true
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27409. {
  27410. kneeling: {
  27411. height: math.unit(6 + 4 / 12, "feet"),
  27412. weight: math.unit(300 * 20, "lb"),
  27413. name: "Kneeling",
  27414. image: {
  27415. source: "./media/characters/balbarian/kneeling.svg",
  27416. extra: 922 / 862,
  27417. bottom: 42.4 / 965
  27418. }
  27419. },
  27420. },
  27421. [
  27422. {
  27423. name: "Normal",
  27424. height: math.unit(6 + 4 / 12, "feet")
  27425. },
  27426. {
  27427. name: "Treasured",
  27428. height: math.unit(18 + 9 / 12, "feet"),
  27429. default: true
  27430. },
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(900, "feet")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(6 + 4 / 12, "feet"),
  27442. weight: math.unit(325, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/balina-amarini/front.svg",
  27446. extra: 415 / 403,
  27447. bottom: 19 / 433.4
  27448. }
  27449. },
  27450. back: {
  27451. height: math.unit(6 + 4 / 12, "feet"),
  27452. weight: math.unit(325, "lb"),
  27453. name: "Back",
  27454. image: {
  27455. source: "./media/characters/balina-amarini/back.svg",
  27456. extra: 415 / 403,
  27457. bottom: 13.5 / 432
  27458. }
  27459. },
  27460. overdrive: {
  27461. height: math.unit(6 + 4 / 12, "feet"),
  27462. weight: math.unit(400, "lb"),
  27463. name: "Overdrive",
  27464. image: {
  27465. source: "./media/characters/balina-amarini/overdrive.svg",
  27466. extra: 269 / 259,
  27467. bottom: 12 / 282
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Boom",
  27474. height: math.unit(9 + 10 / 12, "feet"),
  27475. default: true
  27476. },
  27477. {
  27478. name: "Macro",
  27479. height: math.unit(280, "feet")
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27485. {
  27486. goddess: {
  27487. height: math.unit(600, "feet"),
  27488. weight: math.unit(2000000, "tons"),
  27489. name: "Goddess",
  27490. image: {
  27491. source: "./media/characters/lady-kubwa/goddess.svg",
  27492. extra: 1240.5 / 1223,
  27493. bottom: 22 / 1263
  27494. }
  27495. },
  27496. goddesser: {
  27497. height: math.unit(900, "feet"),
  27498. weight: math.unit(20000000, "lb"),
  27499. name: "Goddess-er",
  27500. image: {
  27501. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27502. extra: 899 / 888,
  27503. bottom: 12.6 / 912
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Macro",
  27510. height: math.unit(600, "feet"),
  27511. default: true
  27512. },
  27513. {
  27514. name: "Megamacro",
  27515. height: math.unit(250, "miles")
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27521. {
  27522. front: {
  27523. height: math.unit(7 + 7 / 12, "feet"),
  27524. weight: math.unit(250, "lb"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/tala-grovehorn/front.svg",
  27528. extra: 2636 / 2525,
  27529. bottom: 147 / 2781
  27530. }
  27531. },
  27532. back: {
  27533. height: math.unit(7 + 7 / 12, "feet"),
  27534. weight: math.unit(250, "lb"),
  27535. name: "Back",
  27536. image: {
  27537. source: "./media/characters/tala-grovehorn/back.svg",
  27538. extra: 2635 / 2539,
  27539. bottom: 100 / 2732.8
  27540. }
  27541. },
  27542. mouth: {
  27543. height: math.unit(1.15, "feet"),
  27544. name: "Mouth",
  27545. image: {
  27546. source: "./media/characters/tala-grovehorn/mouth.svg"
  27547. }
  27548. },
  27549. dick: {
  27550. height: math.unit(2.36, "feet"),
  27551. name: "Dick",
  27552. image: {
  27553. source: "./media/characters/tala-grovehorn/dick.svg"
  27554. }
  27555. },
  27556. slit: {
  27557. height: math.unit(0.61, "feet"),
  27558. name: "Slit",
  27559. image: {
  27560. source: "./media/characters/tala-grovehorn/slit.svg"
  27561. }
  27562. },
  27563. },
  27564. [
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27569. {
  27570. front: {
  27571. height: math.unit(7 + 7 / 12, "feet"),
  27572. weight: math.unit(225, "lb"),
  27573. name: "Front",
  27574. image: {
  27575. source: "./media/characters/epona/front.svg",
  27576. extra: 2445 / 2290,
  27577. bottom: 251 / 2696
  27578. }
  27579. },
  27580. back: {
  27581. height: math.unit(7 + 7 / 12, "feet"),
  27582. weight: math.unit(225, "lb"),
  27583. name: "Back",
  27584. image: {
  27585. source: "./media/characters/epona/back.svg",
  27586. extra: 2546 / 2408,
  27587. bottom: 44 / 2589
  27588. }
  27589. },
  27590. genitals: {
  27591. height: math.unit(1.5, "feet"),
  27592. name: "Genitals",
  27593. image: {
  27594. source: "./media/characters/epona/genitals.svg"
  27595. }
  27596. },
  27597. },
  27598. [
  27599. {
  27600. name: "Normal",
  27601. height: math.unit(7 + 7 / 12, "feet"),
  27602. default: true
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27608. {
  27609. front: {
  27610. height: math.unit(7, "feet"),
  27611. weight: math.unit(518, "lb"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/avia-bloodbourn/front.svg",
  27615. extra: 1466 / 1350,
  27616. bottom: 65 / 1527
  27617. }
  27618. },
  27619. },
  27620. [
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27625. {
  27626. front: {
  27627. height: math.unit(9.35, "feet"),
  27628. weight: math.unit(600, "lb"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/amera/front.svg",
  27632. extra: 891 / 818,
  27633. bottom: 30 / 922.7
  27634. }
  27635. },
  27636. back: {
  27637. height: math.unit(9.35, "feet"),
  27638. weight: math.unit(600, "lb"),
  27639. name: "Back",
  27640. image: {
  27641. source: "./media/characters/amera/back.svg",
  27642. extra: 876 / 824,
  27643. bottom: 6.8 / 884
  27644. }
  27645. },
  27646. dick: {
  27647. height: math.unit(2.14, "feet"),
  27648. name: "Dick",
  27649. image: {
  27650. source: "./media/characters/amera/dick.svg"
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(9.35, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27664. {
  27665. kneeling: {
  27666. height: math.unit(3 + 4 / 12, "feet"),
  27667. weight: math.unit(90, "lb"),
  27668. name: "Kneeling",
  27669. image: {
  27670. source: "./media/characters/rosewen/kneeling.svg",
  27671. extra: 1835 / 1571,
  27672. bottom: 27.7 / 1862
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(3 + 4 / 12, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(5 + 10 / 12, "feet"),
  27689. weight: math.unit(200, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/sabah/front.svg",
  27693. extra: 849 / 763,
  27694. bottom: 33.9 / 881
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(5 + 10 / 12, "feet"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27708. {
  27709. front: {
  27710. height: math.unit(3 + 5 / 12, "feet"),
  27711. weight: math.unit(40, "kg"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/purple-flame/front.svg",
  27715. extra: 1577 / 1412,
  27716. bottom: 97 / 1694
  27717. }
  27718. },
  27719. frontDressed: {
  27720. height: math.unit(3 + 5 / 12, "feet"),
  27721. weight: math.unit(40, "kg"),
  27722. name: "Front (Dressed)",
  27723. image: {
  27724. source: "./media/characters/purple-flame/front-dressed.svg",
  27725. extra: 1577 / 1412,
  27726. bottom: 97 / 1694
  27727. }
  27728. },
  27729. headphones: {
  27730. height: math.unit(0.85, "feet"),
  27731. name: "Headphones",
  27732. image: {
  27733. source: "./media/characters/purple-flame/headphones.svg"
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Really Small",
  27740. height: math.unit(5, "cm")
  27741. },
  27742. {
  27743. name: "Micro",
  27744. height: math.unit(1 + 5 / 12, "feet")
  27745. },
  27746. {
  27747. name: "Normal",
  27748. height: math.unit(3 + 5 / 12, "feet"),
  27749. default: true
  27750. },
  27751. {
  27752. name: "Minimacro",
  27753. height: math.unit(125, "feet")
  27754. },
  27755. {
  27756. name: "Macro",
  27757. height: math.unit(0.5, "miles")
  27758. },
  27759. {
  27760. name: "Megamacro",
  27761. height: math.unit(50, "miles")
  27762. },
  27763. {
  27764. name: "Gigantic",
  27765. height: math.unit(750, "miles")
  27766. },
  27767. {
  27768. name: "Planetary",
  27769. height: math.unit(15000, "miles")
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(14, "feet"),
  27778. weight: math.unit(959, "lb"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/arsenal/front.svg",
  27782. extra: 2357 / 2157,
  27783. bottom: 93 / 2458
  27784. }
  27785. },
  27786. },
  27787. [
  27788. {
  27789. name: "Normal",
  27790. height: math.unit(14, "feet"),
  27791. default: true
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(6, "feet"),
  27800. weight: math.unit(150, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/adira/front.svg",
  27804. extra: 1078 / 1029,
  27805. bottom: 87 / 1166
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Micro",
  27812. height: math.unit(4, "inches"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Macro",
  27817. height: math.unit(50, "feet")
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(16, "feet"),
  27826. weight: math.unit(1000, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/grim/front.svg",
  27830. extra: 622 / 614,
  27831. bottom: 18.1 / 642
  27832. }
  27833. },
  27834. back: {
  27835. height: math.unit(16, "feet"),
  27836. weight: math.unit(1000, "lb"),
  27837. name: "Back",
  27838. image: {
  27839. source: "./media/characters/grim/back.svg",
  27840. extra: 610.6 / 602,
  27841. bottom: 40.8 / 652
  27842. }
  27843. },
  27844. hunched: {
  27845. height: math.unit(9.75, "feet"),
  27846. weight: math.unit(1000, "lb"),
  27847. name: "Hunched",
  27848. image: {
  27849. source: "./media/characters/grim/hunched.svg",
  27850. extra: 304 / 297,
  27851. bottom: 35.4 / 394
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(16, "feet"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27865. {
  27866. front: {
  27867. height: math.unit(2.3, "meters"),
  27868. weight: math.unit(300, "lb"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/sinja/front-sfw.svg",
  27872. extra: 1393 / 1294,
  27873. bottom: 70 / 1463
  27874. }
  27875. },
  27876. frontNsfw: {
  27877. height: math.unit(2.3, "meters"),
  27878. weight: math.unit(300, "lb"),
  27879. name: "Front (NSFW)",
  27880. image: {
  27881. source: "./media/characters/sinja/front-nsfw.svg",
  27882. extra: 1393 / 1294,
  27883. bottom: 70 / 1463
  27884. }
  27885. },
  27886. back: {
  27887. height: math.unit(2.3, "meters"),
  27888. weight: math.unit(300, "lb"),
  27889. name: "Back",
  27890. image: {
  27891. source: "./media/characters/sinja/back.svg",
  27892. extra: 1393 / 1294,
  27893. bottom: 70 / 1463
  27894. }
  27895. },
  27896. head: {
  27897. height: math.unit(1.771, "feet"),
  27898. name: "Head",
  27899. image: {
  27900. source: "./media/characters/sinja/head.svg"
  27901. }
  27902. },
  27903. slit: {
  27904. height: math.unit(0.8, "feet"),
  27905. name: "Slit",
  27906. image: {
  27907. source: "./media/characters/sinja/slit.svg"
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(2.3, "meters")
  27915. },
  27916. {
  27917. name: "Macro",
  27918. height: math.unit(91, "meters"),
  27919. default: true
  27920. },
  27921. {
  27922. name: "Megamacro",
  27923. height: math.unit(91440, "meters")
  27924. },
  27925. {
  27926. name: "Gigamacro",
  27927. height: math.unit(60960000, "meters")
  27928. },
  27929. {
  27930. name: "Teramacro",
  27931. height: math.unit(9144000000, "meters")
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(1.7, "meters"),
  27940. weight: math.unit(130, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/kyu/front.svg",
  27944. extra: 415 / 395,
  27945. bottom: 5 / 420
  27946. }
  27947. },
  27948. head: {
  27949. height: math.unit(1.75, "feet"),
  27950. name: "Head",
  27951. image: {
  27952. source: "./media/characters/kyu/head.svg"
  27953. }
  27954. },
  27955. foot: {
  27956. height: math.unit(0.81, "feet"),
  27957. name: "Foot",
  27958. image: {
  27959. source: "./media/characters/kyu/foot.svg"
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(1.7, "meters")
  27967. },
  27968. {
  27969. name: "Macro",
  27970. height: math.unit(131, "feet"),
  27971. default: true
  27972. },
  27973. {
  27974. name: "Megamacro",
  27975. height: math.unit(91440, "meters")
  27976. },
  27977. {
  27978. name: "Gigamacro",
  27979. height: math.unit(60960000, "meters")
  27980. },
  27981. {
  27982. name: "Teramacro",
  27983. height: math.unit(9144000000, "meters")
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(7 + 1 / 12, "feet"),
  27992. weight: math.unit(250, "lb"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/joey/front.svg",
  27996. extra: 1791 / 1537,
  27997. bottom: 28 / 1816
  27998. }
  27999. },
  28000. },
  28001. [
  28002. {
  28003. name: "Micro",
  28004. height: math.unit(3, "inches")
  28005. },
  28006. {
  28007. name: "Normal",
  28008. height: math.unit(7 + 1 / 12, "feet"),
  28009. default: true
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(165, "cm"),
  28018. weight: math.unit(140, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/sam-evans/front.svg",
  28022. extra: 3417 / 3230,
  28023. bottom: 41.3 / 3417
  28024. }
  28025. },
  28026. frontSixTails: {
  28027. height: math.unit(165, "cm"),
  28028. weight: math.unit(140, "lb"),
  28029. name: "Front-six-tails",
  28030. image: {
  28031. source: "./media/characters/sam-evans/front-six-tails.svg",
  28032. extra: 3417 / 3230,
  28033. bottom: 41.3 / 3417
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(165, "cm"),
  28038. weight: math.unit(140, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/sam-evans/back.svg",
  28042. extra: 3227 / 3032,
  28043. bottom: 6.8 / 3234
  28044. }
  28045. },
  28046. face: {
  28047. height: math.unit(0.68, "feet"),
  28048. name: "Face",
  28049. image: {
  28050. source: "./media/characters/sam-evans/face.svg"
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Normal",
  28057. height: math.unit(165, "cm"),
  28058. default: true
  28059. },
  28060. {
  28061. name: "Macro",
  28062. height: math.unit(100, "meters")
  28063. },
  28064. {
  28065. name: "Macro+",
  28066. height: math.unit(800, "meters")
  28067. },
  28068. {
  28069. name: "Macro++",
  28070. height: math.unit(3, "km")
  28071. },
  28072. {
  28073. name: "Macro+++",
  28074. height: math.unit(30, "km")
  28075. },
  28076. ]
  28077. ))
  28078. characterMakers.push(() => makeCharacter(
  28079. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28080. {
  28081. front: {
  28082. height: math.unit(10, "feet"),
  28083. weight: math.unit(750, "lb"),
  28084. name: "Front",
  28085. image: {
  28086. source: "./media/characters/juliet-a/front.svg",
  28087. extra: 1766 / 1720,
  28088. bottom: 43 / 1809
  28089. }
  28090. },
  28091. back: {
  28092. height: math.unit(10, "feet"),
  28093. weight: math.unit(750, "lb"),
  28094. name: "Back",
  28095. image: {
  28096. source: "./media/characters/juliet-a/back.svg",
  28097. extra: 1781 / 1734,
  28098. bottom: 35 / 1810,
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(10, "feet"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Dragon Form",
  28110. height: math.unit(250, "feet")
  28111. },
  28112. {
  28113. name: "Macro",
  28114. height: math.unit(1000, "feet")
  28115. },
  28116. {
  28117. name: "Megamacro",
  28118. height: math.unit(10000, "feet")
  28119. }
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28124. {
  28125. regular: {
  28126. height: math.unit(7 + 3 / 12, "feet"),
  28127. weight: math.unit(260, "lb"),
  28128. name: "Regular",
  28129. image: {
  28130. source: "./media/characters/wild/regular.svg",
  28131. extra: 97.45 / 92,
  28132. bottom: 6.8 / 104.3
  28133. }
  28134. },
  28135. biggums: {
  28136. height: math.unit(8 + 6 / 12, "feet"),
  28137. weight: math.unit(425, "lb"),
  28138. name: "Biggums",
  28139. image: {
  28140. source: "./media/characters/wild/biggums.svg",
  28141. extra: 97.45 / 92,
  28142. bottom: 7.5 / 132.34
  28143. }
  28144. },
  28145. mawRegular: {
  28146. height: math.unit(1.24, "feet"),
  28147. name: "Maw (Regular)",
  28148. image: {
  28149. source: "./media/characters/wild/maw.svg"
  28150. }
  28151. },
  28152. mawBiggums: {
  28153. height: math.unit(1.47, "feet"),
  28154. name: "Maw (Biggums)",
  28155. image: {
  28156. source: "./media/characters/wild/maw.svg"
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(7 + 3 / 12, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28170. {
  28171. front: {
  28172. height: math.unit(2.5, "meters"),
  28173. weight: math.unit(200, "kg"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/vidar/front.svg",
  28177. extra: 2994 / 2795,
  28178. bottom: 56 / 3061
  28179. }
  28180. },
  28181. back: {
  28182. height: math.unit(2.5, "meters"),
  28183. weight: math.unit(200, "kg"),
  28184. name: "Back",
  28185. image: {
  28186. source: "./media/characters/vidar/back.svg",
  28187. extra: 3131 / 2928,
  28188. bottom: 13.5 / 3141.5
  28189. }
  28190. },
  28191. feral: {
  28192. height: math.unit(2.5, "meters"),
  28193. weight: math.unit(2000, "kg"),
  28194. name: "Feral",
  28195. image: {
  28196. source: "./media/characters/vidar/feral.svg",
  28197. extra: 2790 / 1765,
  28198. bottom: 6 / 2796
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(2.5, "meters"),
  28206. default: true
  28207. },
  28208. {
  28209. name: "Macro",
  28210. height: math.unit(100, "meters")
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(5 + 9 / 12, "feet"),
  28219. weight: math.unit(120, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/ash/front.svg",
  28223. extra: 2189 / 1961,
  28224. bottom: 5.2 / 2194
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(5 + 9 / 12, "feet"),
  28232. default: true
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28238. {
  28239. front: {
  28240. height: math.unit(9, "feet"),
  28241. weight: math.unit(10000, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/gygabite/front.svg",
  28245. bottom: 31.7 / 537.8,
  28246. extra: 505 / 370
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Normal",
  28253. height: math.unit(9, "feet"),
  28254. default: true
  28255. },
  28256. ]
  28257. ))
  28258. characterMakers.push(() => makeCharacter(
  28259. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28260. {
  28261. front: {
  28262. height: math.unit(12, "feet"),
  28263. weight: math.unit(35000, "lb"),
  28264. name: "Front",
  28265. image: {
  28266. source: "./media/characters/p0tat0/front.svg",
  28267. extra: 1065 / 921,
  28268. bottom: 55.7 / 1121.25
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Normal",
  28275. height: math.unit(12, "feet"),
  28276. default: true
  28277. },
  28278. ]
  28279. ))
  28280. characterMakers.push(() => makeCharacter(
  28281. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28282. {
  28283. side: {
  28284. height: math.unit(6.5, "feet"),
  28285. weight: math.unit(800, "lb"),
  28286. name: "Side",
  28287. image: {
  28288. source: "./media/characters/dusk/side.svg",
  28289. extra: 615 / 373,
  28290. bottom: 53 / 664
  28291. }
  28292. },
  28293. sitting: {
  28294. height: math.unit(7, "feet"),
  28295. weight: math.unit(800, "lb"),
  28296. name: "Sitting",
  28297. image: {
  28298. source: "./media/characters/dusk/sitting.svg",
  28299. extra: 753 / 425,
  28300. bottom: 33 / 774
  28301. }
  28302. },
  28303. head: {
  28304. height: math.unit(6.1, "feet"),
  28305. name: "Head",
  28306. image: {
  28307. source: "./media/characters/dusk/head.svg"
  28308. }
  28309. },
  28310. },
  28311. [
  28312. {
  28313. name: "Normal",
  28314. height: math.unit(7, "feet"),
  28315. default: true
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28321. {
  28322. front: {
  28323. height: math.unit(15, "feet"),
  28324. weight: math.unit(7000, "lb"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/jay-direwolf/front.svg",
  28328. extra: 1810 / 1732,
  28329. bottom: 66 / 1892
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(15, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(4 + 9 / 12, "feet"),
  28346. weight: math.unit(130, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/anchovie/front.svg",
  28350. extra: 382 / 350,
  28351. bottom: 25 / 409
  28352. }
  28353. },
  28354. back: {
  28355. height: math.unit(4 + 9 / 12, "feet"),
  28356. weight: math.unit(130, "lb"),
  28357. name: "Back",
  28358. image: {
  28359. source: "./media/characters/anchovie/back.svg",
  28360. extra: 385 / 352,
  28361. bottom: 16.6 / 402
  28362. }
  28363. },
  28364. frontDressed: {
  28365. height: math.unit(4 + 9 / 12, "feet"),
  28366. weight: math.unit(130, "lb"),
  28367. name: "Front (Dressed)",
  28368. image: {
  28369. source: "./media/characters/anchovie/front-dressed.svg",
  28370. extra: 382 / 350,
  28371. bottom: 25 / 409
  28372. }
  28373. },
  28374. backDressed: {
  28375. height: math.unit(4 + 9 / 12, "feet"),
  28376. weight: math.unit(130, "lb"),
  28377. name: "Back (Dressed)",
  28378. image: {
  28379. source: "./media/characters/anchovie/back-dressed.svg",
  28380. extra: 385 / 352,
  28381. bottom: 16.6 / 402
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Micro",
  28388. height: math.unit(6.4, "inches")
  28389. },
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(4 + 9 / 12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(2, "meters"),
  28402. weight: math.unit(180, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/acidrenamon/front.svg",
  28406. extra: 987 / 890,
  28407. bottom: 22.8 / 1009
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(2, "meters"),
  28412. weight: math.unit(180, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/acidrenamon/back.svg",
  28416. extra: 983 / 891,
  28417. bottom: 8.4 / 992
  28418. }
  28419. },
  28420. head: {
  28421. height: math.unit(1.92, "feet"),
  28422. name: "Head",
  28423. image: {
  28424. source: "./media/characters/acidrenamon/head.svg"
  28425. }
  28426. },
  28427. rump: {
  28428. height: math.unit(1.72, "feet"),
  28429. name: "Rump",
  28430. image: {
  28431. source: "./media/characters/acidrenamon/rump.svg"
  28432. }
  28433. },
  28434. tail: {
  28435. height: math.unit(4.2, "feet"),
  28436. name: "Tail",
  28437. image: {
  28438. source: "./media/characters/acidrenamon/tail.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(2, "meters"),
  28446. default: true
  28447. },
  28448. {
  28449. name: "Minimacro",
  28450. height: math.unit(7, "meters")
  28451. },
  28452. {
  28453. name: "Macro",
  28454. height: math.unit(200, "meters")
  28455. },
  28456. {
  28457. name: "Gigamacro",
  28458. height: math.unit(0.2, "earths")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(152, "feet"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/kenzie-lee/front.svg",
  28470. extra: 1869/1774,
  28471. bottom: 128/1997
  28472. }
  28473. },
  28474. side: {
  28475. height: math.unit(86, "feet"),
  28476. name: "Side",
  28477. image: {
  28478. source: "./media/characters/kenzie-lee/side.svg",
  28479. extra: 930/815,
  28480. bottom: 177/1107
  28481. }
  28482. },
  28483. paw: {
  28484. height: math.unit(15, "feet"),
  28485. name: "Paw",
  28486. image: {
  28487. source: "./media/characters/kenzie-lee/paw.svg"
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Micro",
  28494. height: math.unit(1.5, "inches")
  28495. },
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(152, "feet"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Megamacro",
  28503. height: math.unit(7, "miles")
  28504. },
  28505. {
  28506. name: "Gigamacro",
  28507. height: math.unit(8000, "miles")
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28513. {
  28514. side: {
  28515. height: math.unit(6, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Side",
  28518. image: {
  28519. source: "./media/characters/withers/side.svg",
  28520. extra: 1830 / 1728,
  28521. bottom: 96 / 1927
  28522. }
  28523. },
  28524. front: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/withers/front.svg",
  28530. extra: 1514 / 1438,
  28531. bottom: 118 / 1632
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Macro",
  28538. height: math.unit(168, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Megamacro",
  28543. height: math.unit(15, "miles")
  28544. }
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(6 + 7 / 12, "feet"),
  28552. weight: math.unit(250, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/nemoskii/front.svg",
  28556. extra: 2270 / 1734,
  28557. bottom: 86 / 2354
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(6 + 7 / 12, "feet"),
  28562. weight: math.unit(250, "lb"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/nemoskii/back.svg",
  28566. extra: 1845 / 1788,
  28567. bottom: 10.5 / 1852
  28568. }
  28569. },
  28570. head: {
  28571. height: math.unit(1.31, "feet"),
  28572. name: "Head",
  28573. image: {
  28574. source: "./media/characters/nemoskii/head.svg"
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Micro",
  28581. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28582. },
  28583. {
  28584. name: "Normal",
  28585. height: math.unit(6 + 7 / 12, "feet"),
  28586. default: true
  28587. },
  28588. {
  28589. name: "Macro",
  28590. height: math.unit((6 + 7 / 12) * 150, "feet")
  28591. },
  28592. {
  28593. name: "Macro+",
  28594. height: math.unit((6 + 7 / 12) * 500, "feet")
  28595. },
  28596. {
  28597. name: "Megamacro",
  28598. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28599. },
  28600. ]
  28601. ))
  28602. characterMakers.push(() => makeCharacter(
  28603. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28604. {
  28605. front: {
  28606. height: math.unit(1, "mile"),
  28607. weight: math.unit(265261.9, "lb"),
  28608. name: "Front",
  28609. image: {
  28610. source: "./media/characters/shui/front.svg",
  28611. extra: 1633 / 1564,
  28612. bottom: 91.5 / 1726
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(1, "mile"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(12 + 6 / 12, "feet"),
  28629. weight: math.unit(1342, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/arokh-takakura/front.svg",
  28633. extra: 1089 / 1043,
  28634. bottom: 77.4 / 1176.7
  28635. }
  28636. },
  28637. back: {
  28638. height: math.unit(12 + 6 / 12, "feet"),
  28639. weight: math.unit(1342, "lb"),
  28640. name: "Back",
  28641. image: {
  28642. source: "./media/characters/arokh-takakura/back.svg",
  28643. extra: 1046 / 1019,
  28644. bottom: 102 / 1150
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Big",
  28651. height: math.unit(12 + 6 / 12, "feet"),
  28652. default: true
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(5 + 6 / 12, "feet"),
  28661. weight: math.unit(150, "lb"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/theo/front.svg",
  28665. extra: 1184 / 1131,
  28666. bottom: 7.4 / 1191
  28667. }
  28668. },
  28669. },
  28670. [
  28671. {
  28672. name: "Micro",
  28673. height: math.unit(5, "inches")
  28674. },
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(5 + 6 / 12, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28684. {
  28685. front: {
  28686. height: math.unit(5 + 9 / 12, "feet"),
  28687. weight: math.unit(130, "lb"),
  28688. name: "Front",
  28689. image: {
  28690. source: "./media/characters/cecelia-swift/front.svg",
  28691. extra: 502 / 484,
  28692. bottom: 23 / 523
  28693. }
  28694. },
  28695. back: {
  28696. height: math.unit(5 + 9 / 12, "feet"),
  28697. weight: math.unit(130, "lb"),
  28698. name: "Back",
  28699. image: {
  28700. source: "./media/characters/cecelia-swift/back.svg",
  28701. extra: 499 / 485,
  28702. bottom: 12 / 511
  28703. }
  28704. },
  28705. head: {
  28706. height: math.unit(0.90, "feet"),
  28707. name: "Head",
  28708. image: {
  28709. source: "./media/characters/cecelia-swift/head.svg"
  28710. }
  28711. },
  28712. rump: {
  28713. height: math.unit(1.75, "feet"),
  28714. name: "Rump",
  28715. image: {
  28716. source: "./media/characters/cecelia-swift/rump.svg"
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(5 + 9 / 12, "feet"),
  28724. default: true
  28725. },
  28726. {
  28727. name: "Big",
  28728. height: math.unit(50, "feet")
  28729. },
  28730. {
  28731. name: "Macro",
  28732. height: math.unit(100, "feet")
  28733. },
  28734. {
  28735. name: "Macro+",
  28736. height: math.unit(500, "feet")
  28737. },
  28738. {
  28739. name: "Macro++",
  28740. height: math.unit(1000, "feet")
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(6, "feet"),
  28749. weight: math.unit(150, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/kaunan/front.svg",
  28753. extra: 2890 / 2523,
  28754. bottom: 49 / 2939
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(150, "feet"),
  28762. default: true
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(175, "cm"),
  28771. weight: math.unit(60, "kg"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/fei/front.svg",
  28775. extra: 1873/1723,
  28776. bottom: 53/1926
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Mortal",
  28783. height: math.unit(175, "cm")
  28784. },
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(3500, "m"),
  28788. default: true
  28789. },
  28790. {
  28791. name: "Stroll",
  28792. height: math.unit(17.5, "km")
  28793. },
  28794. {
  28795. name: "Showoff",
  28796. height: math.unit(175, "km")
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(7, "feet"),
  28805. weight: math.unit(1000, "kg"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/edrax/front.svg",
  28809. extra: 2838 / 2550,
  28810. bottom: 130 / 2968
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Small",
  28817. height: math.unit(7, "feet")
  28818. },
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(1500, "meters")
  28822. },
  28823. {
  28824. name: "Mega",
  28825. height: math.unit(12000000, "km"),
  28826. default: true
  28827. },
  28828. {
  28829. name: "Megamacro",
  28830. height: math.unit(10600000, "lightyears")
  28831. },
  28832. {
  28833. name: "Hypermacro",
  28834. height: math.unit(256, "yottameters")
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(10, "feet"),
  28843. weight: math.unit(750, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/clove/front.svg",
  28847. extra: 1918/1751,
  28848. bottom: 52/1970
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(10, "feet"),
  28853. weight: math.unit(750, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/clove/back.svg",
  28857. extra: 1912/1747,
  28858. bottom: 50/1962
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(10, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(4, "feet"),
  28875. weight: math.unit(50, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/alex-rabbit/front.svg",
  28879. extra: 507 / 458,
  28880. bottom: 18.5 / 527
  28881. }
  28882. },
  28883. back: {
  28884. height: math.unit(4, "feet"),
  28885. weight: math.unit(50, "lb"),
  28886. name: "Back",
  28887. image: {
  28888. source: "./media/characters/alex-rabbit/back.svg",
  28889. extra: 502 / 460,
  28890. bottom: 18.9 / 521
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(4, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(1 + 3 / 12, "feet"),
  28907. weight: math.unit(80, "lb"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/zander-rose/front.svg",
  28911. extra: 916 / 797,
  28912. bottom: 17 / 933
  28913. }
  28914. },
  28915. back: {
  28916. height: math.unit(1 + 3 / 12, "feet"),
  28917. weight: math.unit(80, "lb"),
  28918. name: "Back",
  28919. image: {
  28920. source: "./media/characters/zander-rose/back.svg",
  28921. extra: 903 / 779,
  28922. bottom: 31 / 934
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Normal",
  28929. height: math.unit(1 + 3 / 12, "feet"),
  28930. default: true
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28936. {
  28937. anthro: {
  28938. height: math.unit(6, "feet"),
  28939. weight: math.unit(150, "lb"),
  28940. name: "Anthro",
  28941. image: {
  28942. source: "./media/characters/razz/anthro.svg",
  28943. extra: 1437 / 1343,
  28944. bottom: 48 / 1485
  28945. }
  28946. },
  28947. feral: {
  28948. height: math.unit(6, "feet"),
  28949. weight: math.unit(150, "lb"),
  28950. name: "Feral",
  28951. image: {
  28952. source: "./media/characters/razz/feral.svg",
  28953. extra: 2569 / 1385,
  28954. bottom: 95 / 2664
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(6, "feet"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(9 + 4 / 12, "feet"),
  28971. weight: math.unit(500, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/morrigan/front.svg",
  28975. extra: 2707 / 2579,
  28976. bottom: 156 / 2863
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(9 + 4 / 12, "feet"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(5, "stories"),
  28993. weight: math.unit(4000, "lb"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/jenene/front.svg",
  28997. extra: 1780 / 1710,
  28998. bottom: 57 / 1837
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(5, "stories"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29012. {
  29013. taurSfw: {
  29014. height: math.unit(10, "meters"),
  29015. weight: math.unit(17500, "kg"),
  29016. name: "Taur",
  29017. image: {
  29018. source: "./media/characters/faey/taur-sfw.svg",
  29019. extra: 1200 / 968,
  29020. bottom: 41 / 1241
  29021. }
  29022. },
  29023. chestmaw: {
  29024. height: math.unit(2.01, "meters"),
  29025. name: "Chestmaw",
  29026. image: {
  29027. source: "./media/characters/faey/chestmaw.svg"
  29028. }
  29029. },
  29030. foot: {
  29031. height: math.unit(2.43, "meters"),
  29032. name: "Foot",
  29033. image: {
  29034. source: "./media/characters/faey/foot.svg"
  29035. }
  29036. },
  29037. jaws: {
  29038. height: math.unit(1.66, "meters"),
  29039. name: "Jaws",
  29040. image: {
  29041. source: "./media/characters/faey/jaws.svg"
  29042. }
  29043. },
  29044. tongues: {
  29045. height: math.unit(2.01, "meters"),
  29046. name: "Tongues",
  29047. image: {
  29048. source: "./media/characters/faey/tongues.svg"
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Small",
  29055. height: math.unit(10, "meters"),
  29056. default: true
  29057. },
  29058. {
  29059. name: "Big",
  29060. height: math.unit(500000, "km")
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(7, "feet"),
  29069. weight: math.unit(275, "lb"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/roku/front.svg",
  29073. extra: 903 / 878,
  29074. bottom: 37 / 940
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(7, "feet"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(500, "feet")
  29087. },
  29088. {
  29089. name: "Megamacro",
  29090. height: math.unit(200, "miles")
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6 + 2 / 12, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/lira/front.svg",
  29103. extra: 1727 / 1605,
  29104. bottom: 26 / 1753
  29105. }
  29106. },
  29107. back: {
  29108. height: math.unit(6 + 2 / 12, "feet"),
  29109. weight: math.unit(150, "lb"),
  29110. name: "Back",
  29111. image: {
  29112. source: "./media/characters/lira/back.svg",
  29113. extra: 1713/1621,
  29114. bottom: 20/1733
  29115. }
  29116. },
  29117. hand: {
  29118. height: math.unit(0.75, "feet"),
  29119. name: "Hand",
  29120. image: {
  29121. source: "./media/characters/lira/hand.svg"
  29122. }
  29123. },
  29124. maw: {
  29125. height: math.unit(0.65, "feet"),
  29126. name: "Maw",
  29127. image: {
  29128. source: "./media/characters/lira/maw.svg"
  29129. }
  29130. },
  29131. pawDigi: {
  29132. height: math.unit(1.6, "feet"),
  29133. name: "Paw Digi",
  29134. image: {
  29135. source: "./media/characters/lira/paw-digi.svg"
  29136. }
  29137. },
  29138. pawPlanti: {
  29139. height: math.unit(1.4, "feet"),
  29140. name: "Paw Planti",
  29141. image: {
  29142. source: "./media/characters/lira/paw-planti.svg"
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(6 + 2 / 12, "feet"),
  29150. default: true
  29151. },
  29152. {
  29153. name: "Macro",
  29154. height: math.unit(100, "feet")
  29155. },
  29156. {
  29157. name: "Macro²",
  29158. height: math.unit(1600, "feet")
  29159. },
  29160. {
  29161. name: "Planetary",
  29162. height: math.unit(20, "earths")
  29163. },
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(6, "feet"),
  29171. weight: math.unit(150, "lb"),
  29172. name: "Front",
  29173. image: {
  29174. source: "./media/characters/hadjet/front.svg",
  29175. extra: 1480 / 1346,
  29176. bottom: 26 / 1506
  29177. }
  29178. },
  29179. frontNsfw: {
  29180. height: math.unit(6, "feet"),
  29181. weight: math.unit(150, "lb"),
  29182. name: "Front (NSFW)",
  29183. image: {
  29184. source: "./media/characters/hadjet/front-nsfw.svg",
  29185. extra: 1440 / 1358,
  29186. bottom: 52 / 1492
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(10, "stories"),
  29194. default: true
  29195. },
  29196. {
  29197. name: "Megamacro",
  29198. height: math.unit(1.5, "miles")
  29199. },
  29200. {
  29201. name: "Megamacro+",
  29202. height: math.unit(5, "miles")
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29208. {
  29209. side: {
  29210. height: math.unit(106, "feet"),
  29211. weight: math.unit(500, "tonnes"),
  29212. name: "Side",
  29213. image: {
  29214. source: "./media/characters/kodran/side.svg",
  29215. extra: 553 / 480,
  29216. bottom: 33 / 586
  29217. }
  29218. },
  29219. front: {
  29220. height: math.unit(132, "feet"),
  29221. weight: math.unit(500, "tonnes"),
  29222. name: "Front",
  29223. image: {
  29224. source: "./media/characters/kodran/front.svg",
  29225. extra: 667 / 643,
  29226. bottom: 42 / 709
  29227. }
  29228. },
  29229. flying: {
  29230. height: math.unit(350, "feet"),
  29231. weight: math.unit(500, "tonnes"),
  29232. name: "Flying",
  29233. image: {
  29234. source: "./media/characters/kodran/flying.svg"
  29235. }
  29236. },
  29237. foot: {
  29238. height: math.unit(33, "feet"),
  29239. name: "Foot",
  29240. image: {
  29241. source: "./media/characters/kodran/foot.svg"
  29242. }
  29243. },
  29244. footFront: {
  29245. height: math.unit(19, "feet"),
  29246. name: "Foot (Front)",
  29247. image: {
  29248. source: "./media/characters/kodran/foot-front.svg",
  29249. extra: 261 / 261,
  29250. bottom: 91 / 352
  29251. }
  29252. },
  29253. headFront: {
  29254. height: math.unit(53, "feet"),
  29255. name: "Head (Front)",
  29256. image: {
  29257. source: "./media/characters/kodran/head-front.svg"
  29258. }
  29259. },
  29260. headSide: {
  29261. height: math.unit(65, "feet"),
  29262. name: "Head (Side)",
  29263. image: {
  29264. source: "./media/characters/kodran/head-side.svg"
  29265. }
  29266. },
  29267. throat: {
  29268. height: math.unit(79, "feet"),
  29269. name: "Throat",
  29270. image: {
  29271. source: "./media/characters/kodran/throat.svg"
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Large",
  29278. height: math.unit(106, "feet"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29285. {
  29286. side: {
  29287. height: math.unit(11, "feet"),
  29288. weight: math.unit(150, "lb"),
  29289. name: "Side",
  29290. image: {
  29291. source: "./media/characters/pyxaron/side.svg",
  29292. extra: 305 / 195,
  29293. bottom: 17 / 322
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(11, "feet"),
  29301. default: true
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(6, "feet"),
  29310. weight: math.unit(150, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/meep/front.svg",
  29314. extra: 88 / 80,
  29315. bottom: 6 / 94
  29316. }
  29317. },
  29318. },
  29319. [
  29320. {
  29321. name: "Fun Sized",
  29322. height: math.unit(2, "inches"),
  29323. default: true
  29324. },
  29325. {
  29326. name: "Friend Sized",
  29327. height: math.unit(8, "inches")
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(15, "feet"),
  29336. weight: math.unit(2500, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/holly-rabbit/front.svg",
  29340. extra: 1433 / 1233,
  29341. bottom: 125 / 1558
  29342. }
  29343. },
  29344. dick: {
  29345. height: math.unit(4.6, "feet"),
  29346. name: "Dick",
  29347. image: {
  29348. source: "./media/characters/holly-rabbit/dick.svg"
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(15, "feet"),
  29356. default: true
  29357. },
  29358. {
  29359. name: "Macro",
  29360. height: math.unit(250, "feet")
  29361. },
  29362. {
  29363. name: "Macro+",
  29364. height: math.unit(2500, "feet")
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(3.02, "meters"),
  29373. weight: math.unit(500, "kg"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/drena/front.svg",
  29377. extra: 282 / 243,
  29378. bottom: 8 / 290
  29379. }
  29380. },
  29381. side: {
  29382. height: math.unit(3.02, "meters"),
  29383. weight: math.unit(500, "kg"),
  29384. name: "Side",
  29385. image: {
  29386. source: "./media/characters/drena/side.svg",
  29387. extra: 280 / 245,
  29388. bottom: 10 / 290
  29389. }
  29390. },
  29391. back: {
  29392. height: math.unit(3.02, "meters"),
  29393. weight: math.unit(500, "kg"),
  29394. name: "Back",
  29395. image: {
  29396. source: "./media/characters/drena/back.svg",
  29397. extra: 278 / 243,
  29398. bottom: 2 / 280
  29399. }
  29400. },
  29401. foot: {
  29402. height: math.unit(0.75, "meters"),
  29403. name: "Foot",
  29404. image: {
  29405. source: "./media/characters/drena/foot.svg"
  29406. }
  29407. },
  29408. maw: {
  29409. height: math.unit(0.82, "meters"),
  29410. name: "Maw",
  29411. image: {
  29412. source: "./media/characters/drena/maw.svg"
  29413. }
  29414. },
  29415. eating: {
  29416. height: math.unit(0.75, "meters"),
  29417. name: "Eating",
  29418. image: {
  29419. source: "./media/characters/drena/eating.svg"
  29420. }
  29421. },
  29422. rump: {
  29423. height: math.unit(0.93, "meters"),
  29424. name: "Rump",
  29425. image: {
  29426. source: "./media/characters/drena/rump.svg"
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(3.02, "meters"),
  29434. default: true
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(6 + 4 / 12, "feet"),
  29443. weight: math.unit(250, "lb"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/remmyzilla/front.svg",
  29447. extra: 4033 / 3588,
  29448. bottom: 123 / 4156
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(6 + 4 / 12, "feet"),
  29453. weight: math.unit(250, "lb"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/remmyzilla/back.svg",
  29457. extra: 2687 / 2555,
  29458. bottom: 48 / 2735
  29459. }
  29460. },
  29461. paw: {
  29462. height: math.unit(1.73, "feet"),
  29463. name: "Paw",
  29464. image: {
  29465. source: "./media/characters/remmyzilla/paw.svg"
  29466. }
  29467. },
  29468. maw: {
  29469. height: math.unit(1.73, "feet"),
  29470. name: "Maw",
  29471. image: {
  29472. source: "./media/characters/remmyzilla/maw.svg"
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Normal",
  29479. height: math.unit(6 + 4 / 12, "feet")
  29480. },
  29481. {
  29482. name: "Minimacro",
  29483. height: math.unit(12 + 8 / 12, "feet")
  29484. },
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(640, "feet"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Megamacro",
  29492. height: math.unit(6400, "feet")
  29493. },
  29494. {
  29495. name: "Gigamacro",
  29496. height: math.unit(64000, "miles")
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(2.5, "meters"),
  29505. weight: math.unit(300, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/lawrence/front.svg",
  29509. extra: 357 / 335,
  29510. bottom: 30 / 387
  29511. }
  29512. },
  29513. back: {
  29514. height: math.unit(2.5, "meters"),
  29515. weight: math.unit(300, "lb"),
  29516. name: "Back",
  29517. image: {
  29518. source: "./media/characters/lawrence/back.svg",
  29519. extra: 357 / 338,
  29520. bottom: 16 / 373
  29521. }
  29522. },
  29523. head: {
  29524. height: math.unit(0.9, "meter"),
  29525. name: "Head",
  29526. image: {
  29527. source: "./media/characters/lawrence/head.svg"
  29528. }
  29529. },
  29530. maw: {
  29531. height: math.unit(0.7, "meter"),
  29532. name: "Maw",
  29533. image: {
  29534. source: "./media/characters/lawrence/maw.svg"
  29535. }
  29536. },
  29537. footBottom: {
  29538. height: math.unit(0.5, "meter"),
  29539. name: "Foot (Bottom)",
  29540. image: {
  29541. source: "./media/characters/lawrence/foot-bottom.svg"
  29542. }
  29543. },
  29544. footTop: {
  29545. height: math.unit(0.5, "meter"),
  29546. name: "Foot (Top)",
  29547. image: {
  29548. source: "./media/characters/lawrence/foot-top.svg"
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(2.5, "meters"),
  29556. default: true
  29557. },
  29558. {
  29559. name: "Macro",
  29560. height: math.unit(95, "meters")
  29561. },
  29562. {
  29563. name: "Megamacro",
  29564. height: math.unit(150, "km")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29570. {
  29571. front: {
  29572. height: math.unit(4.2, "meters"),
  29573. name: "Front",
  29574. image: {
  29575. source: "./media/characters/sydney/front.svg",
  29576. extra: 1323 / 1277,
  29577. bottom: 111 / 1434
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(4.2, "meters"),
  29585. default: true
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29591. {
  29592. back: {
  29593. height: math.unit(201, "feet"),
  29594. name: "Back",
  29595. image: {
  29596. source: "./media/characters/jessica/back.svg",
  29597. extra: 273 / 259,
  29598. bottom: 7 / 280
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(201, "feet"),
  29606. default: true
  29607. },
  29608. {
  29609. name: "Megamacro",
  29610. height: math.unit(8, "miles")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29616. {
  29617. side: {
  29618. height: math.unit(5.6, "m"),
  29619. weight: math.unit(8000, "kg"),
  29620. name: "Side",
  29621. image: {
  29622. source: "./media/characters/victoria/side.svg",
  29623. extra: 1542/1229,
  29624. bottom: 124/1666
  29625. }
  29626. },
  29627. maw: {
  29628. height: math.unit(7.14, "feet"),
  29629. name: "Maw",
  29630. image: {
  29631. source: "./media/characters/victoria/maw.svg"
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(5.6, "m"),
  29639. default: true
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29645. {
  29646. front: {
  29647. height: math.unit(5 + 6 / 12, "feet"),
  29648. name: "Front",
  29649. image: {
  29650. source: "./media/characters/cat/front.svg",
  29651. extra: 1449/1295,
  29652. bottom: 34/1483
  29653. },
  29654. form: "cat",
  29655. default: true
  29656. },
  29657. back: {
  29658. height: math.unit(5 + 6 / 12, "feet"),
  29659. name: "Back",
  29660. image: {
  29661. source: "./media/characters/cat/back.svg",
  29662. extra: 1466/1301,
  29663. bottom: 19/1485
  29664. },
  29665. form: "cat"
  29666. },
  29667. taur: {
  29668. height: math.unit(7, "feet"),
  29669. name: "Taur",
  29670. image: {
  29671. source: "./media/characters/cat/taur.svg",
  29672. extra: 1389/1233,
  29673. bottom: 83/1472
  29674. },
  29675. form: "taur",
  29676. default: true
  29677. },
  29678. lucarioFront: {
  29679. height: math.unit(4, "feet"),
  29680. name: "Lucario (Front)",
  29681. image: {
  29682. source: "./media/characters/cat/lucario-front.svg",
  29683. extra: 1149/1019,
  29684. bottom: 84/1233
  29685. },
  29686. form: "lucario",
  29687. default: true
  29688. },
  29689. lucarioBack: {
  29690. height: math.unit(4, "feet"),
  29691. name: "Lucario (Back)",
  29692. image: {
  29693. source: "./media/characters/cat/lucario-back.svg",
  29694. extra: 1190/1059,
  29695. bottom: 33/1223
  29696. },
  29697. form: "lucario"
  29698. },
  29699. megaLucario: {
  29700. height: math.unit(4, "feet"),
  29701. name: "Mega Lucario",
  29702. image: {
  29703. source: "./media/characters/cat/mega-lucario.svg",
  29704. extra: 1515 / 1319,
  29705. bottom: 63 / 1578
  29706. },
  29707. form: "lucario"
  29708. },
  29709. nickit: {
  29710. height: math.unit(2, "feet"),
  29711. name: "Nickit",
  29712. image: {
  29713. source: "./media/characters/cat/nickit.svg",
  29714. extra: 1980 / 1585,
  29715. bottom: 102 / 2082
  29716. },
  29717. form: "nickit",
  29718. default: true
  29719. },
  29720. lopunnyFront: {
  29721. height: math.unit(5, "feet"),
  29722. name: "Lopunny (Front)",
  29723. image: {
  29724. source: "./media/characters/cat/lopunny-front.svg",
  29725. extra: 1782 / 1469,
  29726. bottom: 38 / 1820
  29727. },
  29728. form: "lopunny",
  29729. default: true
  29730. },
  29731. lopunnyBack: {
  29732. height: math.unit(5, "feet"),
  29733. name: "Lopunny (Back)",
  29734. image: {
  29735. source: "./media/characters/cat/lopunny-back.svg",
  29736. extra: 1660 / 1490,
  29737. bottom: 25 / 1685
  29738. },
  29739. form: "lopunny"
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Really small",
  29745. height: math.unit(1, "nm")
  29746. },
  29747. {
  29748. name: "Micro",
  29749. height: math.unit(5, "inches")
  29750. },
  29751. {
  29752. name: "Normal",
  29753. height: math.unit(5 + 6 / 12, "feet"),
  29754. default: true
  29755. },
  29756. {
  29757. name: "Macro",
  29758. height: math.unit(50, "feet")
  29759. },
  29760. {
  29761. name: "Macro+",
  29762. height: math.unit(150, "feet")
  29763. },
  29764. {
  29765. name: "Megamacro",
  29766. height: math.unit(100, "miles")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(63.4, "meters"),
  29775. weight: math.unit(3.28349e+6, "kilograms"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/kirina-violet/front.svg",
  29779. extra: 2812 / 2725,
  29780. bottom: 0 / 2812
  29781. }
  29782. },
  29783. back: {
  29784. height: math.unit(63.4, "meters"),
  29785. weight: math.unit(3.28349e+6, "kilograms"),
  29786. name: "Back",
  29787. image: {
  29788. source: "./media/characters/kirina-violet/back.svg",
  29789. extra: 2812 / 2725,
  29790. bottom: 0 / 2812
  29791. }
  29792. },
  29793. mouth: {
  29794. height: math.unit(4.35, "meters"),
  29795. name: "Mouth",
  29796. image: {
  29797. source: "./media/characters/kirina-violet/mouth.svg"
  29798. }
  29799. },
  29800. paw: {
  29801. height: math.unit(5.6, "meters"),
  29802. name: "Paw",
  29803. image: {
  29804. source: "./media/characters/kirina-violet/paw.svg"
  29805. }
  29806. },
  29807. tail: {
  29808. height: math.unit(18, "meters"),
  29809. name: "Tail",
  29810. image: {
  29811. source: "./media/characters/kirina-violet/tail.svg"
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Macro",
  29818. height: math.unit(63.4, "meters"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29825. {
  29826. front: {
  29827. height: math.unit(75, "feet"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/cat-gigachu/front.svg",
  29831. extra: 1239/1027,
  29832. bottom: 32/1271
  29833. }
  29834. },
  29835. back: {
  29836. height: math.unit(75, "feet"),
  29837. name: "Back",
  29838. image: {
  29839. source: "./media/characters/cat-gigachu/back.svg",
  29840. extra: 1229/1030,
  29841. bottom: 9/1238
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Dynamax",
  29848. height: math.unit(75, "feet"),
  29849. default: true
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(6, "feet"),
  29858. weight: math.unit(150, "lb"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/sfaiyan/front.svg",
  29862. extra: 999 / 978,
  29863. bottom: 5 / 1004
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Normal",
  29870. height: math.unit(1.82, "meters")
  29871. },
  29872. {
  29873. name: "Giant",
  29874. height: math.unit(2.27, "km"),
  29875. default: true
  29876. },
  29877. ]
  29878. ))
  29879. characterMakers.push(() => makeCharacter(
  29880. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29881. {
  29882. front: {
  29883. height: math.unit(179, "cm"),
  29884. weight: math.unit(100, "kg"),
  29885. name: "Front",
  29886. image: {
  29887. source: "./media/characters/raunehkeli/front.svg",
  29888. extra: 1934 / 1926,
  29889. bottom: 0 / 1934
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Normal",
  29896. height: math.unit(179, "cm")
  29897. },
  29898. {
  29899. name: "Maximum",
  29900. height: math.unit(575, "meters"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29907. {
  29908. front: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(150, "lb"),
  29911. name: "Front",
  29912. image: {
  29913. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29914. extra: 2625 / 2518,
  29915. bottom: 60 / 2685
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Normal",
  29922. height: math.unit(6 + 2 / 12, "feet")
  29923. },
  29924. {
  29925. name: "Macro",
  29926. height: math.unit(1180, "feet"),
  29927. default: true
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29933. {
  29934. front: {
  29935. height: math.unit(5 + 6 / 12, "feet"),
  29936. weight: math.unit(108, "lb"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/lilith-zott/front.svg",
  29940. extra: 2510 / 2238,
  29941. bottom: 100 / 2610
  29942. }
  29943. },
  29944. frontDressed: {
  29945. height: math.unit(5 + 6 / 12, "feet"),
  29946. weight: math.unit(108, "lb"),
  29947. name: "Front (Dressed)",
  29948. image: {
  29949. source: "./media/characters/lilith-zott/front-dressed.svg",
  29950. extra: 2510 / 2238,
  29951. bottom: 100 / 2610
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Normal",
  29958. height: math.unit(5 + 6 / 12, "feet")
  29959. },
  29960. {
  29961. name: "Macro",
  29962. height: math.unit(1030, "feet"),
  29963. default: true
  29964. },
  29965. ]
  29966. ))
  29967. characterMakers.push(() => makeCharacter(
  29968. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29969. {
  29970. front: {
  29971. height: math.unit(6, "feet"),
  29972. weight: math.unit(150, "lb"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29976. extra: 2567 / 2435,
  29977. bottom: 39 / 2606
  29978. }
  29979. },
  29980. frontSuper: {
  29981. height: math.unit(6, "feet"),
  29982. name: "Front (Super)",
  29983. image: {
  29984. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29985. extra: 2567 / 2435,
  29986. bottom: 39 / 2606
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(5 + 10 / 12, "feet")
  29994. },
  29995. {
  29996. name: "Macro",
  29997. height: math.unit(1100, "feet"),
  29998. default: true
  29999. },
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30004. {
  30005. front: {
  30006. height: math.unit(100, "miles"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/sona/front.svg",
  30010. extra: 2433 / 2201,
  30011. bottom: 53 / 2486
  30012. }
  30013. },
  30014. foot: {
  30015. height: math.unit(16.1, "miles"),
  30016. name: "Foot",
  30017. image: {
  30018. source: "./media/characters/sona/foot.svg"
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(100, "miles"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(6, "feet"),
  30035. weight: math.unit(150, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/bailey/front.svg",
  30039. extra: 1778 / 1724,
  30040. bottom: 30 / 1808
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Micro",
  30047. height: math.unit(4, "inches")
  30048. },
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(5 + 5 / 12, "feet"),
  30052. default: true
  30053. },
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(250, "feet")
  30057. },
  30058. {
  30059. name: "Megamacro",
  30060. height: math.unit(100, "miles")
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(5 + 2 / 12, "feet"),
  30069. weight: math.unit(120, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/snaps/front.svg",
  30073. extra: 2370 / 2177,
  30074. bottom: 48 / 2418
  30075. }
  30076. },
  30077. back: {
  30078. height: math.unit(5 + 2 / 12, "feet"),
  30079. weight: math.unit(120, "lb"),
  30080. name: "Back",
  30081. image: {
  30082. source: "./media/characters/snaps/back.svg",
  30083. extra: 2408 / 2258,
  30084. bottom: 15 / 2423
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Micro",
  30091. height: math.unit(9, "inches")
  30092. },
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(5 + 2 / 12, "feet"),
  30096. default: true
  30097. },
  30098. {
  30099. name: "Mini Macro",
  30100. height: math.unit(10, "feet")
  30101. },
  30102. ]
  30103. ))
  30104. characterMakers.push(() => makeCharacter(
  30105. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30106. {
  30107. front: {
  30108. height: math.unit(1.8, "meters"),
  30109. weight: math.unit(85, "kg"),
  30110. name: "Front",
  30111. image: {
  30112. source: "./media/characters/azteck/front.svg",
  30113. extra: 2815 / 2625,
  30114. bottom: 89 / 2904
  30115. }
  30116. },
  30117. back: {
  30118. height: math.unit(1.8, "meters"),
  30119. weight: math.unit(85, "kg"),
  30120. name: "Back",
  30121. image: {
  30122. source: "./media/characters/azteck/back.svg",
  30123. extra: 2856 / 2648,
  30124. bottom: 85 / 2941
  30125. }
  30126. },
  30127. frontDressed: {
  30128. height: math.unit(1.8, "meters"),
  30129. weight: math.unit(85, "kg"),
  30130. name: "Front (Dressed)",
  30131. image: {
  30132. source: "./media/characters/azteck/front-dressed.svg",
  30133. extra: 2147 / 2003,
  30134. bottom: 68 / 2215
  30135. }
  30136. },
  30137. head: {
  30138. height: math.unit(0.47, "meters"),
  30139. weight: math.unit(85, "kg"),
  30140. name: "Head",
  30141. image: {
  30142. source: "./media/characters/azteck/head.svg"
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Bite sized",
  30149. height: math.unit(16, "cm")
  30150. },
  30151. {
  30152. name: "Normal",
  30153. height: math.unit(1.8, "meters"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6, "feet"),
  30163. weight: math.unit(150, "lb"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/pidge/front.svg",
  30167. extra: 1936/1820,
  30168. bottom: 0/1936
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(6, "feet"),
  30173. weight: math.unit(150, "lb"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/pidge/back.svg",
  30177. extra: 1938/1843,
  30178. bottom: 0/1938
  30179. }
  30180. },
  30181. casual: {
  30182. height: math.unit(6, "feet"),
  30183. weight: math.unit(150, "lb"),
  30184. name: "Casual",
  30185. image: {
  30186. source: "./media/characters/pidge/casual.svg",
  30187. extra: 1936/1820,
  30188. bottom: 0/1936
  30189. }
  30190. },
  30191. tech: {
  30192. height: math.unit(6, "feet"),
  30193. weight: math.unit(150, "lb"),
  30194. name: "Tech",
  30195. image: {
  30196. source: "./media/characters/pidge/tech.svg",
  30197. extra: 1802/1682,
  30198. bottom: 0/1802
  30199. }
  30200. },
  30201. head: {
  30202. height: math.unit(1.61, "feet"),
  30203. name: "Head",
  30204. image: {
  30205. source: "./media/characters/pidge/head.svg"
  30206. }
  30207. },
  30208. collar: {
  30209. height: math.unit(0.82, "feet"),
  30210. name: "Collar",
  30211. image: {
  30212. source: "./media/characters/pidge/collar.svg"
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Macro",
  30219. height: math.unit(2, "mile"),
  30220. default: true
  30221. },
  30222. {
  30223. name: "PUPPY",
  30224. height: math.unit(20, "miles")
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(6, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/en/front.svg",
  30237. extra: 1697 / 1563,
  30238. bottom: 103 / 1800
  30239. }
  30240. },
  30241. back: {
  30242. height: math.unit(6, "feet"),
  30243. weight: math.unit(150, "lb"),
  30244. name: "Back",
  30245. image: {
  30246. source: "./media/characters/en/back.svg",
  30247. extra: 1700 / 1570,
  30248. bottom: 51 / 1751
  30249. }
  30250. },
  30251. frontDressed: {
  30252. height: math.unit(6, "feet"),
  30253. weight: math.unit(150, "lb"),
  30254. name: "Front (Dressed)",
  30255. image: {
  30256. source: "./media/characters/en/front-dressed.svg",
  30257. extra: 1697 / 1563,
  30258. bottom: 103 / 1800
  30259. }
  30260. },
  30261. backDressed: {
  30262. height: math.unit(6, "feet"),
  30263. weight: math.unit(150, "lb"),
  30264. name: "Back (Dressed)",
  30265. image: {
  30266. source: "./media/characters/en/back-dressed.svg",
  30267. extra: 1700 / 1570,
  30268. bottom: 51 / 1751
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Macro",
  30275. height: math.unit(210, "feet"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(6, "feet"),
  30285. weight: math.unit(150, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/haze-orris/front.svg",
  30289. extra: 3975 / 3525,
  30290. bottom: 137 / 4112
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Micro",
  30297. height: math.unit(150, "mm"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(6, "feet"),
  30307. weight: math.unit(150, "lb"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/casselene-yaro/front.svg",
  30311. extra: 4721 / 4541,
  30312. bottom: 82 / 4803
  30313. }
  30314. },
  30315. back: {
  30316. height: math.unit(6, "feet"),
  30317. weight: math.unit(150, "lb"),
  30318. name: "Back",
  30319. image: {
  30320. source: "./media/characters/casselene-yaro/back.svg",
  30321. extra: 4569 / 4377,
  30322. bottom: 69 / 4638
  30323. }
  30324. },
  30325. frontDressed: {
  30326. height: math.unit(6, "feet"),
  30327. weight: math.unit(150, "lb"),
  30328. name: "Front-dressed",
  30329. image: {
  30330. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30331. extra: 4721 / 4541,
  30332. bottom: 82 / 4803
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Macro",
  30339. height: math.unit(190, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(10, "feet"),
  30349. weight: math.unit(15015, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/fem!plat/front.svg",
  30353. extra: 2799 / 2604,
  30354. bottom: 149 / 2948
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(10, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(100, "feet")
  30367. },
  30368. {
  30369. name: "Megamacro",
  30370. height: math.unit(1000, "feet")
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(15 + 5 / 12, "feet"),
  30379. weight: math.unit(4600, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/neapolitan-ananassa/front.svg",
  30383. extra: 2903 / 2736,
  30384. bottom: 0 / 2903
  30385. }
  30386. },
  30387. side: {
  30388. height: math.unit(15 + 5 / 12, "feet"),
  30389. weight: math.unit(4600, "lb"),
  30390. name: "Side",
  30391. image: {
  30392. source: "./media/characters/neapolitan-ananassa/side.svg",
  30393. extra: 2925 / 2719,
  30394. bottom: 0 / 2925
  30395. }
  30396. },
  30397. back: {
  30398. height: math.unit(15 + 5 / 12, "feet"),
  30399. weight: math.unit(4600, "lb"),
  30400. name: "Back",
  30401. image: {
  30402. source: "./media/characters/neapolitan-ananassa/back.svg",
  30403. extra: 2903 / 2736,
  30404. bottom: 0 / 2903
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(15 + 5 / 12, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Post-Millenium",
  30416. height: math.unit(35 + 5 / 12, "feet")
  30417. },
  30418. {
  30419. name: "Post-Era",
  30420. height: math.unit(450 + 5 / 12, "feet")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(300, "meters"),
  30429. weight: math.unit(125000, "tonnes"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/pazuzu/front.svg",
  30433. extra: 877 / 794,
  30434. bottom: 47 / 924
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(300, "meters"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30448. {
  30449. side: {
  30450. height: math.unit(10 + 7 / 12, "feet"),
  30451. weight: math.unit(2.5, "tons"),
  30452. name: "Side",
  30453. image: {
  30454. source: "./media/characters/aasha/side.svg",
  30455. extra: 1345 / 1245,
  30456. bottom: 111 / 1456
  30457. }
  30458. },
  30459. back: {
  30460. height: math.unit(10 + 7 / 12, "feet"),
  30461. weight: math.unit(2.5, "tons"),
  30462. name: "Back",
  30463. image: {
  30464. source: "./media/characters/aasha/back.svg",
  30465. extra: 1133 / 1057,
  30466. bottom: 257 / 1390
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Normal",
  30473. height: math.unit(10 + 7 / 12, "feet"),
  30474. default: true
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6 + 3 / 12, "feet"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/nevan/front.svg",
  30486. extra: 704 / 704,
  30487. bottom: 28 / 732
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(6 + 3 / 12, "feet"),
  30492. name: "Back",
  30493. image: {
  30494. source: "./media/characters/nevan/back.svg",
  30495. extra: 714 / 714,
  30496. bottom: 21 / 735
  30497. }
  30498. },
  30499. frontFlaccid: {
  30500. height: math.unit(6 + 3 / 12, "feet"),
  30501. name: "Front (Flaccid)",
  30502. image: {
  30503. source: "./media/characters/nevan/front-flaccid.svg",
  30504. extra: 704 / 704,
  30505. bottom: 28 / 732
  30506. }
  30507. },
  30508. frontErect: {
  30509. height: math.unit(6 + 3 / 12, "feet"),
  30510. name: "Front (Erect)",
  30511. image: {
  30512. source: "./media/characters/nevan/front-erect.svg",
  30513. extra: 704 / 704,
  30514. bottom: 28 / 732
  30515. }
  30516. },
  30517. backFlaccid: {
  30518. height: math.unit(6 + 3 / 12, "feet"),
  30519. name: "Back (Flaccid)",
  30520. image: {
  30521. source: "./media/characters/nevan/back-flaccid.svg",
  30522. extra: 714 / 714,
  30523. bottom: 21 / 735
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(6 + 3 / 12, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(4, "feet"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/arhan/front.svg",
  30543. extra: 3368 / 3133,
  30544. bottom: 0 / 3368
  30545. }
  30546. },
  30547. side: {
  30548. height: math.unit(4, "feet"),
  30549. name: "Side",
  30550. image: {
  30551. source: "./media/characters/arhan/side.svg",
  30552. extra: 3347 / 3105,
  30553. bottom: 0 / 3347
  30554. }
  30555. },
  30556. tongue: {
  30557. height: math.unit(1.42, "feet"),
  30558. name: "Tongue",
  30559. image: {
  30560. source: "./media/characters/arhan/tongue.svg"
  30561. }
  30562. },
  30563. head: {
  30564. height: math.unit(0.85, "feet"),
  30565. name: "Head",
  30566. image: {
  30567. source: "./media/characters/arhan/head.svg"
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(4, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(5 + 7.5 / 12, "feet"),
  30584. weight: math.unit(120, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/digi-duncan/front.svg",
  30588. extra: 330 / 326,
  30589. bottom: 16 / 346
  30590. }
  30591. },
  30592. side: {
  30593. height: math.unit(5 + 7.5 / 12, "feet"),
  30594. weight: math.unit(120, "lb"),
  30595. name: "Side",
  30596. image: {
  30597. source: "./media/characters/digi-duncan/side.svg",
  30598. extra: 341 / 337,
  30599. bottom: 1 / 342
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(5 + 7.5 / 12, "feet"),
  30604. weight: math.unit(120, "lb"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/digi-duncan/back.svg",
  30608. extra: 330 / 326,
  30609. bottom: 12 / 342
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Speck",
  30616. height: math.unit(0.25, "mm")
  30617. },
  30618. {
  30619. name: "Micro",
  30620. height: math.unit(5, "mm")
  30621. },
  30622. {
  30623. name: "Tiny",
  30624. height: math.unit(0.5, "inches"),
  30625. default: true
  30626. },
  30627. {
  30628. name: "Human",
  30629. height: math.unit(5 + 7.5 / 12, "feet")
  30630. },
  30631. {
  30632. name: "Minigiant",
  30633. height: math.unit(8 + 5.25, "feet")
  30634. },
  30635. {
  30636. name: "Giant",
  30637. height: math.unit(2000, "feet")
  30638. },
  30639. {
  30640. name: "Mega",
  30641. height: math.unit(371.1, "miles")
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(2, "meters"),
  30650. weight: math.unit(350, "kg"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30654. extra: 898 / 838,
  30655. bottom: 9 / 907
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Micro",
  30662. height: math.unit(8, "meters")
  30663. },
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(50, "meters"),
  30667. default: true
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(500, "meters")
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30677. {
  30678. front: {
  30679. height: math.unit(6 + 6 / 12, "feet"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/khardesh/front.svg",
  30683. extra: 1788/1596,
  30684. bottom: 66/1854
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(6 + 6 / 12, "feet"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/khardesh/back.svg",
  30692. extra: 1781/1584,
  30693. bottom: 68/1849
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(6 + 6 / 12, "feet"),
  30701. default: true
  30702. },
  30703. {
  30704. name: "Normal+",
  30705. height: math.unit(4, "meters")
  30706. },
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(50, "meters")
  30710. },
  30711. {
  30712. name: "Macro+",
  30713. height: math.unit(100, "meters")
  30714. },
  30715. {
  30716. name: "Megamacro",
  30717. height: math.unit(20, "km")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30723. {
  30724. front: {
  30725. height: math.unit(6, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/kosho/front.svg",
  30730. extra: 1847 / 1847,
  30731. bottom: 86 / 1933
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Second-stage micro",
  30738. height: math.unit(0.5, "inches")
  30739. },
  30740. {
  30741. name: "First-stage micro",
  30742. height: math.unit(6, "inches")
  30743. },
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(6, "feet"),
  30747. default: true
  30748. },
  30749. {
  30750. name: "First-stage macro",
  30751. height: math.unit(72, "feet")
  30752. },
  30753. {
  30754. name: "Second-stage macro",
  30755. height: math.unit(864, "feet")
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30761. {
  30762. normal: {
  30763. height: math.unit(4 + 6 / 12, "feet"),
  30764. name: "Normal",
  30765. image: {
  30766. source: "./media/characters/hydra/normal.svg",
  30767. extra: 2833 / 2634,
  30768. bottom: 68 / 2901
  30769. }
  30770. },
  30771. smol: {
  30772. height: math.unit(0.705, "inches"),
  30773. name: "Smol",
  30774. image: {
  30775. source: "./media/characters/hydra/smol.svg",
  30776. extra: 2715 / 2540,
  30777. bottom: 0 / 2715
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(4 + 6 / 12, "feet"),
  30785. default: true
  30786. }
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(0.6, "cm"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/daz/front.svg",
  30797. extra: 1682 / 1164,
  30798. bottom: 42 / 1724
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(0.6, "cm"),
  30806. default: true
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(6, "feet"),
  30815. weight: math.unit(235, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/theo-pangolin/front.svg",
  30819. extra: 1996 / 1969,
  30820. bottom: 115 / 2111
  30821. }
  30822. },
  30823. back: {
  30824. height: math.unit(6, "feet"),
  30825. weight: math.unit(235, "lb"),
  30826. name: "Back",
  30827. image: {
  30828. source: "./media/characters/theo-pangolin/back.svg",
  30829. extra: 1979 / 1979,
  30830. bottom: 40 / 2019
  30831. }
  30832. },
  30833. feral: {
  30834. height: math.unit(2, "feet"),
  30835. weight: math.unit(30, "lb"),
  30836. name: "Feral",
  30837. image: {
  30838. source: "./media/characters/theo-pangolin/feral.svg",
  30839. extra: 803 / 791,
  30840. bottom: 181 / 984
  30841. }
  30842. },
  30843. footFive: {
  30844. height: math.unit(1.43, "feet"),
  30845. name: "Foot (Five Toes)",
  30846. image: {
  30847. source: "./media/characters/theo-pangolin/foot-five.svg"
  30848. }
  30849. },
  30850. footFour: {
  30851. height: math.unit(1.43, "feet"),
  30852. name: "Foot (Four Toes)",
  30853. image: {
  30854. source: "./media/characters/theo-pangolin/foot-four.svg"
  30855. }
  30856. },
  30857. handFour: {
  30858. height: math.unit(0.81, "feet"),
  30859. name: "Hand (Four Fingers)",
  30860. image: {
  30861. source: "./media/characters/theo-pangolin/hand-four.svg"
  30862. }
  30863. },
  30864. handThree: {
  30865. height: math.unit(0.81, "feet"),
  30866. name: "Hand (Three Fingers)",
  30867. image: {
  30868. source: "./media/characters/theo-pangolin/hand-three.svg"
  30869. }
  30870. },
  30871. headFront: {
  30872. height: math.unit(1.37, "feet"),
  30873. name: "Head (Front)",
  30874. image: {
  30875. source: "./media/characters/theo-pangolin/head-front.svg"
  30876. }
  30877. },
  30878. headSide: {
  30879. height: math.unit(1.43, "feet"),
  30880. name: "Head (Side)",
  30881. image: {
  30882. source: "./media/characters/theo-pangolin/head-side.svg"
  30883. }
  30884. },
  30885. tongue: {
  30886. height: math.unit(2.29, "feet"),
  30887. name: "Tongue",
  30888. image: {
  30889. source: "./media/characters/theo-pangolin/tongue.svg"
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(6, "feet")
  30897. },
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(400, "feet"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(6, "inches"),
  30910. weight: math.unit(0.036, "kg"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/renée/front.svg",
  30914. extra: 900 / 886,
  30915. bottom: 8 / 908
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Nano",
  30922. height: math.unit(1, "nm")
  30923. },
  30924. {
  30925. name: "Micro",
  30926. height: math.unit(1, "mm")
  30927. },
  30928. {
  30929. name: "Normal",
  30930. height: math.unit(6, "inches")
  30931. },
  30932. {
  30933. name: "Macro",
  30934. height: math.unit(2000, "feet"),
  30935. default: true
  30936. },
  30937. {
  30938. name: "Megamacro",
  30939. height: math.unit(2, "km")
  30940. },
  30941. {
  30942. name: "Gigamacro",
  30943. height: math.unit(2000, "km")
  30944. },
  30945. {
  30946. name: "Teramacro",
  30947. height: math.unit(250000, "km")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(4, "meters"),
  30956. weight: math.unit(150, "kg"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/caledvwlch/front.svg",
  30960. extra: 1760 / 1551,
  30961. bottom: 28 / 1788
  30962. }
  30963. },
  30964. side: {
  30965. height: math.unit(4, "meters"),
  30966. weight: math.unit(150, "kg"),
  30967. name: "Side",
  30968. image: {
  30969. source: "./media/characters/caledvwlch/side.svg",
  30970. extra: 1605 / 1536,
  30971. bottom: 31 / 1636
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(4, "meters"),
  30976. weight: math.unit(150, "kg"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/caledvwlch/back.svg",
  30980. extra: 1635 / 1565,
  30981. bottom: 27 / 1662
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "\"Incognito\"",
  30988. height: math.unit(4, "meters")
  30989. },
  30990. {
  30991. name: "Small rampage",
  30992. height: math.unit(600, "meters")
  30993. },
  30994. {
  30995. name: "Mega",
  30996. height: math.unit(30, "km")
  30997. },
  30998. {
  30999. name: "Home-size",
  31000. height: math.unit(50, "km"),
  31001. default: true
  31002. },
  31003. {
  31004. name: "Giga",
  31005. height: math.unit(300, "km")
  31006. },
  31007. {
  31008. name: "Lounging",
  31009. height: math.unit(11000, "km")
  31010. },
  31011. {
  31012. name: "Planet snacking",
  31013. height: math.unit(2000000, "km")
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(215, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/sapphire-svell/front.svg",
  31026. extra: 495 / 455,
  31027. bottom: 20 / 515
  31028. }
  31029. },
  31030. back: {
  31031. height: math.unit(6, "feet"),
  31032. weight: math.unit(216, "lb"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/sapphire-svell/back.svg",
  31036. extra: 497 / 477,
  31037. bottom: 7 / 504
  31038. }
  31039. },
  31040. maw: {
  31041. height: math.unit(1.57, "feet"),
  31042. name: "Maw",
  31043. image: {
  31044. source: "./media/characters/sapphire-svell/maw.svg"
  31045. }
  31046. },
  31047. foot: {
  31048. height: math.unit(1.07, "feet"),
  31049. name: "Foot",
  31050. image: {
  31051. source: "./media/characters/sapphire-svell/foot.svg"
  31052. }
  31053. },
  31054. toering: {
  31055. height: math.unit(1.7, "inch"),
  31056. name: "Toering",
  31057. image: {
  31058. source: "./media/characters/sapphire-svell/toering.svg"
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(300, "feet"),
  31066. default: true
  31067. },
  31068. {
  31069. name: "Augmented",
  31070. height: math.unit(1250, "feet")
  31071. },
  31072. {
  31073. name: "Unleashed",
  31074. height: math.unit(3000, "feet")
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31080. {
  31081. side: {
  31082. height: math.unit(2 + 3 / 12, "feet"),
  31083. weight: math.unit(110, "lb"),
  31084. name: "Side",
  31085. image: {
  31086. source: "./media/characters/glitch-flux/side.svg",
  31087. extra: 997 / 805,
  31088. bottom: 20 / 1017
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(2 + 3 / 12, "feet"),
  31096. default: true
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(4, "meters"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/mid/front.svg",
  31108. extra: 507 / 476,
  31109. bottom: 17 / 524
  31110. }
  31111. },
  31112. back: {
  31113. height: math.unit(4, "meters"),
  31114. name: "Back",
  31115. image: {
  31116. source: "./media/characters/mid/back.svg",
  31117. extra: 519 / 487,
  31118. bottom: 7 / 526
  31119. }
  31120. },
  31121. stuck: {
  31122. height: math.unit(2.2, "meters"),
  31123. name: "Stuck",
  31124. image: {
  31125. source: "./media/characters/mid/stuck.svg",
  31126. extra: 1951 / 1869,
  31127. bottom: 88 / 2039
  31128. }
  31129. }
  31130. },
  31131. [
  31132. {
  31133. name: "Normal",
  31134. height: math.unit(4, "meters"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Big",
  31139. height: math.unit(10, "meters")
  31140. },
  31141. {
  31142. name: "Macro",
  31143. height: math.unit(800, "meters")
  31144. },
  31145. {
  31146. name: "Megamacro",
  31147. height: math.unit(100, "km")
  31148. },
  31149. {
  31150. name: "Overgrown",
  31151. height: math.unit(1, "parsec")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(2.5, "meters"),
  31160. weight: math.unit(225, "kg"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/iris/front.svg",
  31164. extra: 3348 / 3251,
  31165. bottom: 205 / 3553
  31166. }
  31167. },
  31168. maw: {
  31169. height: math.unit(0.56, "meter"),
  31170. name: "Maw",
  31171. image: {
  31172. source: "./media/characters/iris/maw.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Mewter cat",
  31179. height: math.unit(1.2, "meters")
  31180. },
  31181. {
  31182. name: "Minimacro",
  31183. height: math.unit(2.5, "meters"),
  31184. default: true
  31185. },
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(180, "meters")
  31189. },
  31190. {
  31191. name: "Megamacro",
  31192. height: math.unit(2746, "meters")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(135, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/axel/front.svg",
  31205. extra: 908 / 908,
  31206. bottom: 58 / 966
  31207. }
  31208. },
  31209. side: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(135, "lb"),
  31212. name: "Side",
  31213. image: {
  31214. source: "./media/characters/axel/side.svg",
  31215. extra: 958 / 958,
  31216. bottom: 11 / 969
  31217. }
  31218. },
  31219. back: {
  31220. height: math.unit(6, "feet"),
  31221. weight: math.unit(135, "lb"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/axel/back.svg",
  31225. extra: 887 / 887,
  31226. bottom: 34 / 921
  31227. }
  31228. },
  31229. head: {
  31230. height: math.unit(1.07, "feet"),
  31231. name: "Head",
  31232. image: {
  31233. source: "./media/characters/axel/head.svg"
  31234. }
  31235. },
  31236. beak: {
  31237. height: math.unit(1.4, "feet"),
  31238. name: "Beak",
  31239. image: {
  31240. source: "./media/characters/axel/beak.svg"
  31241. }
  31242. },
  31243. beakSide: {
  31244. height: math.unit(1.4, "feet"),
  31245. name: "Beak Side",
  31246. image: {
  31247. source: "./media/characters/axel/beak-side.svg"
  31248. }
  31249. },
  31250. sheath: {
  31251. height: math.unit(0.5, "feet"),
  31252. name: "Sheath",
  31253. image: {
  31254. source: "./media/characters/axel/sheath.svg"
  31255. }
  31256. },
  31257. dick: {
  31258. height: math.unit(0.98, "feet"),
  31259. name: "Dick",
  31260. image: {
  31261. source: "./media/characters/axel/dick.svg"
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(68, "meters"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(3.5, "meters"),
  31278. weight: math.unit(1200, "kg"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/joanna/front.svg",
  31282. extra: 1596 / 1488,
  31283. bottom: 29 / 1625
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(3.5, "meters"),
  31288. weight: math.unit(1200, "kg"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/joanna/back.svg",
  31292. extra: 1594 / 1495,
  31293. bottom: 26 / 1620
  31294. }
  31295. },
  31296. frontShorts: {
  31297. height: math.unit(3.5, "meters"),
  31298. weight: math.unit(1200, "kg"),
  31299. name: "Front (Shorts)",
  31300. image: {
  31301. source: "./media/characters/joanna/front-shorts.svg",
  31302. extra: 1596 / 1488,
  31303. bottom: 29 / 1625
  31304. }
  31305. },
  31306. frontBiker: {
  31307. height: math.unit(3.5, "meters"),
  31308. weight: math.unit(1200, "kg"),
  31309. name: "Front (Biker)",
  31310. image: {
  31311. source: "./media/characters/joanna/front-biker.svg",
  31312. extra: 1596 / 1488,
  31313. bottom: 29 / 1625
  31314. }
  31315. },
  31316. backBiker: {
  31317. height: math.unit(3.5, "meters"),
  31318. weight: math.unit(1200, "kg"),
  31319. name: "Back (Biker)",
  31320. image: {
  31321. source: "./media/characters/joanna/back-biker.svg",
  31322. extra: 1594 / 1495,
  31323. bottom: 88 / 1682
  31324. }
  31325. },
  31326. bikeLeft: {
  31327. height: math.unit(2.4, "meters"),
  31328. weight: math.unit(1600, "kg"),
  31329. name: "Bike (Left)",
  31330. image: {
  31331. source: "./media/characters/joanna/bike-left.svg",
  31332. extra: 720 / 720,
  31333. bottom: 8 / 728
  31334. }
  31335. },
  31336. bikeRight: {
  31337. height: math.unit(2.4, "meters"),
  31338. weight: math.unit(1600, "kg"),
  31339. name: "Bike (Right)",
  31340. image: {
  31341. source: "./media/characters/joanna/bike-right.svg",
  31342. extra: 720 / 720,
  31343. bottom: 8 / 728
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Incognito",
  31350. height: math.unit(3.5, "meters")
  31351. },
  31352. {
  31353. name: "Casual Big",
  31354. height: math.unit(200, "meters")
  31355. },
  31356. {
  31357. name: "Macro",
  31358. height: math.unit(600, "meters")
  31359. },
  31360. {
  31361. name: "Original",
  31362. height: math.unit(20, "km"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Giga",
  31367. height: math.unit(400, "km")
  31368. },
  31369. {
  31370. name: "Lounging",
  31371. height: math.unit(1500, "km")
  31372. },
  31373. {
  31374. name: "Planetary",
  31375. height: math.unit(200000, "km")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(6, "feet"),
  31384. weight: math.unit(150, "lb"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/hugo-sigil/front.svg",
  31388. extra: 522 / 500,
  31389. bottom: 2 / 524
  31390. }
  31391. },
  31392. back: {
  31393. height: math.unit(6, "feet"),
  31394. weight: math.unit(150, "lb"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/hugo-sigil/back.svg",
  31398. extra: 519 / 495,
  31399. bottom: 5 / 524
  31400. }
  31401. },
  31402. maw: {
  31403. height: math.unit(1.4, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/hugo-sigil/maw.svg"
  31408. }
  31409. },
  31410. feet: {
  31411. height: math.unit(1.56, "feet"),
  31412. weight: math.unit(150, "lb"),
  31413. name: "Feet",
  31414. image: {
  31415. source: "./media/characters/hugo-sigil/feet.svg",
  31416. extra: 177 / 177,
  31417. bottom: 12 / 189
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(6, "feet")
  31425. },
  31426. {
  31427. name: "Macro",
  31428. height: math.unit(200, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/peri/front.svg",
  31442. extra: 2354 / 2233,
  31443. bottom: 49 / 2403
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Really Small",
  31450. height: math.unit(1, "nm")
  31451. },
  31452. {
  31453. name: "Micro",
  31454. height: math.unit(4, "inches")
  31455. },
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(7, "inches"),
  31459. default: true
  31460. },
  31461. {
  31462. name: "Macro",
  31463. height: math.unit(400, "feet")
  31464. },
  31465. {
  31466. name: "Megamacro",
  31467. height: math.unit(100, "miles")
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31473. {
  31474. frontSlim: {
  31475. height: math.unit(7, "feet"),
  31476. name: "Front (Slim)",
  31477. image: {
  31478. source: "./media/characters/issilora/front-slim.svg",
  31479. extra: 529 / 449,
  31480. bottom: 53 / 582
  31481. }
  31482. },
  31483. sideSlim: {
  31484. height: math.unit(7, "feet"),
  31485. name: "Side (Slim)",
  31486. image: {
  31487. source: "./media/characters/issilora/side-slim.svg",
  31488. extra: 570 / 480,
  31489. bottom: 30 / 600
  31490. }
  31491. },
  31492. backSlim: {
  31493. height: math.unit(7, "feet"),
  31494. name: "Back (Slim)",
  31495. image: {
  31496. source: "./media/characters/issilora/back-slim.svg",
  31497. extra: 537 / 455,
  31498. bottom: 46 / 583
  31499. }
  31500. },
  31501. frontBuff: {
  31502. height: math.unit(7, "feet"),
  31503. name: "Front (Buff)",
  31504. image: {
  31505. source: "./media/characters/issilora/front-buff.svg",
  31506. extra: 2310 / 2035,
  31507. bottom: 335 / 2645
  31508. }
  31509. },
  31510. head: {
  31511. height: math.unit(1.94, "feet"),
  31512. name: "Head",
  31513. image: {
  31514. source: "./media/characters/issilora/head.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Minimum",
  31521. height: math.unit(7, "feet")
  31522. },
  31523. {
  31524. name: "Comfortable",
  31525. height: math.unit(17, "feet")
  31526. },
  31527. {
  31528. name: "Fun Size",
  31529. height: math.unit(47, "feet")
  31530. },
  31531. {
  31532. name: "Natural Macro",
  31533. height: math.unit(137, "feet"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Maximum Kaiju",
  31538. height: math.unit(397, "feet")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31544. {
  31545. front: {
  31546. height: math.unit(50 + 9/12, "feet"),
  31547. weight: math.unit(32.8, "tons"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/irb'iiritaahn/front.svg",
  31551. extra: 1878/1826,
  31552. bottom: 326/2204
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(50 + 9/12, "feet"),
  31557. weight: math.unit(32.8, "tons"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/irb'iiritaahn/back.svg",
  31561. extra: 2052/2018,
  31562. bottom: 152/2204
  31563. }
  31564. },
  31565. head: {
  31566. height: math.unit(12.86, "feet"),
  31567. name: "Head",
  31568. image: {
  31569. source: "./media/characters/irb'iiritaahn/head.svg"
  31570. }
  31571. },
  31572. maw: {
  31573. height: math.unit(9.66, "feet"),
  31574. name: "Maw",
  31575. image: {
  31576. source: "./media/characters/irb'iiritaahn/maw.svg"
  31577. }
  31578. },
  31579. frontDick: {
  31580. height: math.unit(8.78461, "feet"),
  31581. name: "Front Dick",
  31582. image: {
  31583. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31584. }
  31585. },
  31586. rearDick: {
  31587. height: math.unit(8.78461, "feet"),
  31588. name: "Rear Dick",
  31589. image: {
  31590. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31591. }
  31592. },
  31593. rearDickUnfolded: {
  31594. height: math.unit(8.78, "feet"),
  31595. name: "Rear Dick (Unfolded)",
  31596. image: {
  31597. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31598. }
  31599. },
  31600. wings: {
  31601. height: math.unit(43, "feet"),
  31602. name: "Wings",
  31603. image: {
  31604. source: "./media/characters/irb'iiritaahn/wings.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Macro",
  31611. height: math.unit(50 + 9/12, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(205, "cm"),
  31621. weight: math.unit(102, "kg"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/irbisgreif/front.svg",
  31625. extra: 785/706,
  31626. bottom: 13/798
  31627. }
  31628. },
  31629. back: {
  31630. height: math.unit(205, "cm"),
  31631. weight: math.unit(102, "kg"),
  31632. name: "Back",
  31633. image: {
  31634. source: "./media/characters/irbisgreif/back.svg",
  31635. extra: 713/701,
  31636. bottom: 26/739
  31637. }
  31638. },
  31639. frontDressed: {
  31640. height: math.unit(216, "cm"),
  31641. weight: math.unit(102, "kg"),
  31642. name: "Front-dressed",
  31643. image: {
  31644. source: "./media/characters/irbisgreif/front-dressed.svg",
  31645. extra: 902/776,
  31646. bottom: 14/916
  31647. }
  31648. },
  31649. sideDressed: {
  31650. height: math.unit(195, "cm"),
  31651. weight: math.unit(102, "kg"),
  31652. name: "Side-dressed",
  31653. image: {
  31654. source: "./media/characters/irbisgreif/side-dressed.svg",
  31655. extra: 788/688,
  31656. bottom: 21/809
  31657. }
  31658. },
  31659. backDressed: {
  31660. height: math.unit(216, "cm"),
  31661. weight: math.unit(102, "kg"),
  31662. name: "Back-dressed",
  31663. image: {
  31664. source: "./media/characters/irbisgreif/back-dressed.svg",
  31665. extra: 901/783,
  31666. bottom: 10/911
  31667. }
  31668. },
  31669. dick: {
  31670. height: math.unit(0.49, "feet"),
  31671. name: "Dick",
  31672. image: {
  31673. source: "./media/characters/irbisgreif/dick.svg"
  31674. }
  31675. },
  31676. wingTop: {
  31677. height: math.unit(1.93 , "feet"),
  31678. name: "Wing-top",
  31679. image: {
  31680. source: "./media/characters/irbisgreif/wing-top.svg"
  31681. }
  31682. },
  31683. wingBottom: {
  31684. height: math.unit(1.93 , "feet"),
  31685. name: "Wing-bottom",
  31686. image: {
  31687. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(216, "cm"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(6, "feet"),
  31704. weight: math.unit(150, "lb"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/pride/front.svg",
  31708. extra: 1299/1230,
  31709. bottom: 18/1317
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(7, "feet")
  31717. },
  31718. {
  31719. name: "Mini-macro",
  31720. height: math.unit(11, "feet")
  31721. },
  31722. {
  31723. name: "Macro",
  31724. height: math.unit(15, "meters"),
  31725. default: true
  31726. },
  31727. {
  31728. name: "Macro+",
  31729. height: math.unit(40, "meters")
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31735. {
  31736. front: {
  31737. height: math.unit(4 + 2 / 12, "feet"),
  31738. weight: math.unit(95, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/vaelophis-nyx/front.svg",
  31742. extra: 2532/2330,
  31743. bottom: 0/2532
  31744. }
  31745. },
  31746. back: {
  31747. height: math.unit(4 + 2 / 12, "feet"),
  31748. weight: math.unit(95, "lb"),
  31749. name: "Back",
  31750. image: {
  31751. source: "./media/characters/vaelophis-nyx/back.svg",
  31752. extra: 2484/2361,
  31753. bottom: 0/2484
  31754. }
  31755. },
  31756. feralSide: {
  31757. height: math.unit(2 + 1/12, "feet"),
  31758. weight: math.unit(20, "lb"),
  31759. name: "Feral (Side)",
  31760. image: {
  31761. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31762. extra: 1721/1581,
  31763. bottom: 70/1791
  31764. }
  31765. },
  31766. feralLazing: {
  31767. height: math.unit(1.08, "feet"),
  31768. weight: math.unit(20, "lb"),
  31769. name: "Feral (Lazing)",
  31770. image: {
  31771. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31772. extra: 822/822,
  31773. bottom: 248/1070
  31774. }
  31775. },
  31776. ear: {
  31777. height: math.unit(0.416, "feet"),
  31778. name: "Ear",
  31779. image: {
  31780. source: "./media/characters/vaelophis-nyx/ear.svg"
  31781. }
  31782. },
  31783. eye: {
  31784. height: math.unit(0.0748, "feet"),
  31785. name: "Eye",
  31786. image: {
  31787. source: "./media/characters/vaelophis-nyx/eye.svg"
  31788. }
  31789. },
  31790. mouth: {
  31791. height: math.unit(0.378, "feet"),
  31792. name: "Mouth",
  31793. image: {
  31794. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31795. }
  31796. },
  31797. spade: {
  31798. height: math.unit(0.55, "feet"),
  31799. name: "Spade",
  31800. image: {
  31801. source: "./media/characters/vaelophis-nyx/spade.svg"
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(4 + 2/12, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31815. {
  31816. front: {
  31817. height: math.unit(7, "feet"),
  31818. weight: math.unit(231, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/flux/front.svg",
  31822. extra: 919/871,
  31823. bottom: 0/919
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(7, "feet"),
  31828. weight: math.unit(231, "lb"),
  31829. name: "Back",
  31830. image: {
  31831. source: "./media/characters/flux/back.svg",
  31832. extra: 1040/992,
  31833. bottom: 0/1040
  31834. }
  31835. },
  31836. frontDressed: {
  31837. height: math.unit(7, "feet"),
  31838. weight: math.unit(231, "lb"),
  31839. name: "Front (Dressed)",
  31840. image: {
  31841. source: "./media/characters/flux/front-dressed.svg",
  31842. extra: 919/871,
  31843. bottom: 0/919
  31844. }
  31845. },
  31846. feralSide: {
  31847. height: math.unit(5, "feet"),
  31848. weight: math.unit(150, "lb"),
  31849. name: "Feral (Side)",
  31850. image: {
  31851. source: "./media/characters/flux/feral-side.svg",
  31852. extra: 598/528,
  31853. bottom: 28/626
  31854. }
  31855. },
  31856. head: {
  31857. height: math.unit(1.585, "feet"),
  31858. name: "Head",
  31859. image: {
  31860. source: "./media/characters/flux/head.svg"
  31861. }
  31862. },
  31863. headSide: {
  31864. height: math.unit(1.74, "feet"),
  31865. name: "Head (Side)",
  31866. image: {
  31867. source: "./media/characters/flux/head-side.svg"
  31868. }
  31869. },
  31870. headSideFire: {
  31871. height: math.unit(1.76, "feet"),
  31872. name: "Head (Side, Fire)",
  31873. image: {
  31874. source: "./media/characters/flux/head-side-fire.svg"
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(7, "feet"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(9, "feet"),
  31891. weight: math.unit(1012, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/ulfra-lupae/front.svg",
  31895. extra: 1083/1011,
  31896. bottom: 67/1150
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Micro",
  31903. height: math.unit(6, "inches")
  31904. },
  31905. {
  31906. name: "Socializing",
  31907. height: math.unit(6 + 5/12, "feet")
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(9, "feet"),
  31912. default: true
  31913. },
  31914. {
  31915. name: "Macro",
  31916. height: math.unit(150, "feet")
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. weight: math.unit(120, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/timber/front.svg",
  31929. extra: 2814/2705,
  31930. bottom: 181/2995
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(5 + 2/12, "feet"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(9, "feet"),
  31947. name: "Front",
  31948. image: {
  31949. source: "./media/characters/nicki/front.svg",
  31950. extra: 1240/990,
  31951. bottom: 45/1285
  31952. },
  31953. form: "anthro",
  31954. default: true
  31955. },
  31956. side: {
  31957. height: math.unit(9, "feet"),
  31958. name: "Side",
  31959. image: {
  31960. source: "./media/characters/nicki/side.svg",
  31961. extra: 1047/973,
  31962. bottom: 61/1108
  31963. },
  31964. form: "anthro"
  31965. },
  31966. back: {
  31967. height: math.unit(9, "feet"),
  31968. name: "Back",
  31969. image: {
  31970. source: "./media/characters/nicki/back.svg",
  31971. extra: 1006/965,
  31972. bottom: 39/1045
  31973. },
  31974. form: "anthro"
  31975. },
  31976. taur: {
  31977. height: math.unit(15, "feet"),
  31978. name: "Taur",
  31979. image: {
  31980. source: "./media/characters/nicki/taur.svg",
  31981. extra: 1592/1347,
  31982. bottom: 0/1592
  31983. },
  31984. form: "taur",
  31985. default: true
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(9, "feet"),
  31992. form: "anthro",
  31993. default: true
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(15, "feet"),
  31998. form: "taur",
  31999. default: true
  32000. }
  32001. ],
  32002. {
  32003. "anthro": {
  32004. name: "Anthro",
  32005. default: true
  32006. },
  32007. "taur": {
  32008. name: "Taur"
  32009. }
  32010. }
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(7 + 10/12, "feet"),
  32017. weight: math.unit(3.5, "tons"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/lee/front.svg",
  32021. extra: 1773/1615,
  32022. bottom: 86/1859
  32023. }
  32024. },
  32025. hand: {
  32026. height: math.unit(1.78, "feet"),
  32027. name: "Hand",
  32028. image: {
  32029. source: "./media/characters/lee/hand.svg"
  32030. }
  32031. },
  32032. maw: {
  32033. height: math.unit(1.18, "feet"),
  32034. name: "Maw",
  32035. image: {
  32036. source: "./media/characters/lee/maw.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(7 + 10/12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32050. {
  32051. front: {
  32052. height: math.unit(9, "feet"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/guti/front.svg",
  32056. extra: 4551/4355,
  32057. bottom: 123/4674
  32058. }
  32059. },
  32060. tongue: {
  32061. height: math.unit(1, "feet"),
  32062. name: "Tongue",
  32063. image: {
  32064. source: "./media/characters/guti/tongue.svg"
  32065. }
  32066. },
  32067. paw: {
  32068. height: math.unit(1.18, "feet"),
  32069. name: "Paw",
  32070. image: {
  32071. source: "./media/characters/guti/paw.svg"
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(9, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32085. {
  32086. side: {
  32087. height: math.unit(5, "meters"),
  32088. name: "Side",
  32089. image: {
  32090. source: "./media/characters/vesper/side.svg",
  32091. extra: 1605/1518,
  32092. bottom: 0/1605
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Small",
  32099. height: math.unit(5, "meters")
  32100. },
  32101. {
  32102. name: "Sage",
  32103. height: math.unit(100, "meters"),
  32104. default: true
  32105. },
  32106. {
  32107. name: "Fun Size",
  32108. height: math.unit(600, "meters")
  32109. },
  32110. {
  32111. name: "Goddess",
  32112. height: math.unit(20000, "km")
  32113. },
  32114. {
  32115. name: "Maximum",
  32116. height: math.unit(5, "galaxies")
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(6 + 3/12, "feet"),
  32125. weight: math.unit(190, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/gawain/front.svg",
  32129. extra: 2222/2139,
  32130. bottom: 90/2312
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(6 + 3/12, "feet"),
  32135. weight: math.unit(190, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/gawain/back.svg",
  32139. extra: 2199/2111,
  32140. bottom: 73/2272
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "Normal",
  32147. height: math.unit(6 + 3/12, "feet"),
  32148. default: true
  32149. },
  32150. ]
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32154. {
  32155. side: {
  32156. height: math.unit(3.5, "meters"),
  32157. weight: math.unit(16000, "lb"),
  32158. name: "Side",
  32159. image: {
  32160. source: "./media/characters/dascalti/side.svg",
  32161. extra: 392/273,
  32162. bottom: 47/439
  32163. }
  32164. },
  32165. breath: {
  32166. height: math.unit(7.4, "feet"),
  32167. name: "Breath",
  32168. image: {
  32169. source: "./media/characters/dascalti/breath.svg"
  32170. }
  32171. },
  32172. fed: {
  32173. height: math.unit(3.6, "meters"),
  32174. weight: math.unit(16000, "lb"),
  32175. name: "Fed",
  32176. image: {
  32177. source: "./media/characters/dascalti/fed.svg",
  32178. extra: 1419/820,
  32179. bottom: 95/1514
  32180. }
  32181. },
  32182. },
  32183. [
  32184. {
  32185. name: "Normal",
  32186. height: math.unit(3.5, "meters"),
  32187. default: true
  32188. },
  32189. ]
  32190. ))
  32191. characterMakers.push(() => makeCharacter(
  32192. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32193. {
  32194. front: {
  32195. height: math.unit(3 + 5/12, "feet"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/mauve/front.svg",
  32199. extra: 1126/1033,
  32200. bottom: 65/1191
  32201. }
  32202. },
  32203. side: {
  32204. height: math.unit(3 + 5/12, "feet"),
  32205. name: "Side",
  32206. image: {
  32207. source: "./media/characters/mauve/side.svg",
  32208. extra: 1089/1001,
  32209. bottom: 29/1118
  32210. }
  32211. },
  32212. back: {
  32213. height: math.unit(3 + 5/12, "feet"),
  32214. name: "Back",
  32215. image: {
  32216. source: "./media/characters/mauve/back.svg",
  32217. extra: 1173/1053,
  32218. bottom: 109/1282
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(3 + 5/12, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(6 + 3/12, "feet"),
  32235. weight: math.unit(430, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/carlos/front.svg",
  32239. extra: 1964/1913,
  32240. bottom: 70/2034
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Normal",
  32247. height: math.unit(6 + 3/12, "feet"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32254. {
  32255. back: {
  32256. height: math.unit(5 + 10/12, "feet"),
  32257. weight: math.unit(200, "lb"),
  32258. name: "Back",
  32259. image: {
  32260. source: "./media/characters/jax/back.svg",
  32261. extra: 764/739,
  32262. bottom: 25/789
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(5 + 10/12, "feet"),
  32270. default: true
  32271. },
  32272. ]
  32273. ))
  32274. characterMakers.push(() => makeCharacter(
  32275. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32276. {
  32277. front: {
  32278. height: math.unit(8, "feet"),
  32279. weight: math.unit(250, "lb"),
  32280. name: "Front",
  32281. image: {
  32282. source: "./media/characters/eikthynir/front.svg",
  32283. extra: 1332/1166,
  32284. bottom: 82/1414
  32285. }
  32286. },
  32287. back: {
  32288. height: math.unit(8, "feet"),
  32289. weight: math.unit(250, "lb"),
  32290. name: "Back",
  32291. image: {
  32292. source: "./media/characters/eikthynir/back.svg",
  32293. extra: 1342/1190,
  32294. bottom: 19/1361
  32295. }
  32296. },
  32297. dick: {
  32298. height: math.unit(2.35, "feet"),
  32299. name: "Dick",
  32300. image: {
  32301. source: "./media/characters/eikthynir/dick.svg"
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Normal",
  32308. height: math.unit(8, "feet"),
  32309. default: true
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(99, "meters"),
  32318. weight: math.unit(13000, "tons"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/zlmos/front.svg",
  32322. extra: 2202/1992,
  32323. bottom: 315/2517
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Macro",
  32330. height: math.unit(99, "meters"),
  32331. default: true
  32332. },
  32333. ]
  32334. ))
  32335. characterMakers.push(() => makeCharacter(
  32336. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32337. {
  32338. front: {
  32339. height: math.unit(6 + 5/12, "feet"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/purri/front.svg",
  32343. extra: 1698/1610,
  32344. bottom: 32/1730
  32345. }
  32346. },
  32347. frontAlt: {
  32348. height: math.unit(6 + 5/12, "feet"),
  32349. name: "Front (Alt)",
  32350. image: {
  32351. source: "./media/characters/purri/front-alt.svg",
  32352. extra: 450/420,
  32353. bottom: 26/476
  32354. }
  32355. },
  32356. boots: {
  32357. height: math.unit(5.5, "feet"),
  32358. name: "Boots",
  32359. image: {
  32360. source: "./media/characters/purri/boots.svg",
  32361. extra: 905/853,
  32362. bottom: 18/923
  32363. }
  32364. },
  32365. lying: {
  32366. height: math.unit(2, "feet"),
  32367. name: "Lying",
  32368. image: {
  32369. source: "./media/characters/purri/lying.svg",
  32370. extra: 940/843,
  32371. bottom: 146/1086
  32372. }
  32373. },
  32374. devious: {
  32375. height: math.unit(1.77, "feet"),
  32376. name: "Devious",
  32377. image: {
  32378. source: "./media/characters/purri/devious.svg",
  32379. extra: 1440/1155,
  32380. bottom: 147/1587
  32381. }
  32382. },
  32383. bean: {
  32384. height: math.unit(1.94, "feet"),
  32385. name: "Bean",
  32386. image: {
  32387. source: "./media/characters/purri/bean.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Micro",
  32394. height: math.unit(1, "mm")
  32395. },
  32396. {
  32397. name: "Normal",
  32398. height: math.unit(6 + 5/12, "feet"),
  32399. default: true
  32400. },
  32401. {
  32402. name: "Macro :3c",
  32403. height: math.unit(2, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(6 + 2/12, "feet"),
  32412. weight: math.unit(250, "lb"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/moonlight/front.svg",
  32416. extra: 1044/908,
  32417. bottom: 56/1100
  32418. }
  32419. },
  32420. feral: {
  32421. height: math.unit(3 + 1/12, "feet"),
  32422. weight: math.unit(50, "kg"),
  32423. name: "Feral",
  32424. image: {
  32425. source: "./media/characters/moonlight/feral.svg",
  32426. extra: 3705/2791,
  32427. bottom: 145/3850
  32428. }
  32429. },
  32430. paw: {
  32431. height: math.unit(1, "feet"),
  32432. name: "Paw",
  32433. image: {
  32434. source: "./media/characters/moonlight/paw.svg"
  32435. }
  32436. },
  32437. paws: {
  32438. height: math.unit(0.98, "feet"),
  32439. name: "Paws",
  32440. image: {
  32441. source: "./media/characters/moonlight/paws.svg",
  32442. extra: 939/939,
  32443. bottom: 50/989
  32444. }
  32445. },
  32446. mouth: {
  32447. height: math.unit(0.48, "feet"),
  32448. name: "Mouth",
  32449. image: {
  32450. source: "./media/characters/moonlight/mouth.svg"
  32451. }
  32452. },
  32453. dick: {
  32454. height: math.unit(1.46, "feet"),
  32455. name: "Dick",
  32456. image: {
  32457. source: "./media/characters/moonlight/dick.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(6 + 2/12, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Macro",
  32469. height: math.unit(300, "feet")
  32470. },
  32471. {
  32472. name: "Macro+",
  32473. height: math.unit(1, "mile")
  32474. },
  32475. {
  32476. name: "Mt. Moon",
  32477. height: math.unit(5, "miles")
  32478. },
  32479. {
  32480. name: "Megamacro",
  32481. height: math.unit(15, "miles")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32487. {
  32488. back: {
  32489. height: math.unit(6, "feet"),
  32490. weight: math.unit(150, "lb"),
  32491. name: "Back",
  32492. image: {
  32493. source: "./media/characters/sylen/back.svg",
  32494. extra: 1335/1273,
  32495. bottom: 107/1442
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(5 + 5/12, "feet")
  32503. },
  32504. {
  32505. name: "Megamacro",
  32506. height: math.unit(3, "miles"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(190, "lb"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/huttser/front.svg",
  32520. extra: 1152/1058,
  32521. bottom: 23/1175
  32522. }
  32523. },
  32524. side: {
  32525. height: math.unit(6, "feet"),
  32526. weight: math.unit(190, "lb"),
  32527. name: "Side",
  32528. image: {
  32529. source: "./media/characters/huttser/side.svg",
  32530. extra: 1174/1065,
  32531. bottom: 18/1192
  32532. }
  32533. },
  32534. back: {
  32535. height: math.unit(6, "feet"),
  32536. weight: math.unit(190, "lb"),
  32537. name: "Back",
  32538. image: {
  32539. source: "./media/characters/huttser/back.svg",
  32540. extra: 1158/1056,
  32541. bottom: 12/1170
  32542. }
  32543. },
  32544. },
  32545. [
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32550. {
  32551. side: {
  32552. height: math.unit(12 + 9/12, "feet"),
  32553. weight: math.unit(15000, "lb"),
  32554. name: "Side",
  32555. image: {
  32556. source: "./media/characters/faan/side.svg",
  32557. extra: 2747/2697,
  32558. bottom: 0/2747
  32559. }
  32560. },
  32561. front: {
  32562. height: math.unit(12 + 9/12, "feet"),
  32563. weight: math.unit(15000, "lb"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/faan/front.svg",
  32567. extra: 607/571,
  32568. bottom: 24/631
  32569. }
  32570. },
  32571. head: {
  32572. height: math.unit(2.85, "feet"),
  32573. name: "Head",
  32574. image: {
  32575. source: "./media/characters/faan/head.svg"
  32576. }
  32577. },
  32578. headAlt: {
  32579. height: math.unit(3.13, "feet"),
  32580. name: "Head-alt",
  32581. image: {
  32582. source: "./media/characters/faan/head-alt.svg"
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(12 + 9/12, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(6, "feet"),
  32599. weight: math.unit(300, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/tanio/front.svg",
  32603. extra: 711/673,
  32604. bottom: 25/736
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(6, "feet"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(3, "inches"),
  32621. name: "Front",
  32622. image: {
  32623. source: "./media/characters/noboru/front.svg",
  32624. extra: 1039/932,
  32625. bottom: 18/1057
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Micro",
  32632. height: math.unit(3, "inches"),
  32633. default: true
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32639. {
  32640. front: {
  32641. height: math.unit(1.85, "meters"),
  32642. weight: math.unit(80, "kg"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/daniel-barrett/front.svg",
  32646. extra: 355/337,
  32647. bottom: 9/364
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Pico",
  32654. height: math.unit(0.0433, "mm")
  32655. },
  32656. {
  32657. name: "Nano",
  32658. height: math.unit(1.5, "mm")
  32659. },
  32660. {
  32661. name: "Micro",
  32662. height: math.unit(5.3, "cm"),
  32663. default: true
  32664. },
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(1.85, "meters")
  32668. },
  32669. {
  32670. name: "Macro",
  32671. height: math.unit(64.7, "meters")
  32672. },
  32673. {
  32674. name: "Megamacro",
  32675. height: math.unit(2.26, "km")
  32676. },
  32677. {
  32678. name: "Gigamacro",
  32679. height: math.unit(79, "km")
  32680. },
  32681. {
  32682. name: "Teramacro",
  32683. height: math.unit(2765, "km")
  32684. },
  32685. {
  32686. name: "Petamacro",
  32687. height: math.unit(96678, "km")
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(30, "meters"),
  32696. weight: math.unit(400, "tons"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/zeel/front.svg",
  32700. extra: 2599/2599,
  32701. bottom: 226/2825
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Macro",
  32708. height: math.unit(30, "meters"),
  32709. default: true
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(6 + 7/12, "feet"),
  32718. weight: math.unit(210, "lb"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/tarn/front.svg",
  32722. extra: 3517/3220,
  32723. bottom: 91/3608
  32724. }
  32725. },
  32726. back: {
  32727. height: math.unit(6 + 7/12, "feet"),
  32728. weight: math.unit(210, "lb"),
  32729. name: "Back",
  32730. image: {
  32731. source: "./media/characters/tarn/back.svg",
  32732. extra: 3566/3241,
  32733. bottom: 34/3600
  32734. }
  32735. },
  32736. dick: {
  32737. height: math.unit(1.65, "feet"),
  32738. name: "Dick",
  32739. image: {
  32740. source: "./media/characters/tarn/dick.svg"
  32741. }
  32742. },
  32743. paw: {
  32744. height: math.unit(1.80, "feet"),
  32745. name: "Paw",
  32746. image: {
  32747. source: "./media/characters/tarn/paw.svg"
  32748. }
  32749. },
  32750. tongue: {
  32751. height: math.unit(0.97, "feet"),
  32752. name: "Tongue",
  32753. image: {
  32754. source: "./media/characters/tarn/tongue.svg"
  32755. }
  32756. },
  32757. },
  32758. [
  32759. {
  32760. name: "Micro",
  32761. height: math.unit(4, "inches")
  32762. },
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(6 + 7/12, "feet"),
  32766. default: true
  32767. },
  32768. {
  32769. name: "Macro",
  32770. height: math.unit(300, "feet")
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(5 + 7/12, "feet"),
  32779. weight: math.unit(80, "kg"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32783. extra: 3023/2865,
  32784. bottom: 33/3056
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(5 + 7/12, "feet"),
  32789. weight: math.unit(80, "kg"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32793. extra: 3020/2886,
  32794. bottom: 30/3050
  32795. }
  32796. },
  32797. dick: {
  32798. height: math.unit(0.98, "feet"),
  32799. name: "Dick",
  32800. image: {
  32801. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32802. }
  32803. },
  32804. anatomy: {
  32805. height: math.unit(2.86, "feet"),
  32806. name: "Anatomy",
  32807. image: {
  32808. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Really Small",
  32815. height: math.unit(2, "inches")
  32816. },
  32817. {
  32818. name: "Micro",
  32819. height: math.unit(5.583, "inches")
  32820. },
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(5 + 7/12, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Macro",
  32828. height: math.unit(67, "feet")
  32829. },
  32830. {
  32831. name: "Megamacro",
  32832. height: math.unit(134, "feet")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(9, "feet"),
  32841. weight: math.unit(120, "lb"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/sally/front.svg",
  32845. extra: 1506/1349,
  32846. bottom: 66/1572
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(9, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(8, "feet"),
  32863. weight: math.unit(900, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/owen/front.svg",
  32867. extra: 1761/1657,
  32868. bottom: 74/1835
  32869. }
  32870. },
  32871. side: {
  32872. height: math.unit(8, "feet"),
  32873. weight: math.unit(900, "lb"),
  32874. name: "Side",
  32875. image: {
  32876. source: "./media/characters/owen/side.svg",
  32877. extra: 1797/1734,
  32878. bottom: 30/1827
  32879. }
  32880. },
  32881. back: {
  32882. height: math.unit(8, "feet"),
  32883. weight: math.unit(900, "lb"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/owen/back.svg",
  32887. extra: 1796/1706,
  32888. bottom: 59/1855
  32889. }
  32890. },
  32891. maw: {
  32892. height: math.unit(1.76, "feet"),
  32893. name: "Maw",
  32894. image: {
  32895. source: "./media/characters/owen/maw.svg"
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(8, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32909. {
  32910. front: {
  32911. height: math.unit(4, "feet"),
  32912. weight: math.unit(400, "lb"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/ryth/front.svg",
  32916. extra: 1920/1748,
  32917. bottom: 42/1962
  32918. }
  32919. },
  32920. back: {
  32921. height: math.unit(4, "feet"),
  32922. weight: math.unit(400, "lb"),
  32923. name: "Back",
  32924. image: {
  32925. source: "./media/characters/ryth/back.svg",
  32926. extra: 1897/1690,
  32927. bottom: 89/1986
  32928. }
  32929. },
  32930. mouth: {
  32931. height: math.unit(1.39, "feet"),
  32932. name: "Mouth",
  32933. image: {
  32934. source: "./media/characters/ryth/mouth.svg"
  32935. }
  32936. },
  32937. tailmaw: {
  32938. height: math.unit(1.23, "feet"),
  32939. name: "Tailmaw",
  32940. image: {
  32941. source: "./media/characters/ryth/tailmaw.svg"
  32942. }
  32943. },
  32944. goia: {
  32945. height: math.unit(4, "meters"),
  32946. weight: math.unit(10800, "lb"),
  32947. name: "Goia",
  32948. image: {
  32949. source: "./media/characters/ryth/goia.svg",
  32950. extra: 745/640,
  32951. bottom: 107/852
  32952. }
  32953. },
  32954. goiaFront: {
  32955. height: math.unit(4, "meters"),
  32956. weight: math.unit(10800, "lb"),
  32957. name: "Goia (Front)",
  32958. image: {
  32959. source: "./media/characters/ryth/goia-front.svg",
  32960. extra: 750/586,
  32961. bottom: 114/864
  32962. }
  32963. },
  32964. goiaMaw: {
  32965. height: math.unit(5.55, "feet"),
  32966. name: "Goia Maw",
  32967. image: {
  32968. source: "./media/characters/ryth/goia-maw.svg"
  32969. }
  32970. },
  32971. goiaForepaw: {
  32972. height: math.unit(3.5, "feet"),
  32973. name: "Goia Forepaw",
  32974. image: {
  32975. source: "./media/characters/ryth/goia-forepaw.svg"
  32976. }
  32977. },
  32978. goiaHindpaw: {
  32979. height: math.unit(5.55, "feet"),
  32980. name: "Goia Hindpaw",
  32981. image: {
  32982. source: "./media/characters/ryth/goia-hindpaw.svg"
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(4, "feet"),
  32990. default: true
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(7, "feet"),
  32999. weight: math.unit(180, "lb"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/necrolance/front.svg",
  33003. extra: 1062/947,
  33004. bottom: 41/1103
  33005. }
  33006. },
  33007. back: {
  33008. height: math.unit(7, "feet"),
  33009. weight: math.unit(180, "lb"),
  33010. name: "Back",
  33011. image: {
  33012. source: "./media/characters/necrolance/back.svg",
  33013. extra: 1045/984,
  33014. bottom: 14/1059
  33015. }
  33016. },
  33017. wing: {
  33018. height: math.unit(2.67, "feet"),
  33019. name: "Wing",
  33020. image: {
  33021. source: "./media/characters/necrolance/wing.svg"
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(7, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33035. {
  33036. front: {
  33037. height: math.unit(76, "meters"),
  33038. weight: math.unit(30000, "tons"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/tyler/front.svg",
  33042. extra: 1640/1640,
  33043. bottom: 114/1754
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Macro",
  33050. height: math.unit(76, "meters"),
  33051. default: true
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(4 + 11/12, "feet"),
  33060. weight: math.unit(132, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/icey/front.svg",
  33064. extra: 2750/2550,
  33065. bottom: 33/2783
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(4 + 11/12, "feet"),
  33070. weight: math.unit(132, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/icey/back.svg",
  33074. extra: 2624/2481,
  33075. bottom: 35/2659
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(4 + 11/12, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(100, "feet"),
  33092. weight: math.unit(0, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/smile/front.svg",
  33096. extra: 2983/2912,
  33097. bottom: 162/3145
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(100, "feet"),
  33102. weight: math.unit(0, "lb"),
  33103. name: "Back",
  33104. image: {
  33105. source: "./media/characters/smile/back.svg",
  33106. extra: 3143/3031,
  33107. bottom: 91/3234
  33108. }
  33109. },
  33110. head: {
  33111. height: math.unit(26.3, "feet"),
  33112. weight: math.unit(0, "lb"),
  33113. name: "Head",
  33114. image: {
  33115. source: "./media/characters/smile/head.svg"
  33116. }
  33117. },
  33118. collar: {
  33119. height: math.unit(5.3, "feet"),
  33120. weight: math.unit(0, "lb"),
  33121. name: "Collar",
  33122. image: {
  33123. source: "./media/characters/smile/collar.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Macro",
  33130. height: math.unit(100, "feet"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33137. {
  33138. dragon: {
  33139. height: math.unit(26, "feet"),
  33140. weight: math.unit(36, "tons"),
  33141. name: "Dragon",
  33142. image: {
  33143. source: "./media/characters/arimphae/dragon.svg",
  33144. extra: 1574/983,
  33145. bottom: 357/1931
  33146. }
  33147. },
  33148. drake: {
  33149. height: math.unit(9, "feet"),
  33150. weight: math.unit(1.5, "tons"),
  33151. name: "Drake",
  33152. image: {
  33153. source: "./media/characters/arimphae/drake.svg",
  33154. extra: 1120/925,
  33155. bottom: 435/1555
  33156. }
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Small",
  33162. height: math.unit(26*5/9, "feet")
  33163. },
  33164. {
  33165. name: "Normal",
  33166. height: math.unit(26, "feet"),
  33167. default: true
  33168. },
  33169. ]
  33170. ))
  33171. characterMakers.push(() => makeCharacter(
  33172. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33173. {
  33174. front: {
  33175. height: math.unit(8 + 9/12, "feet"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/xander/front.svg",
  33179. extra: 1237/974,
  33180. bottom: 94/1331
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(8 + 9/12, "feet"),
  33188. default: true
  33189. },
  33190. {
  33191. name: "Gaze Grabber",
  33192. height: math.unit(13 + 8/12, "feet")
  33193. },
  33194. {
  33195. name: "Jaw Dropper",
  33196. height: math.unit(27, "feet")
  33197. },
  33198. {
  33199. name: "Show Stopper",
  33200. height: math.unit(136, "feet")
  33201. },
  33202. {
  33203. name: "Superstar",
  33204. height: math.unit(1.9e6, "miles")
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33210. {
  33211. side: {
  33212. height: math.unit(2100, "feet"),
  33213. name: "Side",
  33214. image: {
  33215. source: "./media/characters/osiris/side.svg",
  33216. extra: 1105/939,
  33217. bottom: 167/1272
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(2100, "feet"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6 + 8/12, "feet"),
  33234. weight: math.unit(225, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/rhys-londe/front.svg",
  33238. extra: 2258/2141,
  33239. bottom: 188/2446
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6 + 8/12, "feet"),
  33244. weight: math.unit(225, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/rhys-londe/back.svg",
  33248. extra: 2237/2137,
  33249. bottom: 63/2300
  33250. }
  33251. },
  33252. frontNsfw: {
  33253. height: math.unit(6 + 8/12, "feet"),
  33254. weight: math.unit(225, "lb"),
  33255. name: "Front (NSFW)",
  33256. image: {
  33257. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33258. extra: 2258/2141,
  33259. bottom: 188/2446
  33260. }
  33261. },
  33262. backNsfw: {
  33263. height: math.unit(6 + 8/12, "feet"),
  33264. weight: math.unit(225, "lb"),
  33265. name: "Back (NSFW)",
  33266. image: {
  33267. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33268. extra: 2237/2137,
  33269. bottom: 63/2300
  33270. }
  33271. },
  33272. dick: {
  33273. height: math.unit(30, "inches"),
  33274. name: "Dick",
  33275. image: {
  33276. source: "./media/characters/rhys-londe/dick.svg"
  33277. }
  33278. },
  33279. maw: {
  33280. height: math.unit(1.6, "feet"),
  33281. name: "Maw",
  33282. image: {
  33283. source: "./media/characters/rhys-londe/maw.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(6 + 8/12, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(3 + 10/12, "feet"),
  33300. weight: math.unit(90, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/taivas-ensim/front.svg",
  33304. extra: 1327/1216,
  33305. bottom: 96/1423
  33306. }
  33307. },
  33308. back: {
  33309. height: math.unit(3 + 10/12, "feet"),
  33310. weight: math.unit(90, "lb"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/taivas-ensim/back.svg",
  33314. extra: 1355/1247,
  33315. bottom: 11/1366
  33316. }
  33317. },
  33318. frontNsfw: {
  33319. height: math.unit(3 + 10/12, "feet"),
  33320. weight: math.unit(90, "lb"),
  33321. name: "Front (NSFW)",
  33322. image: {
  33323. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33324. extra: 1327/1216,
  33325. bottom: 96/1423
  33326. }
  33327. },
  33328. backNsfw: {
  33329. height: math.unit(3 + 10/12, "feet"),
  33330. weight: math.unit(90, "lb"),
  33331. name: "Back (NSFW)",
  33332. image: {
  33333. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33334. extra: 1355/1247,
  33335. bottom: 11/1366
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(3 + 10/12, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(9 + 6/12, "feet"),
  33352. weight: math.unit(940, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/byliss/front.svg",
  33356. extra: 1327/1290,
  33357. bottom: 82/1409
  33358. }
  33359. },
  33360. back: {
  33361. height: math.unit(9 + 6/12, "feet"),
  33362. weight: math.unit(940, "lb"),
  33363. name: "Back",
  33364. image: {
  33365. source: "./media/characters/byliss/back.svg",
  33366. extra: 1376/1349,
  33367. bottom: 9/1385
  33368. }
  33369. },
  33370. frontNsfw: {
  33371. height: math.unit(9 + 6/12, "feet"),
  33372. weight: math.unit(940, "lb"),
  33373. name: "Front (NSFW)",
  33374. image: {
  33375. source: "./media/characters/byliss/front-nsfw.svg",
  33376. extra: 1327/1290,
  33377. bottom: 82/1409
  33378. }
  33379. },
  33380. backNsfw: {
  33381. height: math.unit(9 + 6/12, "feet"),
  33382. weight: math.unit(940, "lb"),
  33383. name: "Back (NSFW)",
  33384. image: {
  33385. source: "./media/characters/byliss/back-nsfw.svg",
  33386. extra: 1376/1349,
  33387. bottom: 9/1385
  33388. }
  33389. },
  33390. },
  33391. [
  33392. {
  33393. name: "Normal",
  33394. height: math.unit(9 + 6/12, "feet"),
  33395. default: true
  33396. },
  33397. ]
  33398. ))
  33399. characterMakers.push(() => makeCharacter(
  33400. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33401. {
  33402. front: {
  33403. height: math.unit(5 + 2/12, "feet"),
  33404. weight: math.unit(200, "lb"),
  33405. name: "Front",
  33406. image: {
  33407. source: "./media/characters/noraly/front.svg",
  33408. extra: 4985/4773,
  33409. bottom: 150/5135
  33410. }
  33411. },
  33412. full: {
  33413. height: math.unit(5 + 2/12, "feet"),
  33414. weight: math.unit(164, "lb"),
  33415. name: "Full",
  33416. image: {
  33417. source: "./media/characters/noraly/full.svg",
  33418. extra: 1114/1059,
  33419. bottom: 35/1149
  33420. }
  33421. },
  33422. fuller: {
  33423. height: math.unit(5 + 2/12, "feet"),
  33424. weight: math.unit(230, "lb"),
  33425. name: "Fuller",
  33426. image: {
  33427. source: "./media/characters/noraly/fuller.svg",
  33428. extra: 1114/1059,
  33429. bottom: 35/1149
  33430. }
  33431. },
  33432. fullest: {
  33433. height: math.unit(5 + 2/12, "feet"),
  33434. weight: math.unit(300, "lb"),
  33435. name: "Fullest",
  33436. image: {
  33437. source: "./media/characters/noraly/fullest.svg",
  33438. extra: 1114/1059,
  33439. bottom: 35/1149
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(5 + 2/12, "feet"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33453. {
  33454. front: {
  33455. height: math.unit(5 + 2/12, "feet"),
  33456. weight: math.unit(210, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/pera/front.svg",
  33460. extra: 1560/1531,
  33461. bottom: 165/1725
  33462. }
  33463. },
  33464. back: {
  33465. height: math.unit(5 + 2/12, "feet"),
  33466. weight: math.unit(210, "lb"),
  33467. name: "Back",
  33468. image: {
  33469. source: "./media/characters/pera/back.svg",
  33470. extra: 1523/1493,
  33471. bottom: 152/1675
  33472. }
  33473. },
  33474. dick: {
  33475. height: math.unit(2.4, "feet"),
  33476. name: "Dick",
  33477. image: {
  33478. source: "./media/characters/pera/dick.svg"
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 2/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(12, "feet"),
  33495. weight: math.unit(3200, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/julian/front.svg",
  33499. extra: 2962/2701,
  33500. bottom: 184/3146
  33501. }
  33502. },
  33503. maw: {
  33504. height: math.unit(5.35, "feet"),
  33505. name: "Maw",
  33506. image: {
  33507. source: "./media/characters/julian/maw.svg"
  33508. }
  33509. },
  33510. paw: {
  33511. height: math.unit(3.07, "feet"),
  33512. name: "Paw",
  33513. image: {
  33514. source: "./media/characters/julian/paw.svg"
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Default",
  33521. height: math.unit(12, "feet"),
  33522. default: true
  33523. },
  33524. {
  33525. name: "Big",
  33526. height: math.unit(50, "feet")
  33527. },
  33528. {
  33529. name: "Really Big",
  33530. height: math.unit(1, "mile")
  33531. },
  33532. {
  33533. name: "Extremely Big",
  33534. height: math.unit(100, "miles")
  33535. },
  33536. {
  33537. name: "Planet Hugger",
  33538. height: math.unit(200, "megameters")
  33539. },
  33540. {
  33541. name: "Unreasonably Big",
  33542. height: math.unit(1e300, "meters")
  33543. },
  33544. ]
  33545. ))
  33546. characterMakers.push(() => makeCharacter(
  33547. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33548. {
  33549. solgooleo: {
  33550. height: math.unit(4, "meters"),
  33551. weight: math.unit(6000*1.5, "kg"),
  33552. volume: math.unit(6000, "liters"),
  33553. name: "Solgooleo",
  33554. image: {
  33555. source: "./media/characters/pi/solgooleo.svg",
  33556. extra: 388/331,
  33557. bottom: 29/417
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(4, "meters"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(8, "feet"),
  33574. weight: math.unit(4, "tons"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/shaun/front.svg",
  33578. extra: 503/495,
  33579. bottom: 20/523
  33580. }
  33581. },
  33582. back: {
  33583. height: math.unit(8, "feet"),
  33584. weight: math.unit(4, "tons"),
  33585. name: "Back",
  33586. image: {
  33587. source: "./media/characters/shaun/back.svg",
  33588. extra: 487/480,
  33589. bottom: 20/507
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Lorg",
  33596. height: math.unit(8, "feet"),
  33597. default: true
  33598. },
  33599. ]
  33600. ))
  33601. characterMakers.push(() => makeCharacter(
  33602. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33603. {
  33604. frontAnthro: {
  33605. height: math.unit(7, "feet"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/sini/front-anthro.svg",
  33609. extra: 726/678,
  33610. bottom: 35/761
  33611. },
  33612. form: "anthro",
  33613. default: true
  33614. },
  33615. backAnthro: {
  33616. height: math.unit(7, "feet"),
  33617. name: "Back",
  33618. image: {
  33619. source: "./media/characters/sini/back-anthro.svg",
  33620. extra: 743/701,
  33621. bottom: 12/755
  33622. },
  33623. form: "anthro",
  33624. },
  33625. frontAnthroNsfw: {
  33626. height: math.unit(7, "feet"),
  33627. name: "Front (NSFW)",
  33628. image: {
  33629. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33630. extra: 726/678,
  33631. bottom: 35/761
  33632. },
  33633. form: "anthro"
  33634. },
  33635. backAnthroNsfw: {
  33636. height: math.unit(7, "feet"),
  33637. name: "Back (NSFW)",
  33638. image: {
  33639. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33640. extra: 743/701,
  33641. bottom: 12/755
  33642. },
  33643. form: "anthro",
  33644. },
  33645. mawAnthro: {
  33646. height: math.unit(2.14, "feet"),
  33647. name: "Maw",
  33648. image: {
  33649. source: "./media/characters/sini/maw-anthro.svg"
  33650. },
  33651. form: "anthro"
  33652. },
  33653. dick: {
  33654. height: math.unit(1.45, "feet"),
  33655. name: "Dick",
  33656. image: {
  33657. source: "./media/characters/sini/dick-anthro.svg"
  33658. },
  33659. form: "anthro"
  33660. },
  33661. feral: {
  33662. height: math.unit(16, "feet"),
  33663. name: "Feral",
  33664. image: {
  33665. source: "./media/characters/sini/feral.svg",
  33666. extra: 814/605,
  33667. bottom: 11/825
  33668. },
  33669. form: "feral",
  33670. default: true
  33671. },
  33672. feralNsfw: {
  33673. height: math.unit(16, "feet"),
  33674. name: "Feral (NSFW)",
  33675. image: {
  33676. source: "./media/characters/sini/feral-nsfw.svg",
  33677. extra: 814/605,
  33678. bottom: 11/825
  33679. },
  33680. form: "feral"
  33681. },
  33682. mawFeral: {
  33683. height: math.unit(5.66, "feet"),
  33684. name: "Maw",
  33685. image: {
  33686. source: "./media/characters/sini/maw-feral.svg"
  33687. },
  33688. form: "feral",
  33689. },
  33690. pawFeral: {
  33691. height: math.unit(5.17, "feet"),
  33692. name: "Paw",
  33693. image: {
  33694. source: "./media/characters/sini/paw-feral.svg"
  33695. },
  33696. form: "feral",
  33697. },
  33698. rumpFeral: {
  33699. height: math.unit(13.11, "feet"),
  33700. name: "Rump",
  33701. image: {
  33702. source: "./media/characters/sini/rump-feral.svg"
  33703. },
  33704. form: "feral",
  33705. },
  33706. dickFeral: {
  33707. height: math.unit(1, "feet"),
  33708. name: "Dick",
  33709. image: {
  33710. source: "./media/characters/sini/dick-feral.svg"
  33711. },
  33712. form: "feral",
  33713. },
  33714. eyeFeral: {
  33715. height: math.unit(1.23, "feet"),
  33716. name: "Eye",
  33717. image: {
  33718. source: "./media/characters/sini/eye-feral.svg"
  33719. },
  33720. form: "feral",
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(7, "feet"),
  33727. default: true,
  33728. form: "anthro"
  33729. },
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(16, "feet"),
  33733. default: true,
  33734. form: "feral"
  33735. },
  33736. ],
  33737. {
  33738. "anthro": {
  33739. name: "Anthro",
  33740. default: true
  33741. },
  33742. "feral": {
  33743. name: "Feral",
  33744. }
  33745. }
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33749. {
  33750. side: {
  33751. height: math.unit(13, "meters"),
  33752. weight: math.unit(9072, "kg"),
  33753. name: "Side",
  33754. image: {
  33755. source: "./media/characters/raylldo/side.svg",
  33756. extra: 403/344,
  33757. bottom: 42/445
  33758. }
  33759. },
  33760. leaping: {
  33761. height: math.unit(12.3, "meters"),
  33762. weight: math.unit(9072, "kg"),
  33763. name: "Leaping",
  33764. image: {
  33765. source: "./media/characters/raylldo/leaping.svg",
  33766. extra: 470/249,
  33767. bottom: 13/483
  33768. }
  33769. },
  33770. flying: {
  33771. height: math.unit(18, "meters"),
  33772. weight: math.unit(9072, "kg"),
  33773. name: "Flying",
  33774. image: {
  33775. source: "./media/characters/raylldo/flying.svg"
  33776. }
  33777. },
  33778. head: {
  33779. height: math.unit(5.85, "meters"),
  33780. name: "Head",
  33781. image: {
  33782. source: "./media/characters/raylldo/head.svg"
  33783. }
  33784. },
  33785. maw: {
  33786. height: math.unit(5.32, "meters"),
  33787. name: "Maw",
  33788. image: {
  33789. source: "./media/characters/raylldo/maw.svg"
  33790. }
  33791. },
  33792. eye: {
  33793. height: math.unit(0.54, "meters"),
  33794. name: "Eye",
  33795. image: {
  33796. source: "./media/characters/raylldo/eye.svg"
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(13, "meters"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33810. {
  33811. anthroFront: {
  33812. height: math.unit(9, "feet"),
  33813. weight: math.unit(600, "lb"),
  33814. name: "Anthro (Front)",
  33815. image: {
  33816. source: "./media/characters/glint/anthro-front.svg",
  33817. extra: 1097/1018,
  33818. bottom: 28/1125
  33819. }
  33820. },
  33821. anthroBack: {
  33822. height: math.unit(9, "feet"),
  33823. weight: math.unit(600, "lb"),
  33824. name: "Anthro (Back)",
  33825. image: {
  33826. source: "./media/characters/glint/anthro-back.svg",
  33827. extra: 1154/997,
  33828. bottom: 36/1190
  33829. }
  33830. },
  33831. feral: {
  33832. height: math.unit(11, "feet"),
  33833. weight: math.unit(50000, "lb"),
  33834. name: "Feral",
  33835. image: {
  33836. source: "./media/characters/glint/feral.svg",
  33837. extra: 3035/1585,
  33838. bottom: 1169/4204
  33839. }
  33840. },
  33841. dickAnthro: {
  33842. height: math.unit(0.7, "meters"),
  33843. name: "Dick (Anthro)",
  33844. image: {
  33845. source: "./media/characters/glint/dick-anthro.svg"
  33846. }
  33847. },
  33848. dickFeral: {
  33849. height: math.unit(2.65, "meters"),
  33850. name: "Dick (Feral)",
  33851. image: {
  33852. source: "./media/characters/glint/dick-feral.svg"
  33853. }
  33854. },
  33855. slitHidden: {
  33856. height: math.unit(5.85, "meters"),
  33857. name: "Slit (Hidden)",
  33858. image: {
  33859. source: "./media/characters/glint/slit-hidden.svg"
  33860. }
  33861. },
  33862. slitErect: {
  33863. height: math.unit(5.85, "meters"),
  33864. name: "Slit (Erect)",
  33865. image: {
  33866. source: "./media/characters/glint/slit-erect.svg"
  33867. }
  33868. },
  33869. mawAnthro: {
  33870. height: math.unit(0.63, "meters"),
  33871. name: "Maw (Anthro)",
  33872. image: {
  33873. source: "./media/characters/glint/maw.svg"
  33874. }
  33875. },
  33876. mawFeral: {
  33877. height: math.unit(2.89, "meters"),
  33878. name: "Maw (Feral)",
  33879. image: {
  33880. source: "./media/characters/glint/maw.svg"
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(9, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33894. {
  33895. side: {
  33896. height: math.unit(15, "feet"),
  33897. weight: math.unit(5000, "kg"),
  33898. name: "Side",
  33899. image: {
  33900. source: "./media/characters/kairne/side.svg",
  33901. extra: 979/811,
  33902. bottom: 13/992
  33903. }
  33904. },
  33905. front: {
  33906. height: math.unit(15, "feet"),
  33907. weight: math.unit(5000, "kg"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/kairne/front.svg",
  33911. extra: 908/814,
  33912. bottom: 26/934
  33913. }
  33914. },
  33915. sideNsfw: {
  33916. height: math.unit(15, "feet"),
  33917. weight: math.unit(5000, "kg"),
  33918. name: "Side (NSFW)",
  33919. image: {
  33920. source: "./media/characters/kairne/side-nsfw.svg",
  33921. extra: 979/811,
  33922. bottom: 13/992
  33923. }
  33924. },
  33925. frontNsfw: {
  33926. height: math.unit(15, "feet"),
  33927. weight: math.unit(5000, "kg"),
  33928. name: "Front (NSFW)",
  33929. image: {
  33930. source: "./media/characters/kairne/front-nsfw.svg",
  33931. extra: 908/814,
  33932. bottom: 26/934
  33933. }
  33934. },
  33935. dickCaged: {
  33936. height: math.unit(0.65, "meters"),
  33937. name: "Dick-caged",
  33938. image: {
  33939. source: "./media/characters/kairne/dick-caged.svg"
  33940. }
  33941. },
  33942. dick: {
  33943. height: math.unit(0.79, "meters"),
  33944. name: "Dick",
  33945. image: {
  33946. source: "./media/characters/kairne/dick.svg"
  33947. }
  33948. },
  33949. genitals: {
  33950. height: math.unit(1.29, "meters"),
  33951. name: "Genitals",
  33952. image: {
  33953. source: "./media/characters/kairne/genitals.svg"
  33954. }
  33955. },
  33956. maw: {
  33957. height: math.unit(1.73, "meters"),
  33958. name: "Maw",
  33959. image: {
  33960. source: "./media/characters/kairne/maw.svg"
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(15, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(5 + 8/12, "feet"),
  33977. weight: math.unit(139, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/biscuit-jackal/front.svg",
  33981. extra: 2106/1961,
  33982. bottom: 58/2164
  33983. }
  33984. },
  33985. back: {
  33986. height: math.unit(5 + 8/12, "feet"),
  33987. weight: math.unit(139, "lb"),
  33988. name: "Back",
  33989. image: {
  33990. source: "./media/characters/biscuit-jackal/back.svg",
  33991. extra: 2132/1976,
  33992. bottom: 57/2189
  33993. }
  33994. },
  33995. werejackal: {
  33996. height: math.unit(6 + 3/12, "feet"),
  33997. weight: math.unit(188, "lb"),
  33998. name: "Werejackal",
  33999. image: {
  34000. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34001. extra: 2373/2178,
  34002. bottom: 53/2426
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(5 + 8/12, "feet"),
  34010. default: true
  34011. },
  34012. ]
  34013. ))
  34014. characterMakers.push(() => makeCharacter(
  34015. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34016. {
  34017. front: {
  34018. height: math.unit(140, "cm"),
  34019. weight: math.unit(45, "kg"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/tayra-white/front.svg",
  34023. extra: 2229/2192,
  34024. bottom: 75/2304
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(140, "cm"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(4 + 5/12, "feet"),
  34041. name: "Front",
  34042. image: {
  34043. source: "./media/characters/scoop/front.svg",
  34044. extra: 1257/1136,
  34045. bottom: 69/1326
  34046. }
  34047. },
  34048. back: {
  34049. height: math.unit(4 + 5/12, "feet"),
  34050. name: "Back",
  34051. image: {
  34052. source: "./media/characters/scoop/back.svg",
  34053. extra: 1321/1152,
  34054. bottom: 32/1353
  34055. }
  34056. },
  34057. maw: {
  34058. height: math.unit(0.68, "feet"),
  34059. name: "Maw",
  34060. image: {
  34061. source: "./media/characters/scoop/maw.svg"
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Really Small",
  34068. height: math.unit(1, "mm")
  34069. },
  34070. {
  34071. name: "Micro",
  34072. height: math.unit(1, "inch")
  34073. },
  34074. {
  34075. name: "Normal",
  34076. height: math.unit(4 + 5/12, "feet"),
  34077. default: true
  34078. },
  34079. {
  34080. name: "Macro",
  34081. height: math.unit(200, "feet")
  34082. },
  34083. {
  34084. name: "Megamacro",
  34085. height: math.unit(3240, "feet")
  34086. },
  34087. {
  34088. name: "Teramacro",
  34089. height: math.unit(2500, "miles")
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(15 + 7/12, "feet"),
  34098. weight: math.unit(1150, "tons"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/saphinara/front.svg",
  34102. extra: 1837/1643,
  34103. bottom: 84/1921
  34104. },
  34105. form: "normal",
  34106. default: true
  34107. },
  34108. side: {
  34109. height: math.unit(15 + 7/12, "feet"),
  34110. weight: math.unit(1150, "tons"),
  34111. name: "Side",
  34112. image: {
  34113. source: "./media/characters/saphinara/side.svg",
  34114. extra: 605/547,
  34115. bottom: 6/611
  34116. },
  34117. form: "normal"
  34118. },
  34119. back: {
  34120. height: math.unit(15 + 7/12, "feet"),
  34121. weight: math.unit(1150, "tons"),
  34122. name: "Back",
  34123. image: {
  34124. source: "./media/characters/saphinara/back.svg",
  34125. extra: 591/531,
  34126. bottom: 13/604
  34127. },
  34128. form: "normal"
  34129. },
  34130. frontTail: {
  34131. height: math.unit(15 + 7/12, "feet"),
  34132. weight: math.unit(1150, "tons"),
  34133. name: "Front (Full Tail)",
  34134. image: {
  34135. source: "./media/characters/saphinara/front-tail.svg",
  34136. extra: 2256/1630,
  34137. bottom: 261/2517
  34138. },
  34139. form: "normal"
  34140. },
  34141. insides: {
  34142. height: math.unit(11.92, "feet"),
  34143. name: "Insides",
  34144. image: {
  34145. source: "./media/characters/saphinara/insides.svg"
  34146. },
  34147. form: "normal"
  34148. },
  34149. head: {
  34150. height: math.unit(4.17, "feet"),
  34151. name: "Head",
  34152. image: {
  34153. source: "./media/characters/saphinara/head.svg"
  34154. },
  34155. form: "normal"
  34156. },
  34157. tongue: {
  34158. height: math.unit(4.60, "feet"),
  34159. name: "Tongue",
  34160. image: {
  34161. source: "./media/characters/saphinara/tongue.svg"
  34162. },
  34163. form: "normal"
  34164. },
  34165. headEnraged: {
  34166. height: math.unit(5.55, "feet"),
  34167. name: "Head (Enraged)",
  34168. image: {
  34169. source: "./media/characters/saphinara/head-enraged.svg"
  34170. },
  34171. form: "normal"
  34172. },
  34173. wings: {
  34174. height: math.unit(11.95, "feet"),
  34175. name: "Wings",
  34176. image: {
  34177. source: "./media/characters/saphinara/wings.svg"
  34178. },
  34179. form: "normal"
  34180. },
  34181. feathers: {
  34182. height: math.unit(8.92, "feet"),
  34183. name: "Feathers",
  34184. image: {
  34185. source: "./media/characters/saphinara/feathers.svg"
  34186. },
  34187. form: "normal"
  34188. },
  34189. shackles: {
  34190. height: math.unit(2, "feet"),
  34191. name: "Shackles",
  34192. image: {
  34193. source: "./media/characters/saphinara/shackles.svg"
  34194. },
  34195. form: "normal"
  34196. },
  34197. eyes: {
  34198. height: math.unit(1.331, "feet"),
  34199. name: "Eyes",
  34200. image: {
  34201. source: "./media/characters/saphinara/eyes.svg"
  34202. },
  34203. form: "normal"
  34204. },
  34205. eyesEnraged: {
  34206. height: math.unit(1.331, "feet"),
  34207. name: "Eyes (Enraged)",
  34208. image: {
  34209. source: "./media/characters/saphinara/eyes-enraged.svg"
  34210. },
  34211. form: "normal"
  34212. },
  34213. trueFormSide: {
  34214. height: math.unit(200, "feet"),
  34215. weight: math.unit(1e7, "tons"),
  34216. name: "Side",
  34217. image: {
  34218. source: "./media/characters/saphinara/true-form-side.svg",
  34219. extra: 1399/770,
  34220. bottom: 97/1496
  34221. },
  34222. form: "true-form",
  34223. default: true
  34224. },
  34225. trueFormMaw: {
  34226. height: math.unit(71.5, "feet"),
  34227. name: "Maw",
  34228. image: {
  34229. source: "./media/characters/saphinara/true-form-maw.svg",
  34230. extra: 2302/1453,
  34231. bottom: 0/2302
  34232. },
  34233. form: "true-form"
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(15 + 7/12, "feet"),
  34240. default: true,
  34241. form: "normal"
  34242. },
  34243. {
  34244. name: "Angry",
  34245. height: math.unit(30 + 6/12, "feet"),
  34246. form: "normal"
  34247. },
  34248. {
  34249. name: "Enraged",
  34250. height: math.unit(102 + 1/12, "feet"),
  34251. form: "normal"
  34252. },
  34253. {
  34254. name: "True",
  34255. height: math.unit(200, "feet"),
  34256. default: true,
  34257. form: "true-form"
  34258. }
  34259. ],
  34260. {
  34261. "normal": {
  34262. name: "Normal",
  34263. default: true
  34264. },
  34265. "true-form": {
  34266. name: "True Form"
  34267. }
  34268. }
  34269. ))
  34270. characterMakers.push(() => makeCharacter(
  34271. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34272. {
  34273. front: {
  34274. height: math.unit(6 + 8/12, "feet"),
  34275. weight: math.unit(300, "lb"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/jrain/front.svg",
  34279. extra: 3039/2865,
  34280. bottom: 399/3438
  34281. }
  34282. },
  34283. back: {
  34284. height: math.unit(6 + 8/12, "feet"),
  34285. weight: math.unit(300, "lb"),
  34286. name: "Back",
  34287. image: {
  34288. source: "./media/characters/jrain/back.svg",
  34289. extra: 3089/2938,
  34290. bottom: 172/3261
  34291. }
  34292. },
  34293. head: {
  34294. height: math.unit(2.14, "feet"),
  34295. name: "Head",
  34296. image: {
  34297. source: "./media/characters/jrain/head.svg"
  34298. }
  34299. },
  34300. maw: {
  34301. height: math.unit(1.77, "feet"),
  34302. name: "Maw",
  34303. image: {
  34304. source: "./media/characters/jrain/maw.svg"
  34305. }
  34306. },
  34307. leftHand: {
  34308. height: math.unit(1.1, "feet"),
  34309. name: "Left Hand",
  34310. image: {
  34311. source: "./media/characters/jrain/left-hand.svg"
  34312. }
  34313. },
  34314. rightHand: {
  34315. height: math.unit(1.1, "feet"),
  34316. name: "Right Hand",
  34317. image: {
  34318. source: "./media/characters/jrain/right-hand.svg"
  34319. }
  34320. },
  34321. eye: {
  34322. height: math.unit(0.35, "feet"),
  34323. name: "Eye",
  34324. image: {
  34325. source: "./media/characters/jrain/eye.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(6 + 8/12, "feet"),
  34333. default: true
  34334. },
  34335. {
  34336. name: "Casually Large",
  34337. height: math.unit(25, "feet")
  34338. },
  34339. {
  34340. name: "Giant",
  34341. height: math.unit(100, "feet")
  34342. },
  34343. {
  34344. name: "Kaiju",
  34345. height: math.unit(300, "feet")
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34351. {
  34352. dragon: {
  34353. height: math.unit(5, "meters"),
  34354. name: "Dragon",
  34355. image: {
  34356. source: "./media/characters/sabrina/dragon.svg",
  34357. extra: 3670 / 2365,
  34358. bottom: 333 / 4003
  34359. }
  34360. },
  34361. gryphon: {
  34362. height: math.unit(3, "meters"),
  34363. name: "Gryphon",
  34364. image: {
  34365. source: "./media/characters/sabrina/gryphon.svg",
  34366. extra: 1576 / 945,
  34367. bottom: 71 / 1647
  34368. }
  34369. },
  34370. snake: {
  34371. height: math.unit(12, "meters"),
  34372. name: "Snake",
  34373. image: {
  34374. source: "./media/characters/sabrina/snake.svg",
  34375. extra: 1758 / 1320,
  34376. bottom: 186 / 1944
  34377. }
  34378. },
  34379. collar: {
  34380. height: math.unit(1.86, "meters"),
  34381. name: "Collar",
  34382. image: {
  34383. source: "./media/characters/sabrina/collar.svg"
  34384. }
  34385. },
  34386. eye: {
  34387. height: math.unit(0.53, "meters"),
  34388. name: "Eye",
  34389. image: {
  34390. source: "./media/characters/sabrina/eye.svg"
  34391. }
  34392. },
  34393. foot: {
  34394. height: math.unit(1.86, "meters"),
  34395. name: "Foot",
  34396. image: {
  34397. source: "./media/characters/sabrina/foot.svg"
  34398. }
  34399. },
  34400. hand: {
  34401. height: math.unit(1.32, "meters"),
  34402. name: "Hand",
  34403. image: {
  34404. source: "./media/characters/sabrina/hand.svg"
  34405. }
  34406. },
  34407. head: {
  34408. height: math.unit(2.44, "meters"),
  34409. name: "Head",
  34410. image: {
  34411. source: "./media/characters/sabrina/head.svg"
  34412. }
  34413. },
  34414. headAngry: {
  34415. height: math.unit(2.44, "meters"),
  34416. name: "Head (Angry))",
  34417. image: {
  34418. source: "./media/characters/sabrina/head-angry.svg"
  34419. }
  34420. },
  34421. maw: {
  34422. height: math.unit(1.65, "meters"),
  34423. name: "Maw",
  34424. image: {
  34425. source: "./media/characters/sabrina/maw.svg"
  34426. }
  34427. },
  34428. spikes: {
  34429. height: math.unit(1.69, "meters"),
  34430. name: "Spikes",
  34431. image: {
  34432. source: "./media/characters/sabrina/spikes.svg"
  34433. }
  34434. },
  34435. stomach: {
  34436. height: math.unit(1.15, "meters"),
  34437. name: "Stomach",
  34438. image: {
  34439. source: "./media/characters/sabrina/stomach.svg"
  34440. }
  34441. },
  34442. tongue: {
  34443. height: math.unit(1.27, "meters"),
  34444. name: "Tongue",
  34445. image: {
  34446. source: "./media/characters/sabrina/tongue.svg"
  34447. }
  34448. },
  34449. wingDorsal: {
  34450. height: math.unit(4.85, "meters"),
  34451. name: "Wing (Dorsal)",
  34452. image: {
  34453. source: "./media/characters/sabrina/wing-dorsal.svg"
  34454. }
  34455. },
  34456. wingVentral: {
  34457. height: math.unit(4.85, "meters"),
  34458. name: "Wing (Ventral)",
  34459. image: {
  34460. source: "./media/characters/sabrina/wing-ventral.svg"
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(5, "meters"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34474. {
  34475. frontMaid: {
  34476. height: math.unit(5 + 5/12, "feet"),
  34477. weight: math.unit(130, "lb"),
  34478. name: "Front (Maid)",
  34479. image: {
  34480. source: "./media/characters/midnight-tales/front-maid.svg",
  34481. extra: 489/454,
  34482. bottom: 61/550
  34483. }
  34484. },
  34485. frontFormal: {
  34486. height: math.unit(5 + 5/12, "feet"),
  34487. weight: math.unit(130, "lb"),
  34488. name: "Front (Formal)",
  34489. image: {
  34490. source: "./media/characters/midnight-tales/front-formal.svg",
  34491. extra: 489/454,
  34492. bottom: 61/550
  34493. }
  34494. },
  34495. back: {
  34496. height: math.unit(5 + 5/12, "feet"),
  34497. weight: math.unit(130, "lb"),
  34498. name: "Back",
  34499. image: {
  34500. source: "./media/characters/midnight-tales/back.svg",
  34501. extra: 498/456,
  34502. bottom: 33/531
  34503. }
  34504. },
  34505. frontBeast: {
  34506. height: math.unit(40, "feet"),
  34507. weight: math.unit(64000, "lb"),
  34508. name: "Front (Beast)",
  34509. image: {
  34510. source: "./media/characters/midnight-tales/front-beast.svg",
  34511. extra: 927/860,
  34512. bottom: 53/980
  34513. }
  34514. },
  34515. backBeast: {
  34516. height: math.unit(40, "feet"),
  34517. weight: math.unit(64000, "lb"),
  34518. name: "Back (Beast)",
  34519. image: {
  34520. source: "./media/characters/midnight-tales/back-beast.svg",
  34521. extra: 929/855,
  34522. bottom: 16/945
  34523. }
  34524. },
  34525. footBeast: {
  34526. height: math.unit(6.7, "feet"),
  34527. name: "Foot (Beast)",
  34528. image: {
  34529. source: "./media/characters/midnight-tales/foot-beast.svg"
  34530. }
  34531. },
  34532. headBeast: {
  34533. height: math.unit(8, "feet"),
  34534. name: "Head (Beast)",
  34535. image: {
  34536. source: "./media/characters/midnight-tales/head-beast.svg"
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 5 / 12, "feet"),
  34544. default: true
  34545. },
  34546. {
  34547. name: "Macro",
  34548. height: math.unit(25, "feet")
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(5 + 10/12, "feet"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/argon/front.svg",
  34560. extra: 2009/1935,
  34561. bottom: 118/2127
  34562. }
  34563. },
  34564. back: {
  34565. height: math.unit(5 + 10/12, "feet"),
  34566. name: "Back",
  34567. image: {
  34568. source: "./media/characters/argon/back.svg",
  34569. extra: 2047/1992,
  34570. bottom: 20/2067
  34571. }
  34572. },
  34573. frontDressed: {
  34574. height: math.unit(5 + 10/12, "feet"),
  34575. name: "Front (Dressed)",
  34576. image: {
  34577. source: "./media/characters/argon/front-dressed.svg",
  34578. extra: 2009/1935,
  34579. bottom: 118/2127
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(5 + 10/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(8 + 6/12, "feet"),
  34596. weight: math.unit(1150, "lb"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/kichi/front.svg",
  34600. extra: 1267/1164,
  34601. bottom: 61/1328
  34602. }
  34603. },
  34604. back: {
  34605. height: math.unit(8 + 6/12, "feet"),
  34606. weight: math.unit(1150, "lb"),
  34607. name: "Back",
  34608. image: {
  34609. source: "./media/characters/kichi/back.svg",
  34610. extra: 1273/1166,
  34611. bottom: 33/1306
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(8 + 6/12, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(6, "feet"),
  34628. weight: math.unit(210, "lb"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/manetel-greyscale/front.svg",
  34632. extra: 350/312,
  34633. bottom: 8/358
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Micro",
  34640. height: math.unit(2, "inches")
  34641. },
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(6, "feet"),
  34645. default: true
  34646. },
  34647. {
  34648. name: "Minimacro",
  34649. height: math.unit(17, "feet")
  34650. },
  34651. {
  34652. name: "Macro",
  34653. height: math.unit(117, "feet")
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34659. {
  34660. side: {
  34661. height: math.unit(5 + 1/12, "feet"),
  34662. weight: math.unit(418, "lb"),
  34663. name: "Side",
  34664. image: {
  34665. source: "./media/characters/softpurr/side.svg",
  34666. extra: 1993/1945,
  34667. bottom: 134/2127
  34668. }
  34669. },
  34670. front: {
  34671. height: math.unit(5 + 1/12, "feet"),
  34672. weight: math.unit(418, "lb"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/softpurr/front.svg",
  34676. extra: 1950/1856,
  34677. bottom: 174/2124
  34678. }
  34679. },
  34680. paw: {
  34681. height: math.unit(1, "feet"),
  34682. name: "Paw",
  34683. image: {
  34684. source: "./media/characters/softpurr/paw.svg"
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(5 + 1/12, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(260, "meters"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/anahita/front.svg",
  34704. extra: 665/635,
  34705. bottom: 89/754
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Macro",
  34712. height: math.unit(260, "meters"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(4 + 10/12, "feet"),
  34722. weight: math.unit(160, "lb"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/chip-mouse/front.svg",
  34726. extra: 3528/3408,
  34727. bottom: 0/3528
  34728. }
  34729. },
  34730. frontNsfw: {
  34731. height: math.unit(4 + 10/12, "feet"),
  34732. weight: math.unit(160, "lb"),
  34733. name: "Front (NSFW)",
  34734. image: {
  34735. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34736. extra: 3528/3408,
  34737. bottom: 0/3528
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(4 + 10/12, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34751. {
  34752. side: {
  34753. height: math.unit(10, "feet"),
  34754. weight: math.unit(14000, "lb"),
  34755. name: "Side",
  34756. image: {
  34757. source: "./media/characters/kremm/side.svg",
  34758. extra: 1390/1053,
  34759. bottom: 90/1480
  34760. }
  34761. },
  34762. gut: {
  34763. height: math.unit(5.8, "feet"),
  34764. name: "Gut",
  34765. image: {
  34766. source: "./media/characters/kremm/gut.svg"
  34767. }
  34768. },
  34769. ass: {
  34770. height: math.unit(6.1, "feet"),
  34771. name: "Ass",
  34772. image: {
  34773. source: "./media/characters/kremm/ass.svg"
  34774. }
  34775. },
  34776. jaws: {
  34777. height: math.unit(2.2, "feet"),
  34778. name: "Jaws",
  34779. image: {
  34780. source: "./media/characters/kremm/jaws.svg"
  34781. }
  34782. },
  34783. dick: {
  34784. height: math.unit(4.26, "feet"),
  34785. name: "Dick",
  34786. image: {
  34787. source: "./media/characters/kremm/dick.svg"
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(10, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(30, "stories"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/kai/front.svg",
  34807. extra: 1892/1718,
  34808. bottom: 162/2054
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Macro",
  34815. height: math.unit(30, "stories"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(6 + 4/12, "feet"),
  34825. weight: math.unit(145, "lb"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/sykes/front.svg",
  34829. extra: 1321 / 1187,
  34830. bottom: 66 / 1387
  34831. }
  34832. },
  34833. back: {
  34834. height: math.unit(6 + 4/12, "feet"),
  34835. weight: math.unit(145, "lb"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/sykes/back.svg",
  34839. extra: 1326/1181,
  34840. bottom: 31/1357
  34841. }
  34842. },
  34843. traditionalOutfit: {
  34844. height: math.unit(6 + 4/12, "feet"),
  34845. weight: math.unit(145, "lb"),
  34846. name: "Traditional Outfit",
  34847. image: {
  34848. source: "./media/characters/sykes/traditional-outfit.svg",
  34849. extra: 1321 / 1187,
  34850. bottom: 66 / 1387
  34851. }
  34852. },
  34853. adventureOutfit: {
  34854. height: math.unit(6 + 4/12, "feet"),
  34855. weight: math.unit(145, "lb"),
  34856. name: "Adventure Outfit",
  34857. image: {
  34858. source: "./media/characters/sykes/adventure-outfit.svg",
  34859. extra: 1321 / 1187,
  34860. bottom: 66 / 1387
  34861. }
  34862. },
  34863. handLeft: {
  34864. height: math.unit(0.9, "feet"),
  34865. name: "Hand (Left)",
  34866. image: {
  34867. source: "./media/characters/sykes/hand-left.svg"
  34868. }
  34869. },
  34870. handRight: {
  34871. height: math.unit(0.839, "feet"),
  34872. name: "Hand (Right)",
  34873. image: {
  34874. source: "./media/characters/sykes/hand-right.svg"
  34875. }
  34876. },
  34877. leftFoot: {
  34878. height: math.unit(1.2, "feet"),
  34879. name: "Foot (Left)",
  34880. image: {
  34881. source: "./media/characters/sykes/foot-left.svg"
  34882. }
  34883. },
  34884. rightFoot: {
  34885. height: math.unit(1.2, "feet"),
  34886. name: "Foot (Right)",
  34887. image: {
  34888. source: "./media/characters/sykes/foot-right.svg"
  34889. }
  34890. },
  34891. maw: {
  34892. height: math.unit(1.93, "feet"),
  34893. name: "Maw",
  34894. image: {
  34895. source: "./media/characters/sykes/maw.svg"
  34896. }
  34897. },
  34898. teeth: {
  34899. height: math.unit(0.51, "feet"),
  34900. name: "Teeth",
  34901. image: {
  34902. source: "./media/characters/sykes/teeth.svg"
  34903. }
  34904. },
  34905. tongue: {
  34906. height: math.unit(2.13, "feet"),
  34907. name: "Tongue",
  34908. image: {
  34909. source: "./media/characters/sykes/tongue.svg"
  34910. }
  34911. },
  34912. uvula: {
  34913. height: math.unit(0.16, "feet"),
  34914. name: "Uvula",
  34915. image: {
  34916. source: "./media/characters/sykes/uvula.svg"
  34917. }
  34918. },
  34919. collar: {
  34920. height: math.unit(0.287, "feet"),
  34921. name: "Collar",
  34922. image: {
  34923. source: "./media/characters/sykes/collar.svg"
  34924. }
  34925. },
  34926. tail: {
  34927. height: math.unit(3.8, "feet"),
  34928. name: "Tail",
  34929. image: {
  34930. source: "./media/characters/sykes/tail.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Shrunken",
  34937. height: math.unit(5, "inches")
  34938. },
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(6 + 4 / 12, "feet"),
  34942. default: true
  34943. },
  34944. {
  34945. name: "Big",
  34946. height: math.unit(15, "feet")
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(5 + 8/12, "feet"),
  34955. weight: math.unit(190, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/oven-otter/front.svg",
  34959. extra: 1809/1740,
  34960. bottom: 181/1990
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(5 + 8/12, "feet"),
  34965. weight: math.unit(190, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/oven-otter/back.svg",
  34969. extra: 1709/1635,
  34970. bottom: 118/1827
  34971. }
  34972. },
  34973. hand: {
  34974. height: math.unit(1.07, "feet"),
  34975. name: "Hand",
  34976. image: {
  34977. source: "./media/characters/oven-otter/hand.svg"
  34978. }
  34979. },
  34980. beans: {
  34981. height: math.unit(1.74, "feet"),
  34982. name: "Beans",
  34983. image: {
  34984. source: "./media/characters/oven-otter/beans.svg"
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Micro",
  34991. height: math.unit(0.5, "inches")
  34992. },
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(5 + 8/12, "feet"),
  34996. default: true
  34997. },
  34998. {
  34999. name: "Macro",
  35000. height: math.unit(250, "feet")
  35001. },
  35002. {
  35003. name: "Really High",
  35004. height: math.unit(420, "feet")
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(5, "meters"),
  35013. weight: math.unit(292000000000000, "kg"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/devourer/front.svg",
  35017. extra: 1800/1733,
  35018. bottom: 211/2011
  35019. }
  35020. },
  35021. maw: {
  35022. height: math.unit(1.1, "meter"),
  35023. name: "Maw",
  35024. image: {
  35025. source: "./media/characters/devourer/maw.svg"
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Small",
  35032. height: math.unit(3, "meters")
  35033. },
  35034. {
  35035. name: "Large",
  35036. height: math.unit(5, "meters"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35043. {
  35044. front: {
  35045. height: math.unit(6, "feet"),
  35046. weight: math.unit(400, "lb"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/ellarby/front.svg",
  35050. extra: 1909/1763,
  35051. bottom: 80/1989
  35052. }
  35053. },
  35054. back: {
  35055. height: math.unit(6, "feet"),
  35056. weight: math.unit(400, "lb"),
  35057. name: "Back",
  35058. image: {
  35059. source: "./media/characters/ellarby/back.svg",
  35060. extra: 1914/1784,
  35061. bottom: 172/2086
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Mischief",
  35068. height: math.unit(18, "inches")
  35069. },
  35070. {
  35071. name: "Trouble",
  35072. height: math.unit(12, "feet")
  35073. },
  35074. {
  35075. name: "Havoc",
  35076. height: math.unit(200, "feet"),
  35077. default: true
  35078. },
  35079. {
  35080. name: "Pandemonium",
  35081. height: math.unit(1, "mile")
  35082. },
  35083. {
  35084. name: "Catastrophe",
  35085. height: math.unit(100, "miles")
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35091. {
  35092. front: {
  35093. height: math.unit(4.7, "meters"),
  35094. weight: math.unit(6500, "kg"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/vex/front.svg",
  35098. extra: 1288/1140,
  35099. bottom: 100/1388
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(4.7, "meters"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35113. {
  35114. normal: {
  35115. height: math.unit(6, "feet"),
  35116. weight: math.unit(350, "lb"),
  35117. name: "Normal",
  35118. image: {
  35119. source: "./media/characters/teshy/normal.svg",
  35120. extra: 1795/1735,
  35121. bottom: 16/1811
  35122. }
  35123. },
  35124. monsterFront: {
  35125. height: math.unit(12, "feet"),
  35126. weight: math.unit(4700, "lb"),
  35127. name: "Monster (Front)",
  35128. image: {
  35129. source: "./media/characters/teshy/monster-front.svg",
  35130. extra: 2042/2034,
  35131. bottom: 128/2170
  35132. }
  35133. },
  35134. monsterSide: {
  35135. height: math.unit(12, "feet"),
  35136. weight: math.unit(4700, "lb"),
  35137. name: "Monster (Side)",
  35138. image: {
  35139. source: "./media/characters/teshy/monster-side.svg",
  35140. extra: 2067/2056,
  35141. bottom: 70/2137
  35142. }
  35143. },
  35144. monsterBack: {
  35145. height: math.unit(12, "feet"),
  35146. weight: math.unit(4700, "lb"),
  35147. name: "Monster (Back)",
  35148. image: {
  35149. source: "./media/characters/teshy/monster-back.svg",
  35150. extra: 1921/1914,
  35151. bottom: 171/2092
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(6, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(6, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/ramey/front.svg",
  35171. extra: 790/787,
  35172. bottom: 27/817
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(5 + 5/12, "feet"),
  35189. weight: math.unit(120, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/phirae/front.svg",
  35193. extra: 2491/2436,
  35194. bottom: 38/2529
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(5 + 5/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35208. {
  35209. front: {
  35210. height: math.unit(5 + 3/12, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/stagglas/front.svg",
  35214. extra: 962/882,
  35215. bottom: 53/1015
  35216. }
  35217. },
  35218. feral: {
  35219. height: math.unit(335, "cm"),
  35220. name: "Feral",
  35221. image: {
  35222. source: "./media/characters/stagglas/feral.svg",
  35223. extra: 1732/1090,
  35224. bottom: 48/1780
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(5 + 3/12, "feet"),
  35232. default: true
  35233. },
  35234. ]
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(5 + 4/12, "feet"),
  35241. weight: math.unit(145, "lb"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/starra/front.svg",
  35245. extra: 1790/1691,
  35246. bottom: 91/1881
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 4/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(2.2, "meters"),
  35263. name: "Front",
  35264. image: {
  35265. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35266. extra: 1194/1005,
  35267. bottom: 25/1219
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(2.2, "meters"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35281. {
  35282. side: {
  35283. height: math.unit(8 + 2/12, "feet"),
  35284. weight: math.unit(1240, "lb"),
  35285. name: "Side",
  35286. image: {
  35287. source: "./media/characters/mika-valentine/side.svg",
  35288. extra: 2670/2501,
  35289. bottom: 250/2920
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(8 + 2/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(7 + 2/12, "feet"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/xoltol/front.svg",
  35309. extra: 2212/2124,
  35310. bottom: 84/2296
  35311. }
  35312. },
  35313. side: {
  35314. height: math.unit(7 + 2/12, "feet"),
  35315. name: "Side",
  35316. image: {
  35317. source: "./media/characters/xoltol/side.svg",
  35318. extra: 2273/2197,
  35319. bottom: 26/2299
  35320. }
  35321. },
  35322. hand: {
  35323. height: math.unit(2.5, "feet"),
  35324. name: "Hand",
  35325. image: {
  35326. source: "./media/characters/xoltol/hand.svg"
  35327. }
  35328. },
  35329. },
  35330. [
  35331. {
  35332. name: "Small-ish",
  35333. height: math.unit(5 + 11/12, "feet")
  35334. },
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(7 + 2/12, "feet")
  35338. },
  35339. {
  35340. name: "\"Macro\"",
  35341. height: math.unit(14 + 9/12, "feet"),
  35342. default: true
  35343. },
  35344. {
  35345. name: "Alternate Height",
  35346. height: math.unit(20, "feet")
  35347. },
  35348. {
  35349. name: "Actually Macro",
  35350. height: math.unit(100, "feet")
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(5 + 2/12, "feet"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/kotetsu-redwood/front.svg",
  35362. extra: 1053/942,
  35363. bottom: 60/1113
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(5 + 2/12, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(2.4, "meters"),
  35380. weight: math.unit(125, "kg"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/lilith/front.svg",
  35384. extra: 1590/1513,
  35385. bottom: 203/1793
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Humanoid",
  35392. height: math.unit(2.4, "meters")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6, "meters"),
  35397. default: true
  35398. },
  35399. {
  35400. name: "Largest",
  35401. height: math.unit(55, "meters")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(8 + 4/12, "feet"),
  35410. weight: math.unit(535, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/beh'kah-bolger/front.svg",
  35414. extra: 1660/1603,
  35415. bottom: 37/1697
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(8 + 4/12, "feet"),
  35423. default: true
  35424. },
  35425. {
  35426. name: "Kaiju",
  35427. height: math.unit(250, "feet")
  35428. },
  35429. {
  35430. name: "Still Growing",
  35431. height: math.unit(10, "miles")
  35432. },
  35433. {
  35434. name: "Continental",
  35435. height: math.unit(5000, "miles")
  35436. },
  35437. {
  35438. name: "Final Form",
  35439. height: math.unit(2500000, "miles")
  35440. },
  35441. ]
  35442. ))
  35443. characterMakers.push(() => makeCharacter(
  35444. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35445. {
  35446. front: {
  35447. height: math.unit(7 + 2/12, "feet"),
  35448. weight: math.unit(230, "kg"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/tatyana-milewska/front.svg",
  35452. extra: 1199/1150,
  35453. bottom: 86/1285
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(7 + 2/12, "feet"),
  35461. default: true
  35462. },
  35463. {
  35464. name: "Big",
  35465. height: math.unit(12, "feet")
  35466. },
  35467. {
  35468. name: "Minimacro",
  35469. height: math.unit(20, "feet")
  35470. },
  35471. {
  35472. name: "Macro",
  35473. height: math.unit(120, "feet")
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35479. {
  35480. front: {
  35481. height: math.unit(7 + 8/12, "feet"),
  35482. weight: math.unit(152, "kg"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/helen-arri/front.svg",
  35486. extra: 440/423,
  35487. bottom: 14/454
  35488. }
  35489. },
  35490. back: {
  35491. height: math.unit(7 + 8/12, "feet"),
  35492. weight: math.unit(152, "kg"),
  35493. name: "Back",
  35494. image: {
  35495. source: "./media/characters/helen-arri/back.svg",
  35496. extra: 443/426,
  35497. bottom: 8/451
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(7 + 8/12, "feet"),
  35505. default: true
  35506. },
  35507. {
  35508. name: "Big",
  35509. height: math.unit(14, "feet")
  35510. },
  35511. {
  35512. name: "Minimacro",
  35513. height: math.unit(24, "feet")
  35514. },
  35515. {
  35516. name: "Macro",
  35517. height: math.unit(140, "feet")
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(6, "meters"),
  35526. name: "Front",
  35527. image: {
  35528. source: "./media/characters/ehanu-rehu/front.svg",
  35529. extra: 1800/1800,
  35530. bottom: 59/1859
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(6, "meters"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(7 + 3/12, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/renholder/front.svg",
  35550. extra: 3096/2960,
  35551. bottom: 250/3346
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal Bat",
  35558. height: math.unit(7 + 3/12, "feet"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Slightly Tall Bat",
  35563. height: math.unit(100, "feet")
  35564. },
  35565. {
  35566. name: "Big Bat",
  35567. height: math.unit(1000, "feet")
  35568. },
  35569. {
  35570. name: "City-Sized Bat",
  35571. height: math.unit(200000, "feet")
  35572. },
  35573. {
  35574. name: "Bigger Bat",
  35575. height: math.unit(10000, "miles")
  35576. },
  35577. {
  35578. name: "Solar Sized Bat",
  35579. height: math.unit(100, "AU")
  35580. },
  35581. {
  35582. name: "Galactic Bat",
  35583. height: math.unit(200000, "lightyears")
  35584. },
  35585. {
  35586. name: "Universally Known Bat",
  35587. height: math.unit(1, "universe")
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(6 + 11/12, "feet"),
  35596. weight: math.unit(250, "lb"),
  35597. name: "Front",
  35598. image: {
  35599. source: "./media/characters/cookiecat/front.svg",
  35600. extra: 893/827,
  35601. bottom: 14/907
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Micro",
  35608. height: math.unit(3, "inches")
  35609. },
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(6 + 11/12, "feet"),
  35613. default: true
  35614. },
  35615. {
  35616. name: "Macro",
  35617. height: math.unit(100, "feet")
  35618. },
  35619. {
  35620. name: "Macro+",
  35621. height: math.unit(404, "feet")
  35622. },
  35623. {
  35624. name: "Megamacro",
  35625. height: math.unit(165, "miles")
  35626. },
  35627. {
  35628. name: "Planetary",
  35629. height: math.unit(4600, "miles")
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35635. {
  35636. front: {
  35637. height: math.unit(10 + 3/12, "feet"),
  35638. weight: math.unit(1500, "lb"),
  35639. name: "Front",
  35640. image: {
  35641. source: "./media/characters/tux-kusanagi/front.svg",
  35642. extra: 944/840,
  35643. bottom: 39/983
  35644. }
  35645. },
  35646. back: {
  35647. height: math.unit(10 + 3/12, "feet"),
  35648. weight: math.unit(1500, "lb"),
  35649. name: "Back",
  35650. image: {
  35651. source: "./media/characters/tux-kusanagi/back.svg",
  35652. extra: 941/842,
  35653. bottom: 28/969
  35654. }
  35655. },
  35656. rump: {
  35657. height: math.unit(5.25, "feet"),
  35658. name: "Rump",
  35659. image: {
  35660. source: "./media/characters/tux-kusanagi/rump.svg"
  35661. }
  35662. },
  35663. beak: {
  35664. height: math.unit(1.54, "feet"),
  35665. name: "Beak",
  35666. image: {
  35667. source: "./media/characters/tux-kusanagi/beak.svg"
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(10 + 3/12, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(58, "feet"),
  35684. weight: math.unit(200, "tons"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/uzarmazari/front.svg",
  35688. extra: 1575/1455,
  35689. bottom: 152/1727
  35690. }
  35691. },
  35692. back: {
  35693. height: math.unit(58, "feet"),
  35694. weight: math.unit(200, "tons"),
  35695. name: "Back",
  35696. image: {
  35697. source: "./media/characters/uzarmazari/back.svg",
  35698. extra: 1585/1510,
  35699. bottom: 157/1742
  35700. }
  35701. },
  35702. head: {
  35703. height: math.unit(26, "feet"),
  35704. name: "Head",
  35705. image: {
  35706. source: "./media/characters/uzarmazari/head.svg"
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(58, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35720. {
  35721. side: {
  35722. height: math.unit(15, "feet"),
  35723. name: "Side",
  35724. image: {
  35725. source: "./media/characters/akitu/side.svg",
  35726. extra: 1421/1321,
  35727. bottom: 157/1578
  35728. }
  35729. },
  35730. front: {
  35731. height: math.unit(15, "feet"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/akitu/front.svg",
  35735. extra: 1435/1326,
  35736. bottom: 232/1667
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(15, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(10 + 8/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/azalie-croixland/front.svg",
  35756. extra: 1972/1856,
  35757. bottom: 31/2003
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Original Height",
  35764. height: math.unit(5 + 4/12, "feet")
  35765. },
  35766. {
  35767. name: "Normal Height",
  35768. height: math.unit(10 + 8/12, "feet"),
  35769. default: true
  35770. },
  35771. ]
  35772. ))
  35773. characterMakers.push(() => makeCharacter(
  35774. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35775. {
  35776. side: {
  35777. height: math.unit(7 + 1/12, "feet"),
  35778. weight: math.unit(245, "lb"),
  35779. name: "Side",
  35780. image: {
  35781. source: "./media/characters/kavus-kazian/side.svg",
  35782. extra: 349/342,
  35783. bottom: 15/364
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(7 + 1/12, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35797. {
  35798. normalFront: {
  35799. height: math.unit(5 + 11/12, "feet"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/moonlight-rose/normal-front.svg",
  35803. extra: 1980/1825,
  35804. bottom: 18/1998
  35805. },
  35806. form: "normal",
  35807. default: true
  35808. },
  35809. normalBack: {
  35810. height: math.unit(5 + 11/12, "feet"),
  35811. name: "Back",
  35812. image: {
  35813. source: "./media/characters/moonlight-rose/normal-back.svg",
  35814. extra: 2010/1839,
  35815. bottom: 10/2020
  35816. },
  35817. form: "normal"
  35818. },
  35819. demonFront: {
  35820. height: math.unit(1.5, "earths"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/moonlight-rose/demon.svg",
  35824. extra: 1400/1294,
  35825. bottom: 45/1445
  35826. },
  35827. form: "demon",
  35828. default: true
  35829. },
  35830. terraFront: {
  35831. height: math.unit(1.5, "earths"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/moonlight-rose/terra.svg"
  35835. },
  35836. form: "terra",
  35837. default: true
  35838. },
  35839. jupiterFront: {
  35840. height: math.unit(69911*2, "km"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35844. extra: 1367/1286,
  35845. bottom: 55/1422
  35846. },
  35847. form: "jupiter",
  35848. default: true
  35849. },
  35850. neptuneFront: {
  35851. height: math.unit(24622*2, "feet"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35855. extra: 1851/1712,
  35856. bottom: 0/1851
  35857. },
  35858. form: "neptune",
  35859. default: true
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "\"Natural\" Height",
  35865. height: math.unit(5 + 11/12, "feet"),
  35866. form: "normal"
  35867. },
  35868. {
  35869. name: "Smallest comfortable size",
  35870. height: math.unit(40, "meters"),
  35871. form: "normal"
  35872. },
  35873. {
  35874. name: "Common size",
  35875. height: math.unit(50, "km"),
  35876. form: "normal",
  35877. default: true
  35878. },
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(1.5, "earths"),
  35882. form: "demon",
  35883. default: true
  35884. },
  35885. {
  35886. name: "Universal",
  35887. height: math.unit(15, "universes"),
  35888. form: "demon"
  35889. },
  35890. {
  35891. name: "Earth",
  35892. height: math.unit(1.5, "earths"),
  35893. form: "terra",
  35894. default: true
  35895. },
  35896. {
  35897. name: "Super Earth",
  35898. height: math.unit(67.5, "earths"),
  35899. form: "terra"
  35900. },
  35901. {
  35902. name: "Doesn't fit in a solar system...",
  35903. height: math.unit(1, "galaxy"),
  35904. form: "terra"
  35905. },
  35906. {
  35907. name: "Saturn",
  35908. height: math.unit(58232*2, "km"),
  35909. form: "jupiter"
  35910. },
  35911. {
  35912. name: "Jupiter",
  35913. height: math.unit(69911*2, "km"),
  35914. form: "jupiter",
  35915. default: true
  35916. },
  35917. {
  35918. name: "HD 100546 b",
  35919. height: math.unit(482938, "km"),
  35920. form: "jupiter"
  35921. },
  35922. {
  35923. name: "Enceladus",
  35924. height: math.unit(513*2, "km"),
  35925. form: "neptune"
  35926. },
  35927. {
  35928. name: "Europe",
  35929. height: math.unit(1560*2, "km"),
  35930. form: "neptune"
  35931. },
  35932. {
  35933. name: "Neptune",
  35934. height: math.unit(24622*2, "km"),
  35935. form: "neptune",
  35936. default: true
  35937. },
  35938. {
  35939. name: "CoRoT-9b",
  35940. height: math.unit(75067*2, "km"),
  35941. form: "neptune"
  35942. },
  35943. ],
  35944. {
  35945. "normal": {
  35946. name: "Normal",
  35947. default: true
  35948. },
  35949. "demon": {
  35950. name: "Demon"
  35951. },
  35952. "terra": {
  35953. name: "Terra"
  35954. },
  35955. "jupiter": {
  35956. name: "Jupiter"
  35957. },
  35958. "neptune": {
  35959. name: "Neptune"
  35960. }
  35961. }
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35965. {
  35966. front: {
  35967. height: math.unit(16, "feet"),
  35968. weight: math.unit(610, "kg"),
  35969. name: "Front",
  35970. image: {
  35971. source: "./media/characters/huckle/front.svg",
  35972. extra: 1731/1625,
  35973. bottom: 33/1764
  35974. }
  35975. },
  35976. back: {
  35977. height: math.unit(16, "feet"),
  35978. weight: math.unit(610, "kg"),
  35979. name: "Back",
  35980. image: {
  35981. source: "./media/characters/huckle/back.svg",
  35982. extra: 1738/1651,
  35983. bottom: 37/1775
  35984. }
  35985. },
  35986. laughing: {
  35987. height: math.unit(3.75, "feet"),
  35988. name: "Laughing",
  35989. image: {
  35990. source: "./media/characters/huckle/laughing.svg"
  35991. }
  35992. },
  35993. angry: {
  35994. height: math.unit(4.15, "feet"),
  35995. name: "Angry",
  35996. image: {
  35997. source: "./media/characters/huckle/angry.svg"
  35998. }
  35999. },
  36000. },
  36001. [
  36002. {
  36003. name: "Normal",
  36004. height: math.unit(16, "feet"),
  36005. default: true
  36006. },
  36007. {
  36008. name: "Mini Macro",
  36009. height: math.unit(463, "feet")
  36010. },
  36011. {
  36012. name: "Macro",
  36013. height: math.unit(1680, "meters")
  36014. },
  36015. {
  36016. name: "Mega Macro",
  36017. height: math.unit(175, "km")
  36018. },
  36019. {
  36020. name: "Terra Macro",
  36021. height: math.unit(32, "gigameters")
  36022. },
  36023. {
  36024. name: "Multiverse+",
  36025. height: math.unit(2.56e23, "yottameters")
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6 + 9/12, "feet"),
  36034. weight: math.unit(280, "lb"),
  36035. name: "Front",
  36036. image: {
  36037. source: "./media/characters/candy/front.svg",
  36038. extra: 234/217,
  36039. bottom: 11/245
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Really Small",
  36046. height: math.unit(0.1, "nm")
  36047. },
  36048. {
  36049. name: "Micro",
  36050. height: math.unit(2, "inches")
  36051. },
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(6 + 9/12, "feet"),
  36055. default: true
  36056. },
  36057. {
  36058. name: "Small Macro",
  36059. height: math.unit(69, "feet")
  36060. },
  36061. {
  36062. name: "Macro",
  36063. height: math.unit(160, "feet")
  36064. },
  36065. {
  36066. name: "Megamacro",
  36067. height: math.unit(22000, "miles")
  36068. },
  36069. {
  36070. name: "Gigamacro",
  36071. height: math.unit(50000, "miles")
  36072. },
  36073. ]
  36074. ))
  36075. characterMakers.push(() => makeCharacter(
  36076. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36077. {
  36078. front: {
  36079. height: math.unit(4, "feet"),
  36080. weight: math.unit(90, "lb"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/joey-mcdonald/front.svg",
  36084. extra: 1059/852,
  36085. bottom: 33/1092
  36086. }
  36087. },
  36088. back: {
  36089. height: math.unit(4, "feet"),
  36090. weight: math.unit(90, "lb"),
  36091. name: "Back",
  36092. image: {
  36093. source: "./media/characters/joey-mcdonald/back.svg",
  36094. extra: 1077/879,
  36095. bottom: 5/1082
  36096. }
  36097. },
  36098. frontKobold: {
  36099. height: math.unit(4, "feet"),
  36100. weight: math.unit(100, "lb"),
  36101. name: "Front-kobold",
  36102. image: {
  36103. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36104. extra: 1480/1367,
  36105. bottom: 0/1480
  36106. }
  36107. },
  36108. backKobold: {
  36109. height: math.unit(4, "feet"),
  36110. weight: math.unit(100, "lb"),
  36111. name: "Back-kobold",
  36112. image: {
  36113. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36114. extra: 1449/1361,
  36115. bottom: 0/1449
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(4, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(12 + 6/12, "feet"),
  36132. name: "Front",
  36133. image: {
  36134. source: "./media/characters/kass-lockheed/front.svg",
  36135. extra: 354/343,
  36136. bottom: 9/363
  36137. }
  36138. },
  36139. back: {
  36140. height: math.unit(12 + 6/12, "feet"),
  36141. name: "Back",
  36142. image: {
  36143. source: "./media/characters/kass-lockheed/back.svg",
  36144. extra: 364/352,
  36145. bottom: 3/367
  36146. }
  36147. },
  36148. dick: {
  36149. height: math.unit(3.12, "feet"),
  36150. name: "Dick",
  36151. image: {
  36152. source: "./media/characters/kass-lockheed/dick.svg"
  36153. }
  36154. },
  36155. head: {
  36156. height: math.unit(2.6, "feet"),
  36157. name: "Head",
  36158. image: {
  36159. source: "./media/characters/kass-lockheed/head.svg"
  36160. }
  36161. },
  36162. bleh: {
  36163. height: math.unit(2.85, "feet"),
  36164. name: "Bleh",
  36165. image: {
  36166. source: "./media/characters/kass-lockheed/bleh.svg"
  36167. }
  36168. },
  36169. smug: {
  36170. height: math.unit(2.85, "feet"),
  36171. name: "Smug",
  36172. image: {
  36173. source: "./media/characters/kass-lockheed/smug.svg"
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(12 + 6/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(6 + 2/12, "feet"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/taylor/front.svg",
  36193. extra: 639/495,
  36194. bottom: 12/651
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(6 + 2/12, "feet"),
  36202. default: true
  36203. },
  36204. {
  36205. name: "Big",
  36206. height: math.unit(15, "feet")
  36207. },
  36208. {
  36209. name: "Lorg",
  36210. height: math.unit(80, "feet")
  36211. },
  36212. {
  36213. name: "Too Lorg",
  36214. height: math.unit(120, "feet")
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36220. {
  36221. front: {
  36222. height: math.unit(15, "feet"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/kaizer/front.svg",
  36226. extra: 1612/1436,
  36227. bottom: 43/1655
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(15, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36241. {
  36242. front: {
  36243. height: math.unit(2, "feet"),
  36244. weight: math.unit(30, "lb"),
  36245. name: "Front",
  36246. image: {
  36247. source: "./media/characters/sandy/front.svg",
  36248. extra: 1439/1307,
  36249. bottom: 194/1633
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(2, "feet"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(3, "feet"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/mellvi/front.svg",
  36269. extra: 1831/1630,
  36270. bottom: 58/1889
  36271. }
  36272. },
  36273. },
  36274. [
  36275. {
  36276. name: "Normal",
  36277. height: math.unit(3, "feet"),
  36278. default: true
  36279. },
  36280. ]
  36281. ))
  36282. characterMakers.push(() => makeCharacter(
  36283. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36284. {
  36285. front: {
  36286. height: math.unit(5 + 11/12, "feet"),
  36287. weight: math.unit(200, "lb"),
  36288. name: "Front",
  36289. image: {
  36290. source: "./media/characters/shirou/front.svg",
  36291. extra: 2491/2383,
  36292. bottom: 189/2680
  36293. }
  36294. },
  36295. back: {
  36296. height: math.unit(5 + 11/12, "feet"),
  36297. weight: math.unit(200, "lb"),
  36298. name: "Back",
  36299. image: {
  36300. source: "./media/characters/shirou/back.svg",
  36301. extra: 2554/2450,
  36302. bottom: 76/2630
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(5 + 11/12, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(6 + 3/12, "feet"),
  36319. weight: math.unit(177, "lb"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/noryu/front.svg",
  36323. extra: 973/885,
  36324. bottom: 10/983
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(6 + 3/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(5 + 6/12, "feet"),
  36341. weight: math.unit(170, "lb"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/mevolas-rubenido/front.svg",
  36345. extra: 2109/1901,
  36346. bottom: 96/2205
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(5 + 6/12, "feet"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36360. {
  36361. front: {
  36362. height: math.unit(100, "feet"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/dee/front.svg",
  36366. extra: 2153/2036,
  36367. bottom: 59/2212
  36368. }
  36369. },
  36370. back: {
  36371. height: math.unit(100, "feet"),
  36372. name: "Back",
  36373. image: {
  36374. source: "./media/characters/dee/back.svg",
  36375. extra: 2183/2058,
  36376. bottom: 75/2258
  36377. }
  36378. },
  36379. foot: {
  36380. height: math.unit(19.43, "feet"),
  36381. name: "Foot",
  36382. image: {
  36383. source: "./media/characters/dee/foot.svg"
  36384. }
  36385. },
  36386. hoof: {
  36387. height: math.unit(20.6, "feet"),
  36388. name: "Hoof",
  36389. image: {
  36390. source: "./media/characters/dee/hoof.svg"
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Macro",
  36397. height: math.unit(100, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(5 + 6/12, "feet"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/teh/front.svg",
  36410. extra: 1002/847,
  36411. bottom: 62/1064
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(5 + 6/12, "feet"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36425. {
  36426. side: {
  36427. height: math.unit(6 + 1/12, "feet"),
  36428. weight: math.unit(204, "lb"),
  36429. name: "Side",
  36430. image: {
  36431. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36432. extra: 974/775,
  36433. bottom: 169/1143
  36434. }
  36435. },
  36436. sitting: {
  36437. height: math.unit(6 + 2/12, "feet"),
  36438. weight: math.unit(204, "lb"),
  36439. name: "Sitting",
  36440. image: {
  36441. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36442. extra: 1175/964,
  36443. bottom: 378/1553
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(6 + 1/12, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(6, "inches"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/tululi/front.svg",
  36463. extra: 1997/1876,
  36464. bottom: 20/2017
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(6, "inches"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(4 + 1/12, "feet"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/star/front.svg",
  36484. extra: 1493/1189,
  36485. bottom: 48/1541
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(4 + 1/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(6 + 3/12, "feet"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/comet/front.svg",
  36505. extra: 1681/1462,
  36506. bottom: 26/1707
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(6 + 3/12, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(950, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/vortex/front.svg",
  36526. extra: 1497/1434,
  36527. bottom: 56/1553
  36528. }
  36529. },
  36530. maw: {
  36531. height: math.unit(285, "feet"),
  36532. name: "Maw",
  36533. image: {
  36534. source: "./media/characters/vortex/maw.svg"
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Macro",
  36541. height: math.unit(950, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(600, "feet"),
  36551. weight: math.unit(0.02, "grams"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/doodle/front.svg",
  36555. extra: 1578/1413,
  36556. bottom: 37/1615
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Macro",
  36563. height: math.unit(600, "feet"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(6 + 6/12, "feet"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/jai/front.svg",
  36576. extra: 1645/1534,
  36577. bottom: 115/1760
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(6 + 6/12, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(6 + 8/12, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/pixel/front.svg",
  36597. extra: 1900/1735,
  36598. bottom: 63/1963
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6 + 8/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36612. {
  36613. back: {
  36614. height: math.unit(4 + 1/12, "feet"),
  36615. weight: math.unit(75, "lb"),
  36616. name: "Back",
  36617. image: {
  36618. source: "./media/characters/rhett/back.svg",
  36619. extra: 930/878,
  36620. bottom: 25/955
  36621. }
  36622. },
  36623. front: {
  36624. height: math.unit(4 + 1/12, "feet"),
  36625. weight: math.unit(75, "lb"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/rhett/front.svg",
  36629. extra: 1682/1586,
  36630. bottom: 92/1774
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Micro",
  36637. height: math.unit(8, "inches")
  36638. },
  36639. {
  36640. name: "Tiny",
  36641. height: math.unit(2, "feet")
  36642. },
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(4 + 1/12, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(3 + 3/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/penny/front.svg",
  36658. extra: 1406/1311,
  36659. bottom: 26/1432
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(3 + 3/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(4 + 11/12, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/monty/front.svg",
  36679. extra: 1479/1209,
  36680. bottom: 0/1479
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(4 + 11/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36694. {
  36695. front: {
  36696. height: math.unit(8 + 4/12, "feet"),
  36697. name: "Front",
  36698. image: {
  36699. source: "./media/characters/sterling/front.svg",
  36700. extra: 1420/1236,
  36701. bottom: 27/1447
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(8 + 4/12, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(15, "feet"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/marble/front.svg",
  36721. extra: 973/937,
  36722. bottom: 32/1005
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(15, "feet"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36736. {
  36737. front: {
  36738. height: math.unit(3, "inches"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/powder/front.svg",
  36742. extra: 1504/1334,
  36743. bottom: 518/2022
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(3, "inches"),
  36751. default: true
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(4 + 5/12, "feet"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/joey-raccoon/front.svg",
  36763. extra: 1273/1197,
  36764. bottom: 0/1273
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(4 + 5/12, "feet"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(8 + 4/12, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/vick/front.svg",
  36784. extra: 2187/2118,
  36785. bottom: 47/2234
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(8 + 4/12, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(5 + 5/12, "feet"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/mitsy/front.svg",
  36805. extra: 1842/1695,
  36806. bottom: 0/1842
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(5 + 5/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(6 + 3/12, "feet"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/silvy/front.svg",
  36826. extra: 1995/1836,
  36827. bottom: 225/2220
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(6 + 3/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(3 + 8/12, "feet"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/rodney/front.svg",
  36847. extra: 1956/1747,
  36848. bottom: 31/1987
  36849. }
  36850. },
  36851. frontDressed: {
  36852. height: math.unit(2.9, "feet"),
  36853. name: "Front (Dressed)",
  36854. image: {
  36855. source: "./media/characters/rodney/front-dressed.svg",
  36856. extra: 1382/1241,
  36857. bottom: 385/1767
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(3 + 8/12, "feet"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(5 + 9/12, "feet"),
  36874. weight: math.unit(194, "lbs"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/zakail-sudekai/front.svg",
  36878. extra: 2696/2533,
  36879. bottom: 248/2944
  36880. }
  36881. },
  36882. maw: {
  36883. height: math.unit(1.35, "feet"),
  36884. name: "Maw",
  36885. image: {
  36886. source: "./media/characters/zakail-sudekai/maw.svg"
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(5 + 9/12, "feet"),
  36894. default: true
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(8 + 4/12, "feet"),
  36903. weight: math.unit(1200, "lb"),
  36904. name: "Front",
  36905. image: {
  36906. source: "./media/characters/eleanor/front.svg",
  36907. extra: 1226/1192,
  36908. bottom: 52/1278
  36909. }
  36910. },
  36911. back: {
  36912. height: math.unit(8 + 4/12, "feet"),
  36913. weight: math.unit(1200, "lb"),
  36914. name: "Back",
  36915. image: {
  36916. source: "./media/characters/eleanor/back.svg",
  36917. extra: 1242/1184,
  36918. bottom: 60/1302
  36919. }
  36920. },
  36921. head: {
  36922. height: math.unit(2.62, "feet"),
  36923. name: "Head",
  36924. image: {
  36925. source: "./media/characters/eleanor/head.svg"
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(8 + 4/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(8 + 4/12, "feet"),
  36942. weight: math.unit(750, "lb"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/tanya/front.svg",
  36946. extra: 1749/1615,
  36947. bottom: 33/1782
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(8 + 4/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(5, "feet"),
  36964. weight: math.unit(225, "lb"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/cindy/front.svg",
  36968. extra: 1320/1250,
  36969. bottom: 42/1362
  36970. }
  36971. },
  36972. frontDressed: {
  36973. height: math.unit(5, "feet"),
  36974. weight: math.unit(225, "lb"),
  36975. name: "Front (Dressed)",
  36976. image: {
  36977. source: "./media/characters/cindy/front-dressed.svg",
  36978. extra: 1320/1250,
  36979. bottom: 42/1362
  36980. }
  36981. },
  36982. back: {
  36983. height: math.unit(5, "feet"),
  36984. weight: math.unit(225, "lb"),
  36985. name: "Back",
  36986. image: {
  36987. source: "./media/characters/cindy/back.svg",
  36988. extra: 1384/1346,
  36989. bottom: 14/1398
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(5, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(6 + 9/12, "feet"),
  37006. weight: math.unit(440, "lb"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/wilbur-owen/front.svg",
  37010. extra: 1575/1448,
  37011. bottom: 72/1647
  37012. }
  37013. },
  37014. back: {
  37015. height: math.unit(6 + 9/12, "feet"),
  37016. weight: math.unit(440, "lb"),
  37017. name: "Back",
  37018. image: {
  37019. source: "./media/characters/wilbur-owen/back.svg",
  37020. extra: 1578/1445,
  37021. bottom: 36/1614
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(6 + 9/12, "feet"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(6 + 5/12, "feet"),
  37038. weight: math.unit(650, "lb"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/keegan/front.svg",
  37042. extra: 2387/2198,
  37043. bottom: 33/2420
  37044. }
  37045. },
  37046. side: {
  37047. height: math.unit(6 + 5/12, "feet"),
  37048. weight: math.unit(650, "lb"),
  37049. name: "Side",
  37050. image: {
  37051. source: "./media/characters/keegan/side.svg",
  37052. extra: 2390/2202,
  37053. bottom: 47/2437
  37054. }
  37055. },
  37056. back: {
  37057. height: math.unit(6 + 5/12, "feet"),
  37058. weight: math.unit(650, "lb"),
  37059. name: "Back",
  37060. image: {
  37061. source: "./media/characters/keegan/back.svg",
  37062. extra: 2418/2268,
  37063. bottom: 15/2433
  37064. }
  37065. },
  37066. frontSfw: {
  37067. height: math.unit(6 + 5/12, "feet"),
  37068. weight: math.unit(650, "lb"),
  37069. name: "Front (SFW)",
  37070. image: {
  37071. source: "./media/characters/keegan/front-sfw.svg",
  37072. extra: 2387/2198,
  37073. bottom: 33/2420
  37074. }
  37075. },
  37076. beans: {
  37077. height: math.unit(1.85, "feet"),
  37078. name: "Beans",
  37079. image: {
  37080. source: "./media/characters/keegan/beans.svg"
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(6 + 5/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(9, "feet"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/colton/front.svg",
  37100. extra: 1589/1326,
  37101. bottom: 139/1728
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(9, "feet"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(2 + 9/12, "feet"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/bora/front.svg",
  37121. extra: 1265/1250,
  37122. bottom: 24/1289
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(2 + 9/12, "feet"),
  37130. default: true
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(8, "feet"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/myu-myu/front.svg",
  37142. extra: 1949/1857,
  37143. bottom: 90/2039
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(8, "feet"),
  37151. default: true
  37152. },
  37153. {
  37154. name: "Big",
  37155. height: math.unit(15, "feet")
  37156. },
  37157. {
  37158. name: "BIG",
  37159. height: math.unit(25, "feet")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37165. {
  37166. side: {
  37167. height: math.unit(7 + 5/12, "feet"),
  37168. weight: math.unit(2800, "lb"),
  37169. name: "Side",
  37170. image: {
  37171. source: "./media/characters/haloren/side.svg",
  37172. extra: 1793/409,
  37173. bottom: 59/1852
  37174. }
  37175. },
  37176. frontPaw: {
  37177. height: math.unit(2.36, "feet"),
  37178. name: "Front paw",
  37179. image: {
  37180. source: "./media/characters/haloren/front-paw.svg"
  37181. }
  37182. },
  37183. hindPaw: {
  37184. height: math.unit(3.18, "feet"),
  37185. name: "Hind paw",
  37186. image: {
  37187. source: "./media/characters/haloren/hind-paw.svg"
  37188. }
  37189. },
  37190. maw: {
  37191. height: math.unit(5.05, "feet"),
  37192. name: "Maw",
  37193. image: {
  37194. source: "./media/characters/haloren/maw.svg"
  37195. }
  37196. },
  37197. dick: {
  37198. height: math.unit(2.90, "feet"),
  37199. name: "Dick",
  37200. image: {
  37201. source: "./media/characters/haloren/dick.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(7 + 5/12, "feet"),
  37209. default: true
  37210. },
  37211. {
  37212. name: "Enhanced",
  37213. height: math.unit(14 + 3/12, "feet")
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(171, "cm"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/kimmy/front.svg",
  37225. extra: 1491/1435,
  37226. bottom: 53/1544
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Small",
  37233. height: math.unit(9, "cm")
  37234. },
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(171, "cm"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(8, "feet"),
  37247. weight: math.unit(300, "lb"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/galeboomer/front.svg",
  37251. extra: 4651/4415,
  37252. bottom: 162/4813
  37253. }
  37254. },
  37255. back: {
  37256. height: math.unit(8, "feet"),
  37257. weight: math.unit(300, "lb"),
  37258. name: "Back",
  37259. image: {
  37260. source: "./media/characters/galeboomer/back.svg",
  37261. extra: 4544/4314,
  37262. bottom: 16/4560
  37263. }
  37264. },
  37265. frontAlt: {
  37266. height: math.unit(8, "feet"),
  37267. weight: math.unit(300, "lb"),
  37268. name: "Front (Alt)",
  37269. image: {
  37270. source: "./media/characters/galeboomer/front-alt.svg",
  37271. extra: 4458/4228,
  37272. bottom: 68/4526
  37273. }
  37274. },
  37275. maw: {
  37276. height: math.unit(1.2, "feet"),
  37277. name: "Maw",
  37278. image: {
  37279. source: "./media/characters/galeboomer/maw.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(8, "feet"),
  37287. default: true
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(5 + 9/12, "feet"),
  37296. weight: math.unit(120, "lb"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/chyr/front.svg",
  37300. extra: 1323/1254,
  37301. bottom: 63/1386
  37302. }
  37303. },
  37304. back: {
  37305. height: math.unit(5 + 9/12, "feet"),
  37306. weight: math.unit(120, "lb"),
  37307. name: "Back",
  37308. image: {
  37309. source: "./media/characters/chyr/back.svg",
  37310. extra: 1323/1252,
  37311. bottom: 48/1371
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(5 + 9/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(7, "feet"),
  37328. weight: math.unit(310, "lb"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/solarus/front.svg",
  37332. extra: 2415/2021,
  37333. bottom: 103/2518
  37334. }
  37335. },
  37336. back: {
  37337. height: math.unit(7, "feet"),
  37338. weight: math.unit(310, "lb"),
  37339. name: "Back",
  37340. image: {
  37341. source: "./media/characters/solarus/back.svg",
  37342. extra: 2463/2089,
  37343. bottom: 79/2542
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(7, "feet"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(16, "feet"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37363. extra: 1844/1780,
  37364. bottom: 58/1902
  37365. }
  37366. },
  37367. winterCoat: {
  37368. height: math.unit(16, "feet"),
  37369. name: "Winter Coat",
  37370. image: {
  37371. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37372. extra: 1807/1775,
  37373. bottom: 69/1876
  37374. }
  37375. },
  37376. },
  37377. [
  37378. {
  37379. name: "Normal",
  37380. height: math.unit(16, "feet"),
  37381. default: true
  37382. },
  37383. {
  37384. name: "Chicago Size",
  37385. height: math.unit(560, "feet")
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(11 + 6/12, "feet"),
  37394. weight: math.unit(1366, "lb"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/lexor/front.svg",
  37398. extra: 1560/1481,
  37399. bottom: 211/1771
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(11 + 6/12, "feet"),
  37404. weight: math.unit(1366, "lb"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/lexor/back.svg",
  37408. extra: 1614/1533,
  37409. bottom: 76/1690
  37410. }
  37411. },
  37412. maw: {
  37413. height: math.unit(3, "feet"),
  37414. name: "Maw",
  37415. image: {
  37416. source: "./media/characters/lexor/maw.svg"
  37417. }
  37418. },
  37419. dick: {
  37420. height: math.unit(2.59, "feet"),
  37421. name: "Dick",
  37422. image: {
  37423. source: "./media/characters/lexor/dick.svg"
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(11 + 6/12, "feet"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(5 + 8/12, "feet"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/magnum/front.svg",
  37443. extra: 942/855,
  37444. bottom: 26/968
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(5 + 8/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(18 + 4/12, "feet"),
  37461. weight: math.unit(1500, "kg"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/solas-sharpsman/front.svg",
  37465. extra: 1698/1589,
  37466. bottom: 0/1698
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(18 + 4/12, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(5 + 5/12, "feet"),
  37483. weight: math.unit(180, "lb"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/october/front.svg",
  37487. extra: 1800/1650,
  37488. bottom: 0/1800
  37489. }
  37490. },
  37491. frontNsfw: {
  37492. height: math.unit(5 + 5/12, "feet"),
  37493. weight: math.unit(180, "lb"),
  37494. name: "Front (NSFW)",
  37495. image: {
  37496. source: "./media/characters/october/front-nsfw.svg",
  37497. extra: 1392/1307,
  37498. bottom: 42/1434
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(5 + 5/12, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(8 + 6/12, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/essynkardi/front.svg",
  37518. extra: 1914/1846,
  37519. bottom: 22/1936
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(8 + 6/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(6 + 6/12, "feet"),
  37536. weight: math.unit(7, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/icky/front.svg",
  37540. extra: 813/782,
  37541. bottom: 66/879
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(6 + 6/12, "feet"),
  37546. weight: math.unit(7, "lb"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/icky/back.svg",
  37550. extra: 754/735,
  37551. bottom: 56/810
  37552. }
  37553. },
  37554. },
  37555. [
  37556. {
  37557. name: "Normal",
  37558. height: math.unit(6 + 6/12, "feet"),
  37559. default: true
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(15, "feet"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/rojas/front.svg",
  37571. extra: 1462/1408,
  37572. bottom: 95/1557
  37573. }
  37574. },
  37575. back: {
  37576. height: math.unit(15, "feet"),
  37577. name: "Back",
  37578. image: {
  37579. source: "./media/characters/rojas/back.svg",
  37580. extra: 1023/954,
  37581. bottom: 28/1051
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Normal",
  37588. height: math.unit(15, "feet"),
  37589. default: true
  37590. },
  37591. ]
  37592. ))
  37593. characterMakers.push(() => makeCharacter(
  37594. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37595. {
  37596. frontHuman: {
  37597. height: math.unit(5 + 7/12, "feet"),
  37598. name: "Front (Human)",
  37599. image: {
  37600. source: "./media/characters/alek-dryagan/front-human.svg",
  37601. extra: 1687/1667,
  37602. bottom: 69/1756
  37603. }
  37604. },
  37605. backHuman: {
  37606. height: math.unit(5 + 7/12, "feet"),
  37607. name: "Back (Human)",
  37608. image: {
  37609. source: "./media/characters/alek-dryagan/back-human.svg",
  37610. extra: 1670/1649,
  37611. bottom: 65/1735
  37612. }
  37613. },
  37614. frontDemi: {
  37615. height: math.unit(65, "feet"),
  37616. name: "Front (Demi)",
  37617. image: {
  37618. source: "./media/characters/alek-dryagan/front-demi.svg",
  37619. extra: 1669/1642,
  37620. bottom: 49/1718
  37621. }
  37622. },
  37623. backDemi: {
  37624. height: math.unit(65, "feet"),
  37625. name: "Back (Demi)",
  37626. image: {
  37627. source: "./media/characters/alek-dryagan/back-demi.svg",
  37628. extra: 1658/1637,
  37629. bottom: 40/1698
  37630. }
  37631. },
  37632. mawHuman: {
  37633. height: math.unit(0.3, "feet"),
  37634. name: "Maw (Human)",
  37635. image: {
  37636. source: "./media/characters/alek-dryagan/maw-human.svg"
  37637. }
  37638. },
  37639. mawDemi: {
  37640. height: math.unit(3.8, "feet"),
  37641. name: "Maw (Demi)",
  37642. image: {
  37643. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(5 + 7/12, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37657. {
  37658. frontHuman: {
  37659. height: math.unit(5 + 2/12, "feet"),
  37660. name: "Front (Human)",
  37661. image: {
  37662. source: "./media/characters/gen/front-human.svg",
  37663. extra: 1627/1538,
  37664. bottom: 71/1698
  37665. }
  37666. },
  37667. backHuman: {
  37668. height: math.unit(5 + 2/12, "feet"),
  37669. name: "Back (Human)",
  37670. image: {
  37671. source: "./media/characters/gen/back-human.svg",
  37672. extra: 1638/1548,
  37673. bottom: 69/1707
  37674. }
  37675. },
  37676. frontDemi: {
  37677. height: math.unit(5 + 2/12, "feet"),
  37678. name: "Front (Demi)",
  37679. image: {
  37680. source: "./media/characters/gen/front-demi.svg",
  37681. extra: 1627/1538,
  37682. bottom: 71/1698
  37683. }
  37684. },
  37685. backDemi: {
  37686. height: math.unit(5 + 2/12, "feet"),
  37687. name: "Back (Demi)",
  37688. image: {
  37689. source: "./media/characters/gen/back-demi.svg",
  37690. extra: 1638/1548,
  37691. bottom: 69/1707
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(5 + 2/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37705. {
  37706. frontImp: {
  37707. height: math.unit(1 + 11/12, "feet"),
  37708. name: "Front (Imp)",
  37709. image: {
  37710. source: "./media/characters/max-kobold/front-imp.svg",
  37711. extra: 1238/1134,
  37712. bottom: 81/1319
  37713. }
  37714. },
  37715. backImp: {
  37716. height: math.unit(1 + 11/12, "feet"),
  37717. name: "Back (Imp)",
  37718. image: {
  37719. source: "./media/characters/max-kobold/back-imp.svg",
  37720. extra: 1334/1175,
  37721. bottom: 34/1368
  37722. }
  37723. },
  37724. frontDemi: {
  37725. height: math.unit(5 + 9/12, "feet"),
  37726. name: "Front (Demi)",
  37727. image: {
  37728. source: "./media/characters/max-kobold/front-demi.svg",
  37729. extra: 1715/1685,
  37730. bottom: 54/1769
  37731. }
  37732. },
  37733. backDemi: {
  37734. height: math.unit(5 + 9/12, "feet"),
  37735. name: "Back (Demi)",
  37736. image: {
  37737. source: "./media/characters/max-kobold/back-demi.svg",
  37738. extra: 1752/1729,
  37739. bottom: 41/1793
  37740. }
  37741. },
  37742. handImp: {
  37743. height: math.unit(0.45, "feet"),
  37744. name: "Hand (Imp)",
  37745. image: {
  37746. source: "./media/characters/max-kobold/hand.svg"
  37747. }
  37748. },
  37749. pawImp: {
  37750. height: math.unit(0.46, "feet"),
  37751. name: "Paw (Imp)",
  37752. image: {
  37753. source: "./media/characters/max-kobold/paw.svg"
  37754. }
  37755. },
  37756. handDemi: {
  37757. height: math.unit(0.80, "feet"),
  37758. name: "Hand (Demi)",
  37759. image: {
  37760. source: "./media/characters/max-kobold/hand.svg"
  37761. }
  37762. },
  37763. pawDemi: {
  37764. height: math.unit(1.1, "feet"),
  37765. name: "Paw (Demi)",
  37766. image: {
  37767. source: "./media/characters/max-kobold/paw.svg"
  37768. }
  37769. },
  37770. headImp: {
  37771. height: math.unit(1.33, "feet"),
  37772. name: "Head (Imp)",
  37773. image: {
  37774. source: "./media/characters/max-kobold/head-imp.svg"
  37775. }
  37776. },
  37777. mawImp: {
  37778. height: math.unit(0.75, "feet"),
  37779. name: "Maw (Imp)",
  37780. image: {
  37781. source: "./media/characters/max-kobold/maw-imp.svg"
  37782. }
  37783. },
  37784. mawDemi: {
  37785. height: math.unit(0.42, "feet"),
  37786. name: "Maw (Demi)",
  37787. image: {
  37788. source: "./media/characters/max-kobold/maw-demi.svg"
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(1 + 11/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(7 + 5/12, "feet"),
  37805. name: "Front",
  37806. image: {
  37807. source: "./media/characters/carbon/front.svg",
  37808. extra: 1754/1689,
  37809. bottom: 65/1819
  37810. }
  37811. },
  37812. back: {
  37813. height: math.unit(7 + 5/12, "feet"),
  37814. name: "Back",
  37815. image: {
  37816. source: "./media/characters/carbon/back.svg",
  37817. extra: 1762/1695,
  37818. bottom: 24/1786
  37819. }
  37820. },
  37821. frontGigantamax: {
  37822. height: math.unit(150, "feet"),
  37823. name: "Front (Gigantamax)",
  37824. image: {
  37825. source: "./media/characters/carbon/front-gigantamax.svg",
  37826. extra: 1826/1669,
  37827. bottom: 59/1885
  37828. }
  37829. },
  37830. backGigantamax: {
  37831. height: math.unit(150, "feet"),
  37832. name: "Back (Gigantamax)",
  37833. image: {
  37834. source: "./media/characters/carbon/back-gigantamax.svg",
  37835. extra: 1796/1653,
  37836. bottom: 53/1849
  37837. }
  37838. },
  37839. maw: {
  37840. height: math.unit(0.48, "feet"),
  37841. name: "Maw",
  37842. image: {
  37843. source: "./media/characters/carbon/maw.svg"
  37844. }
  37845. },
  37846. mawGigantamax: {
  37847. height: math.unit(7.5, "feet"),
  37848. name: "Maw (Gigantamax)",
  37849. image: {
  37850. source: "./media/characters/carbon/maw-gigantamax.svg"
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(7 + 5/12, "feet"),
  37858. default: true
  37859. },
  37860. ]
  37861. ))
  37862. characterMakers.push(() => makeCharacter(
  37863. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37864. {
  37865. front: {
  37866. height: math.unit(6, "feet"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/maverick/front.svg",
  37870. extra: 1672/1661,
  37871. bottom: 85/1757
  37872. }
  37873. },
  37874. back: {
  37875. height: math.unit(6, "feet"),
  37876. name: "Back",
  37877. image: {
  37878. source: "./media/characters/maverick/back.svg",
  37879. extra: 1642/1631,
  37880. bottom: 38/1680
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(6, "feet"),
  37888. default: true
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(15, "feet"),
  37897. weight: math.unit(615, "lb"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/grockle/front.svg",
  37901. extra: 1535/1427,
  37902. bottom: 56/1591
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(15, "feet"),
  37910. default: true
  37911. },
  37912. {
  37913. name: "Large",
  37914. height: math.unit(150, "feet")
  37915. },
  37916. {
  37917. name: "Macro",
  37918. height: math.unit(1876, "feet")
  37919. },
  37920. {
  37921. name: "Mega Macro",
  37922. height: math.unit(121940, "feet")
  37923. },
  37924. {
  37925. name: "Giga Macro",
  37926. height: math.unit(750, "km")
  37927. },
  37928. {
  37929. name: "Tera Macro",
  37930. height: math.unit(750000, "km")
  37931. },
  37932. {
  37933. name: "Galactic",
  37934. height: math.unit(1.4e5, "km")
  37935. },
  37936. {
  37937. name: "Godlike",
  37938. height: math.unit(9.8e280, "galaxies")
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(11, "meters"),
  37947. weight: math.unit(20, "tonnes"),
  37948. name: "Front",
  37949. image: {
  37950. source: "./media/characters/alistair/front.svg",
  37951. extra: 1265/1009,
  37952. bottom: 93/1358
  37953. }
  37954. },
  37955. },
  37956. [
  37957. {
  37958. name: "Normal",
  37959. height: math.unit(11, "meters"),
  37960. default: true
  37961. },
  37962. ]
  37963. ))
  37964. characterMakers.push(() => makeCharacter(
  37965. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37966. {
  37967. front: {
  37968. height: math.unit(5 + 8/12, "feet"),
  37969. name: "Front",
  37970. image: {
  37971. source: "./media/characters/haruka/front.svg",
  37972. extra: 2012/1952,
  37973. bottom: 0/2012
  37974. }
  37975. },
  37976. },
  37977. [
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(5 + 8/12, "feet"),
  37981. default: true
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37987. {
  37988. back: {
  37989. height: math.unit(9, "feet"),
  37990. name: "Back",
  37991. image: {
  37992. source: "./media/characters/vivian-sylveon/back.svg",
  37993. extra: 1853/1714,
  37994. bottom: 0/1853
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Normal",
  38001. height: math.unit(9, "feet"),
  38002. default: true
  38003. },
  38004. {
  38005. name: "Macro",
  38006. height: math.unit(500, "feet")
  38007. },
  38008. {
  38009. name: "Megamacro",
  38010. height: math.unit(600, "miles")
  38011. },
  38012. {
  38013. name: "Gigamacro",
  38014. height: math.unit(30000, "miles")
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38020. {
  38021. anthro: {
  38022. height: math.unit(5 + 10/12, "feet"),
  38023. weight: math.unit(100, "lb"),
  38024. name: "Anthro",
  38025. image: {
  38026. source: "./media/characters/daiki/anthro.svg",
  38027. extra: 1115/1027,
  38028. bottom: 69/1184
  38029. }
  38030. },
  38031. feral: {
  38032. height: math.unit(200, "feet"),
  38033. name: "Feral",
  38034. image: {
  38035. source: "./media/characters/daiki/feral.svg",
  38036. extra: 1256/313,
  38037. bottom: 39/1295
  38038. }
  38039. },
  38040. feralHead: {
  38041. height: math.unit(171, "feet"),
  38042. name: "Feral Head",
  38043. image: {
  38044. source: "./media/characters/daiki/feral-head.svg"
  38045. }
  38046. },
  38047. manaDragon: {
  38048. height: math.unit(170, "meters"),
  38049. name: "Mana-dragon",
  38050. image: {
  38051. source: "./media/characters/daiki/mana-dragon.svg",
  38052. extra: 763/420,
  38053. bottom: 97/860
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(5 + 10/12, "feet"),
  38061. default: true
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38067. {
  38068. fullyEquippedFront: {
  38069. height: math.unit(3 + 1/12, "feet"),
  38070. weight: math.unit(24, "lb"),
  38071. name: "Fully Equipped (Front)",
  38072. image: {
  38073. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38074. extra: 687/605,
  38075. bottom: 18/705
  38076. }
  38077. },
  38078. fullyEquippedBack: {
  38079. height: math.unit(3 + 1/12, "feet"),
  38080. weight: math.unit(24, "lb"),
  38081. name: "Fully Equipped (Back)",
  38082. image: {
  38083. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38084. extra: 689/590,
  38085. bottom: 18/707
  38086. }
  38087. },
  38088. dailyWear: {
  38089. height: math.unit(3 + 1/12, "feet"),
  38090. weight: math.unit(24, "lb"),
  38091. name: "Daily Wear",
  38092. image: {
  38093. source: "./media/characters/tea-spot/daily-wear.svg",
  38094. extra: 701/620,
  38095. bottom: 21/722
  38096. }
  38097. },
  38098. maidWork: {
  38099. height: math.unit(3 + 1/12, "feet"),
  38100. weight: math.unit(24, "lb"),
  38101. name: "Maid Work",
  38102. image: {
  38103. source: "./media/characters/tea-spot/maid-work.svg",
  38104. extra: 693/609,
  38105. bottom: 15/708
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(3 + 1/12, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(175, "cm"),
  38122. weight: math.unit(75, "kg"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/chee/front.svg",
  38126. extra: 1796/1740,
  38127. bottom: 40/1836
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Micro-Micro",
  38134. height: math.unit(1, "nm")
  38135. },
  38136. {
  38137. name: "Micro-erst",
  38138. height: math.unit(1, "micrometer")
  38139. },
  38140. {
  38141. name: "Micro-er",
  38142. height: math.unit(1, "cm")
  38143. },
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(175, "cm"),
  38147. default: true
  38148. },
  38149. {
  38150. name: "Macro",
  38151. height: math.unit(100, "m")
  38152. },
  38153. {
  38154. name: "Macro-er",
  38155. height: math.unit(1, "km")
  38156. },
  38157. {
  38158. name: "Macro-erst",
  38159. height: math.unit(10, "km")
  38160. },
  38161. {
  38162. name: "Macro-Macro",
  38163. height: math.unit(100, "km")
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(11 + 9/12, "feet"),
  38172. weight: math.unit(935, "lb"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/kingsley/front.svg",
  38176. extra: 1803/1674,
  38177. bottom: 127/1930
  38178. }
  38179. },
  38180. frontNude: {
  38181. height: math.unit(11 + 9/12, "feet"),
  38182. weight: math.unit(935, "lb"),
  38183. name: "Front (Nude)",
  38184. image: {
  38185. source: "./media/characters/kingsley/front-nude.svg",
  38186. extra: 1803/1674,
  38187. bottom: 127/1930
  38188. }
  38189. },
  38190. },
  38191. [
  38192. {
  38193. name: "Normal",
  38194. height: math.unit(11 + 9/12, "feet"),
  38195. default: true
  38196. },
  38197. ]
  38198. ))
  38199. characterMakers.push(() => makeCharacter(
  38200. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38201. {
  38202. side: {
  38203. height: math.unit(9, "feet"),
  38204. name: "Side",
  38205. image: {
  38206. source: "./media/characters/rymel/side.svg",
  38207. extra: 792/469,
  38208. bottom: 121/913
  38209. }
  38210. },
  38211. maw: {
  38212. height: math.unit(2.4, "meters"),
  38213. name: "Maw",
  38214. image: {
  38215. source: "./media/characters/rymel/maw.svg"
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "House Drake",
  38222. height: math.unit(2, "feet")
  38223. },
  38224. {
  38225. name: "Reduced",
  38226. height: math.unit(4.5, "feet")
  38227. },
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(9, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(1.74, "meters"),
  38240. weight: math.unit(55, "kg"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/rubus/front.svg",
  38244. extra: 1894/1742,
  38245. bottom: 44/1938
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(1.74, "meters"),
  38253. default: true
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38259. {
  38260. front: {
  38261. height: math.unit(5 + 2/12, "feet"),
  38262. weight: math.unit(112, "lb"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/cassie-kingston/front.svg",
  38266. extra: 1438/1390,
  38267. bottom: 47/1485
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Normal",
  38274. height: math.unit(5 + 2/12, "feet"),
  38275. default: true
  38276. },
  38277. {
  38278. name: "Macro",
  38279. height: math.unit(128, "feet")
  38280. },
  38281. {
  38282. name: "Megamacro",
  38283. height: math.unit(2.56, "miles")
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38289. {
  38290. front: {
  38291. height: math.unit(7, "feet"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/fox/front.svg",
  38295. extra: 1798/1703,
  38296. bottom: 55/1853
  38297. }
  38298. },
  38299. back: {
  38300. height: math.unit(7, "feet"),
  38301. name: "Back",
  38302. image: {
  38303. source: "./media/characters/fox/back.svg",
  38304. extra: 1748/1649,
  38305. bottom: 32/1780
  38306. }
  38307. },
  38308. head: {
  38309. height: math.unit(1.95, "feet"),
  38310. name: "Head",
  38311. image: {
  38312. source: "./media/characters/fox/head.svg"
  38313. }
  38314. },
  38315. dick: {
  38316. height: math.unit(1.33, "feet"),
  38317. name: "Dick",
  38318. image: {
  38319. source: "./media/characters/fox/dick.svg"
  38320. }
  38321. },
  38322. foot: {
  38323. height: math.unit(1, "feet"),
  38324. name: "Foot",
  38325. image: {
  38326. source: "./media/characters/fox/foot.svg"
  38327. }
  38328. },
  38329. paw: {
  38330. height: math.unit(0.92, "feet"),
  38331. name: "Paw",
  38332. image: {
  38333. source: "./media/characters/fox/paw.svg"
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Small",
  38340. height: math.unit(3, "inches")
  38341. },
  38342. {
  38343. name: "\"Realistic\"",
  38344. height: math.unit(7, "feet")
  38345. },
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(150, "feet"),
  38349. default: true
  38350. },
  38351. {
  38352. name: "BIG",
  38353. height: math.unit(1200, "feet")
  38354. },
  38355. {
  38356. name: "👀",
  38357. height: math.unit(5, "miles")
  38358. },
  38359. {
  38360. name: "👀👀👀",
  38361. height: math.unit(64, "miles")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(625, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/asonja-rossa/front.svg",
  38373. extra: 1833/1686,
  38374. bottom: 24/1857
  38375. }
  38376. },
  38377. back: {
  38378. height: math.unit(625, "feet"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/asonja-rossa/back.svg",
  38382. extra: 1852/1753,
  38383. bottom: 26/1878
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Macro",
  38390. height: math.unit(625, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38397. {
  38398. side: {
  38399. height: math.unit(8, "feet"),
  38400. name: "Side",
  38401. image: {
  38402. source: "./media/characters/rezukii/side.svg",
  38403. extra: 979/542,
  38404. bottom: 87/1066
  38405. }
  38406. },
  38407. sitting: {
  38408. height: math.unit(14.6, "feet"),
  38409. name: "Sitting",
  38410. image: {
  38411. source: "./media/characters/rezukii/sitting.svg",
  38412. extra: 1023/813,
  38413. bottom: 45/1068
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Tiny",
  38420. height: math.unit(2, "feet")
  38421. },
  38422. {
  38423. name: "Smol",
  38424. height: math.unit(4, "feet")
  38425. },
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(8, "feet"),
  38429. default: true
  38430. },
  38431. {
  38432. name: "Big",
  38433. height: math.unit(12, "feet")
  38434. },
  38435. {
  38436. name: "Macro",
  38437. height: math.unit(30, "feet")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(14, "feet"),
  38446. weight: math.unit(9.5, "tonnes"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/dawnheart/front.svg",
  38450. extra: 2792/2675,
  38451. bottom: 64/2856
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(14, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38465. {
  38466. front: {
  38467. height: math.unit(1.7, "m"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/gladi/front.svg",
  38471. extra: 1460/1362,
  38472. bottom: 19/1479
  38473. }
  38474. },
  38475. back: {
  38476. height: math.unit(1.7, "m"),
  38477. name: "Back",
  38478. image: {
  38479. source: "./media/characters/gladi/back.svg",
  38480. extra: 1459/1357,
  38481. bottom: 12/1471
  38482. }
  38483. },
  38484. feral: {
  38485. height: math.unit(2.05, "m"),
  38486. name: "Feral",
  38487. image: {
  38488. source: "./media/characters/gladi/feral.svg",
  38489. extra: 821/557,
  38490. bottom: 91/912
  38491. }
  38492. },
  38493. },
  38494. [
  38495. {
  38496. name: "Shortest",
  38497. height: math.unit(70, "cm")
  38498. },
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(1.7, "m")
  38502. },
  38503. {
  38504. name: "Macro",
  38505. height: math.unit(10, "m"),
  38506. default: true
  38507. },
  38508. {
  38509. name: "Tallest",
  38510. height: math.unit(200, "m")
  38511. },
  38512. ]
  38513. ))
  38514. characterMakers.push(() => makeCharacter(
  38515. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38516. {
  38517. front: {
  38518. height: math.unit(5 + 7/12, "feet"),
  38519. weight: math.unit(2, "tons"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/erdno/front.svg",
  38523. extra: 1234/1129,
  38524. bottom: 35/1269
  38525. }
  38526. },
  38527. angled: {
  38528. height: math.unit(5 + 7/12, "feet"),
  38529. weight: math.unit(2, "tons"),
  38530. name: "Angled",
  38531. image: {
  38532. source: "./media/characters/erdno/angled.svg",
  38533. extra: 1185/1139,
  38534. bottom: 36/1221
  38535. }
  38536. },
  38537. side: {
  38538. height: math.unit(5 + 7/12, "feet"),
  38539. weight: math.unit(2, "tons"),
  38540. name: "Side",
  38541. image: {
  38542. source: "./media/characters/erdno/side.svg",
  38543. extra: 1191/1144,
  38544. bottom: 40/1231
  38545. }
  38546. },
  38547. back: {
  38548. height: math.unit(5 + 7/12, "feet"),
  38549. weight: math.unit(2, "tons"),
  38550. name: "Back",
  38551. image: {
  38552. source: "./media/characters/erdno/back.svg",
  38553. extra: 1202/1146,
  38554. bottom: 17/1219
  38555. }
  38556. },
  38557. frontNsfw: {
  38558. height: math.unit(5 + 7/12, "feet"),
  38559. weight: math.unit(2, "tons"),
  38560. name: "Front (NSFW)",
  38561. image: {
  38562. source: "./media/characters/erdno/front-nsfw.svg",
  38563. extra: 1234/1129,
  38564. bottom: 35/1269
  38565. }
  38566. },
  38567. angledNsfw: {
  38568. height: math.unit(5 + 7/12, "feet"),
  38569. weight: math.unit(2, "tons"),
  38570. name: "Angled (NSFW)",
  38571. image: {
  38572. source: "./media/characters/erdno/angled-nsfw.svg",
  38573. extra: 1185/1139,
  38574. bottom: 36/1221
  38575. }
  38576. },
  38577. sideNsfw: {
  38578. height: math.unit(5 + 7/12, "feet"),
  38579. weight: math.unit(2, "tons"),
  38580. name: "Side (NSFW)",
  38581. image: {
  38582. source: "./media/characters/erdno/side-nsfw.svg",
  38583. extra: 1191/1144,
  38584. bottom: 40/1231
  38585. }
  38586. },
  38587. backNsfw: {
  38588. height: math.unit(5 + 7/12, "feet"),
  38589. weight: math.unit(2, "tons"),
  38590. name: "Back (NSFW)",
  38591. image: {
  38592. source: "./media/characters/erdno/back-nsfw.svg",
  38593. extra: 1202/1146,
  38594. bottom: 17/1219
  38595. }
  38596. },
  38597. frontHyper: {
  38598. height: math.unit(5 + 7/12, "feet"),
  38599. weight: math.unit(2, "tons"),
  38600. name: "Front (Hyper)",
  38601. image: {
  38602. source: "./media/characters/erdno/front-hyper.svg",
  38603. extra: 1298/1136,
  38604. bottom: 35/1333
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(5 + 7/12, "feet"),
  38612. default: true
  38613. },
  38614. {
  38615. name: "Big",
  38616. height: math.unit(5.7, "meters")
  38617. },
  38618. {
  38619. name: "Macro",
  38620. height: math.unit(5.7, "kilometers")
  38621. },
  38622. {
  38623. name: "Megamacro",
  38624. height: math.unit(5.7, "earths")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(5 + 10/12, "feet"),
  38633. weight: math.unit(150, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/jamie/front.svg",
  38637. extra: 1908/1768,
  38638. bottom: 19/1927
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Minimum",
  38645. height: math.unit(2, "cm")
  38646. },
  38647. {
  38648. name: "Micro",
  38649. height: math.unit(3, "inches")
  38650. },
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(5 + 10/12, "feet"),
  38654. default: true
  38655. },
  38656. {
  38657. name: "Macro",
  38658. height: math.unit(150, "feet")
  38659. },
  38660. {
  38661. name: "Megamacro",
  38662. height: math.unit(10000, "m")
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(2, "meters"),
  38671. weight: math.unit(100, "kg"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/shiron/front.svg",
  38675. extra: 2103/1985,
  38676. bottom: 98/2201
  38677. }
  38678. },
  38679. back: {
  38680. height: math.unit(2, "meters"),
  38681. weight: math.unit(100, "kg"),
  38682. name: "Back",
  38683. image: {
  38684. source: "./media/characters/shiron/back.svg",
  38685. extra: 2110/2015,
  38686. bottom: 89/2199
  38687. }
  38688. },
  38689. hand: {
  38690. height: math.unit(0.96, "feet"),
  38691. name: "Hand",
  38692. image: {
  38693. source: "./media/characters/shiron/hand.svg"
  38694. }
  38695. },
  38696. foot: {
  38697. height: math.unit(1.464, "feet"),
  38698. name: "Foot",
  38699. image: {
  38700. source: "./media/characters/shiron/foot.svg"
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(2, "meters")
  38708. },
  38709. {
  38710. name: "Macro",
  38711. height: math.unit(500, "meters"),
  38712. default: true
  38713. },
  38714. {
  38715. name: "Megamacro",
  38716. height: math.unit(20, "km")
  38717. },
  38718. ]
  38719. ))
  38720. characterMakers.push(() => makeCharacter(
  38721. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38722. {
  38723. front: {
  38724. height: math.unit(6, "feet"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/sam/front.svg",
  38728. extra: 849/826,
  38729. bottom: 19/868
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(6, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(8 + 4/12, "feet"),
  38746. weight: math.unit(122, "kg"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/namori-kurogawa/front.svg",
  38750. extra: 1894/1576,
  38751. bottom: 34/1928
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(8 + 4/12, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(9, "feet"),
  38768. weight: math.unit(621, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/unmru/front.svg",
  38772. extra: 1853/1747,
  38773. bottom: 73/1926
  38774. }
  38775. },
  38776. side: {
  38777. height: math.unit(9, "feet"),
  38778. weight: math.unit(621, "lb"),
  38779. name: "Side",
  38780. image: {
  38781. source: "./media/characters/unmru/side.svg",
  38782. extra: 1781/1671,
  38783. bottom: 127/1908
  38784. }
  38785. },
  38786. back: {
  38787. height: math.unit(9, "feet"),
  38788. weight: math.unit(621, "lb"),
  38789. name: "Back",
  38790. image: {
  38791. source: "./media/characters/unmru/back.svg",
  38792. extra: 1894/1765,
  38793. bottom: 75/1969
  38794. }
  38795. },
  38796. dick: {
  38797. height: math.unit(3, "feet"),
  38798. weight: math.unit(35, "lb"),
  38799. name: "Dick",
  38800. image: {
  38801. source: "./media/characters/unmru/dick.svg"
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(9, "feet")
  38809. },
  38810. {
  38811. name: "Natural",
  38812. height: math.unit(27, "feet"),
  38813. default: true
  38814. },
  38815. {
  38816. name: "Giant",
  38817. height: math.unit(90, "feet")
  38818. },
  38819. {
  38820. name: "Kaiju",
  38821. height: math.unit(270, "feet")
  38822. },
  38823. {
  38824. name: "Macro",
  38825. height: math.unit(900, "feet")
  38826. },
  38827. {
  38828. name: "Macro+",
  38829. height: math.unit(2700, "feet")
  38830. },
  38831. {
  38832. name: "Megamacro",
  38833. height: math.unit(9000, "feet")
  38834. },
  38835. {
  38836. name: "City-Crushing",
  38837. height: math.unit(27000, "feet")
  38838. },
  38839. {
  38840. name: "Mountain-Mashing",
  38841. height: math.unit(90000, "feet")
  38842. },
  38843. {
  38844. name: "Earth-Eclipsing",
  38845. height: math.unit(2.7e8, "feet")
  38846. },
  38847. {
  38848. name: "Sol-Swallowing",
  38849. height: math.unit(9e10, "feet")
  38850. },
  38851. {
  38852. name: "Majoris-Munching",
  38853. height: math.unit(2.7e13, "feet")
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38859. {
  38860. front: {
  38861. height: math.unit(1, "inch"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/squeaks-mouse/front.svg",
  38865. extra: 352/308,
  38866. bottom: 25/377
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Micro",
  38873. height: math.unit(1, "inch"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38880. {
  38881. side: {
  38882. height: math.unit(35, "feet"),
  38883. name: "Side",
  38884. image: {
  38885. source: "./media/characters/sayko/side.svg",
  38886. extra: 1697/1021,
  38887. bottom: 82/1779
  38888. }
  38889. },
  38890. head: {
  38891. height: math.unit(16, "feet"),
  38892. name: "Head",
  38893. image: {
  38894. source: "./media/characters/sayko/head.svg"
  38895. }
  38896. },
  38897. forepaw: {
  38898. height: math.unit(7.85, "feet"),
  38899. name: "Forepaw",
  38900. image: {
  38901. source: "./media/characters/sayko/forepaw.svg"
  38902. }
  38903. },
  38904. hindpaw: {
  38905. height: math.unit(8.8, "feet"),
  38906. name: "Hindpaw",
  38907. image: {
  38908. source: "./media/characters/sayko/hindpaw.svg"
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(35, "feet"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Colossus",
  38920. height: math.unit(100, "meters")
  38921. },
  38922. {
  38923. name: "\"Small\" Deity",
  38924. height: math.unit(1, "km")
  38925. },
  38926. {
  38927. name: "\"Large\" Deity",
  38928. height: math.unit(15, "km")
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(6, "feet"),
  38937. weight: math.unit(250, "lb"),
  38938. name: "Front",
  38939. image: {
  38940. source: "./media/characters/mukiro/front.svg",
  38941. extra: 1368/1310,
  38942. bottom: 34/1402
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(6, "feet"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(12 + 4/12, "feet"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38962. extra: 1346/1311,
  38963. bottom: 65/1411
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Base",
  38970. height: math.unit(12 + 4/12, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(150, "feet")
  38976. },
  38977. {
  38978. name: "Mega",
  38979. height: math.unit(2, "miles")
  38980. },
  38981. {
  38982. name: "Demi God",
  38983. height: math.unit(4, "AU")
  38984. },
  38985. {
  38986. name: "God Size",
  38987. height: math.unit(1, "universe")
  38988. },
  38989. ]
  38990. ))
  38991. characterMakers.push(() => makeCharacter(
  38992. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38993. {
  38994. front: {
  38995. height: math.unit(3 + 3/12, "feet"),
  38996. weight: math.unit(88, "lb"),
  38997. name: "Front",
  38998. image: {
  38999. source: "./media/characters/trey/front.svg",
  39000. extra: 1815/1509,
  39001. bottom: 60/1875
  39002. }
  39003. },
  39004. },
  39005. [
  39006. {
  39007. name: "Normal",
  39008. height: math.unit(3 + 3/12, "feet"),
  39009. default: true
  39010. },
  39011. ]
  39012. ))
  39013. characterMakers.push(() => makeCharacter(
  39014. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39015. {
  39016. front: {
  39017. height: math.unit(4, "meters"),
  39018. name: "Front",
  39019. image: {
  39020. source: "./media/characters/adelonda/front.svg",
  39021. extra: 1077/982,
  39022. bottom: 39/1116
  39023. }
  39024. },
  39025. back: {
  39026. height: math.unit(4, "meters"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/adelonda/back.svg",
  39030. extra: 1105/1003,
  39031. bottom: 25/1130
  39032. }
  39033. },
  39034. feral: {
  39035. height: math.unit(40/1.5, "meters"),
  39036. name: "Feral",
  39037. image: {
  39038. source: "./media/characters/adelonda/feral.svg",
  39039. extra: 597/271,
  39040. bottom: 387/984
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(4, "meters"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(8 + 4/12, "feet"),
  39057. weight: math.unit(670, "lb"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/acadiel/front.svg",
  39061. extra: 1901/1595,
  39062. bottom: 142/2043
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(8 + 4/12, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Macro",
  39074. height: math.unit(200, "feet")
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(6 + 2/12, "feet"),
  39083. weight: math.unit(185, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/kayne-ein/front.svg",
  39087. extra: 1780/1560,
  39088. bottom: 81/1861
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(6 + 2/12, "feet"),
  39096. default: true
  39097. },
  39098. {
  39099. name: "Transformation Stage",
  39100. height: math.unit(15, "feet")
  39101. },
  39102. {
  39103. name: "Macro",
  39104. height: math.unit(150, "feet")
  39105. },
  39106. {
  39107. name: "Earth's Shadow",
  39108. height: math.unit(6200, "miles")
  39109. },
  39110. {
  39111. name: "Universal Demon",
  39112. height: math.unit(28e9, "parsecs")
  39113. },
  39114. {
  39115. name: "Multiverse God",
  39116. height: math.unit(3, "multiverses")
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(5 + 5/12, "feet"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/fawn/front.svg",
  39128. extra: 1873/1731,
  39129. bottom: 95/1968
  39130. }
  39131. },
  39132. back: {
  39133. height: math.unit(5 + 5/12, "feet"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/fawn/back.svg",
  39137. extra: 1813/1700,
  39138. bottom: 14/1827
  39139. }
  39140. },
  39141. hoof: {
  39142. height: math.unit(1.45, "feet"),
  39143. name: "Hoof",
  39144. image: {
  39145. source: "./media/characters/fawn/hoof.svg"
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(5 + 5/12, "feet"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(2 + 5/12, "feet"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/orion/front.svg",
  39165. extra: 1366/1304,
  39166. bottom: 43/1409
  39167. }
  39168. },
  39169. paw: {
  39170. height: math.unit(0.52, "feet"),
  39171. name: "Paw",
  39172. image: {
  39173. source: "./media/characters/orion/paw.svg"
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(2 + 5/12, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(5 + 10/12, "feet"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/vera/front.svg",
  39193. extra: 1680/1575,
  39194. bottom: 49/1729
  39195. }
  39196. },
  39197. back: {
  39198. height: math.unit(5 + 10/12, "feet"),
  39199. name: "Back",
  39200. image: {
  39201. source: "./media/characters/vera/back.svg",
  39202. extra: 1700/1588,
  39203. bottom: 18/1718
  39204. }
  39205. },
  39206. arcanine: {
  39207. height: math.unit(6 + 8/12, "feet"),
  39208. name: "Arcanine",
  39209. image: {
  39210. source: "./media/characters/vera/arcanine.svg",
  39211. extra: 1590/1511,
  39212. bottom: 71/1661
  39213. }
  39214. },
  39215. maw: {
  39216. height: math.unit(0.82, "feet"),
  39217. name: "Maw",
  39218. image: {
  39219. source: "./media/characters/vera/maw.svg"
  39220. }
  39221. },
  39222. mawArcanine: {
  39223. height: math.unit(0.97, "feet"),
  39224. name: "Maw (Arcanine)",
  39225. image: {
  39226. source: "./media/characters/vera/maw-arcanine.svg"
  39227. }
  39228. },
  39229. paw: {
  39230. height: math.unit(0.75, "feet"),
  39231. name: "Paw",
  39232. image: {
  39233. source: "./media/characters/vera/paw.svg"
  39234. }
  39235. },
  39236. pawprint: {
  39237. height: math.unit(0.52, "feet"),
  39238. name: "Pawprint",
  39239. image: {
  39240. source: "./media/characters/vera/pawprint.svg"
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Normal",
  39247. height: math.unit(5 + 10/12, "feet"),
  39248. default: true
  39249. },
  39250. {
  39251. name: "Macro",
  39252. height: math.unit(75, "feet")
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(4, "feet"),
  39261. weight: math.unit(40, "lb"),
  39262. name: "Front",
  39263. image: {
  39264. source: "./media/characters/orvan-rabbit/front.svg",
  39265. extra: 1896/1642,
  39266. bottom: 29/1925
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(4, "feet"),
  39274. default: true
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39280. {
  39281. front: {
  39282. height: math.unit(6, "feet"),
  39283. weight: math.unit(168, "lb"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/lisa/front.svg",
  39287. extra: 2065/1867,
  39288. bottom: 46/2111
  39289. }
  39290. },
  39291. back: {
  39292. height: math.unit(6, "feet"),
  39293. weight: math.unit(168, "lb"),
  39294. name: "Back",
  39295. image: {
  39296. source: "./media/characters/lisa/back.svg",
  39297. extra: 1982/1838,
  39298. bottom: 29/2011
  39299. }
  39300. },
  39301. maw: {
  39302. height: math.unit(0.81, "feet"),
  39303. name: "Maw",
  39304. image: {
  39305. source: "./media/characters/lisa/maw.svg"
  39306. }
  39307. },
  39308. paw: {
  39309. height: math.unit(0.9, "feet"),
  39310. name: "Paw",
  39311. image: {
  39312. source: "./media/characters/lisa/paw.svg"
  39313. }
  39314. },
  39315. caribousune: {
  39316. height: math.unit(7 + 2/12, "feet"),
  39317. weight: math.unit(268, "lb"),
  39318. name: "Caribousune",
  39319. image: {
  39320. source: "./media/characters/lisa/caribousune.svg",
  39321. extra: 1843/1633,
  39322. bottom: 29/1872
  39323. }
  39324. },
  39325. frontCaribousune: {
  39326. height: math.unit(7 + 2/12, "feet"),
  39327. weight: math.unit(268, "lb"),
  39328. name: "Front (Caribousune)",
  39329. image: {
  39330. source: "./media/characters/lisa/front-caribousune.svg",
  39331. extra: 1818/1638,
  39332. bottom: 52/1870
  39333. }
  39334. },
  39335. sideCaribousune: {
  39336. height: math.unit(7 + 2/12, "feet"),
  39337. weight: math.unit(268, "lb"),
  39338. name: "Side (Caribousune)",
  39339. image: {
  39340. source: "./media/characters/lisa/side-caribousune.svg",
  39341. extra: 1851/1635,
  39342. bottom: 16/1867
  39343. }
  39344. },
  39345. backCaribousune: {
  39346. height: math.unit(7 + 2/12, "feet"),
  39347. weight: math.unit(268, "lb"),
  39348. name: "Back (Caribousune)",
  39349. image: {
  39350. source: "./media/characters/lisa/back-caribousune.svg",
  39351. extra: 1801/1604,
  39352. bottom: 44/1845
  39353. }
  39354. },
  39355. caribou: {
  39356. height: math.unit(7 + 2/12, "feet"),
  39357. weight: math.unit(268, "lb"),
  39358. name: "Caribou",
  39359. image: {
  39360. source: "./media/characters/lisa/caribou.svg",
  39361. extra: 1843/1633,
  39362. bottom: 29/1872
  39363. }
  39364. },
  39365. frontCaribou: {
  39366. height: math.unit(7 + 2/12, "feet"),
  39367. weight: math.unit(268, "lb"),
  39368. name: "Front (Caribou)",
  39369. image: {
  39370. source: "./media/characters/lisa/front-caribou.svg",
  39371. extra: 1818/1638,
  39372. bottom: 52/1870
  39373. }
  39374. },
  39375. sideCaribou: {
  39376. height: math.unit(7 + 2/12, "feet"),
  39377. weight: math.unit(268, "lb"),
  39378. name: "Side (Caribou)",
  39379. image: {
  39380. source: "./media/characters/lisa/side-caribou.svg",
  39381. extra: 1851/1635,
  39382. bottom: 16/1867
  39383. }
  39384. },
  39385. backCaribou: {
  39386. height: math.unit(7 + 2/12, "feet"),
  39387. weight: math.unit(268, "lb"),
  39388. name: "Back (Caribou)",
  39389. image: {
  39390. source: "./media/characters/lisa/back-caribou.svg",
  39391. extra: 1801/1604,
  39392. bottom: 44/1845
  39393. }
  39394. },
  39395. mawCaribou: {
  39396. height: math.unit(1.45, "feet"),
  39397. name: "Maw (Caribou)",
  39398. image: {
  39399. source: "./media/characters/lisa/maw-caribou.svg"
  39400. }
  39401. },
  39402. mawCaribousune: {
  39403. height: math.unit(1.45, "feet"),
  39404. name: "Maw (Caribousune)",
  39405. image: {
  39406. source: "./media/characters/lisa/maw-caribousune.svg"
  39407. }
  39408. },
  39409. pawCaribousune: {
  39410. height: math.unit(1.61, "feet"),
  39411. name: "Paw (Caribou)",
  39412. image: {
  39413. source: "./media/characters/lisa/paw-caribousune.svg"
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(6, "feet")
  39421. },
  39422. {
  39423. name: "God Size",
  39424. height: math.unit(72, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Towering",
  39429. height: math.unit(288, "feet")
  39430. },
  39431. {
  39432. name: "City Size",
  39433. height: math.unit(48384, "feet")
  39434. },
  39435. {
  39436. name: "Continental",
  39437. height: math.unit(4200, "miles")
  39438. },
  39439. {
  39440. name: "Planet Eater",
  39441. height: math.unit(42, "earths")
  39442. },
  39443. {
  39444. name: "Star Swallower",
  39445. height: math.unit(42, "solarradii")
  39446. },
  39447. {
  39448. name: "System Swallower",
  39449. height: math.unit(84000, "AU")
  39450. },
  39451. {
  39452. name: "Galaxy Gobbler",
  39453. height: math.unit(42, "galaxies")
  39454. },
  39455. {
  39456. name: "Universe Devourer",
  39457. height: math.unit(42, "universes")
  39458. },
  39459. {
  39460. name: "Multiverse Muncher",
  39461. height: math.unit(42, "multiverses")
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39467. {
  39468. front: {
  39469. height: math.unit(36, "feet"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/shadow-rat/front.svg",
  39473. extra: 1845/1758,
  39474. bottom: 83/1928
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(36, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39488. {
  39489. side: {
  39490. height: math.unit(8, "feet"),
  39491. weight: math.unit(2630, "lb"),
  39492. name: "Side",
  39493. image: {
  39494. source: "./media/characters/torallia/side.svg",
  39495. extra: 2164/2021,
  39496. bottom: 371/2535
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Mortal Interaction",
  39503. height: math.unit(8, "feet")
  39504. },
  39505. {
  39506. name: "Natural",
  39507. height: math.unit(24, "feet"),
  39508. default: true
  39509. },
  39510. {
  39511. name: "Giant",
  39512. height: math.unit(80, "feet")
  39513. },
  39514. {
  39515. name: "Kaiju",
  39516. height: math.unit(240, "feet")
  39517. },
  39518. {
  39519. name: "Macro",
  39520. height: math.unit(800, "feet")
  39521. },
  39522. {
  39523. name: "Macro+",
  39524. height: math.unit(2400, "feet")
  39525. },
  39526. {
  39527. name: "Macro++",
  39528. height: math.unit(8000, "feet")
  39529. },
  39530. {
  39531. name: "City-Crushing",
  39532. height: math.unit(24000, "feet")
  39533. },
  39534. {
  39535. name: "Mountain-Mashing",
  39536. height: math.unit(80000, "feet")
  39537. },
  39538. {
  39539. name: "District Demolisher",
  39540. height: math.unit(240000, "feet")
  39541. },
  39542. {
  39543. name: "Tri-County Terror",
  39544. height: math.unit(800000, "feet")
  39545. },
  39546. {
  39547. name: "State Smasher",
  39548. height: math.unit(2.4e6, "feet")
  39549. },
  39550. {
  39551. name: "Nation Nemesis",
  39552. height: math.unit(8e6, "feet")
  39553. },
  39554. {
  39555. name: "Continent Cracker",
  39556. height: math.unit(2.4e7, "feet")
  39557. },
  39558. {
  39559. name: "Planet-Pillaging",
  39560. height: math.unit(8e7, "feet")
  39561. },
  39562. {
  39563. name: "Earth-Eclipsing",
  39564. height: math.unit(2.4e8, "feet")
  39565. },
  39566. {
  39567. name: "Jovian-Jostling",
  39568. height: math.unit(8e8, "feet")
  39569. },
  39570. {
  39571. name: "Gas Giant Gulper",
  39572. height: math.unit(2.4e9, "feet")
  39573. },
  39574. {
  39575. name: "Astral Annihilator",
  39576. height: math.unit(8e9, "feet")
  39577. },
  39578. {
  39579. name: "Celestial Conqueror",
  39580. height: math.unit(2.4e10, "feet")
  39581. },
  39582. {
  39583. name: "Sol-Swallowing",
  39584. height: math.unit(8e10, "feet")
  39585. },
  39586. {
  39587. name: "Hunter of the Heavens",
  39588. height: math.unit(2.4e13, "feet")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(6 + 8/12, "feet"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/rebecca-pawlson/front.svg",
  39600. extra: 1737/1596,
  39601. bottom: 107/1844
  39602. }
  39603. },
  39604. back: {
  39605. height: math.unit(6 + 8/12, "feet"),
  39606. name: "Back",
  39607. image: {
  39608. source: "./media/characters/rebecca-pawlson/back.svg",
  39609. extra: 1702/1523,
  39610. bottom: 86/1788
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(6 + 8/12, "feet")
  39618. },
  39619. {
  39620. name: "Mini Macro",
  39621. height: math.unit(10, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(100, "feet")
  39627. },
  39628. {
  39629. name: "Mega Macro",
  39630. height: math.unit(2500, "feet")
  39631. },
  39632. {
  39633. name: "Giga Macro",
  39634. height: math.unit(50, "miles")
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(7 + 6/12, "feet"),
  39643. weight: math.unit(600, "lb"),
  39644. name: "Front",
  39645. image: {
  39646. source: "./media/characters/moxie-nova/front.svg",
  39647. extra: 1734/1652,
  39648. bottom: 41/1775
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(7 + 6/12, "feet"),
  39656. default: true
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39662. {
  39663. goat: {
  39664. height: math.unit(4, "feet"),
  39665. weight: math.unit(180, "lb"),
  39666. name: "Goat",
  39667. image: {
  39668. source: "./media/characters/tiffany/goat.svg",
  39669. extra: 1845/1595,
  39670. bottom: 106/1951
  39671. }
  39672. },
  39673. front: {
  39674. height: math.unit(5, "feet"),
  39675. weight: math.unit(150, "lb"),
  39676. name: "Foxcoon",
  39677. image: {
  39678. source: "./media/characters/tiffany/foxcoon.svg",
  39679. extra: 1941/1845,
  39680. bottom: 58/1999
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(5, "feet"),
  39688. default: true
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(8, "feet"),
  39697. weight: math.unit(300, "lb"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/raxinath/front.svg",
  39701. extra: 1407/1309,
  39702. bottom: 39/1446
  39703. }
  39704. },
  39705. back: {
  39706. height: math.unit(8, "feet"),
  39707. weight: math.unit(300, "lb"),
  39708. name: "Back",
  39709. image: {
  39710. source: "./media/characters/raxinath/back.svg",
  39711. extra: 1405/1315,
  39712. bottom: 9/1414
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Speck",
  39719. height: math.unit(0.5, "nm")
  39720. },
  39721. {
  39722. name: "Micro",
  39723. height: math.unit(3, "inches")
  39724. },
  39725. {
  39726. name: "Kobold",
  39727. height: math.unit(3, "feet")
  39728. },
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(8, "feet"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Giant",
  39736. height: math.unit(50, "feet")
  39737. },
  39738. {
  39739. name: "Macro",
  39740. height: math.unit(1000, "feet")
  39741. },
  39742. {
  39743. name: "Megamacro",
  39744. height: math.unit(1, "mile")
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(10, "feet"),
  39753. weight: math.unit(1442, "lb"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/mal-dragon/front.svg",
  39757. extra: 1515/1444,
  39758. bottom: 113/1628
  39759. }
  39760. },
  39761. back: {
  39762. height: math.unit(10, "feet"),
  39763. weight: math.unit(1442, "lb"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/mal-dragon/back.svg",
  39767. extra: 1527/1434,
  39768. bottom: 25/1552
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Mortal Interaction",
  39775. height: math.unit(10, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "Large",
  39780. height: math.unit(30, "feet")
  39781. },
  39782. {
  39783. name: "Kaiju",
  39784. height: math.unit(300, "feet")
  39785. },
  39786. {
  39787. name: "Megamacro",
  39788. height: math.unit(10000, "feet")
  39789. },
  39790. {
  39791. name: "Continent Cracker",
  39792. height: math.unit(30000000, "feet")
  39793. },
  39794. {
  39795. name: "Sol-Swallowing",
  39796. height: math.unit(1e11, "feet")
  39797. },
  39798. {
  39799. name: "Light Universal",
  39800. height: math.unit(5, "universes")
  39801. },
  39802. {
  39803. name: "Universe Atoms",
  39804. height: math.unit(1.829e9, "universes")
  39805. },
  39806. {
  39807. name: "Light Multiversal",
  39808. height: math.unit(5, "multiverses")
  39809. },
  39810. {
  39811. name: "Multiverse Atoms",
  39812. height: math.unit(1.829e9, "multiverses")
  39813. },
  39814. {
  39815. name: "Fabric of Time",
  39816. height: math.unit(1e262, "multiverses")
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(9, "feet"),
  39825. weight: math.unit(1050, "lb"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/tabitha/front.svg",
  39829. extra: 2083/1994,
  39830. bottom: 68/2151
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Baseline",
  39837. height: math.unit(9, "feet"),
  39838. default: true
  39839. },
  39840. {
  39841. name: "Giant",
  39842. height: math.unit(90, "feet")
  39843. },
  39844. {
  39845. name: "Macro",
  39846. height: math.unit(900, "feet")
  39847. },
  39848. {
  39849. name: "Megamacro",
  39850. height: math.unit(9000, "feet")
  39851. },
  39852. {
  39853. name: "City-Crushing",
  39854. height: math.unit(27000, "feet")
  39855. },
  39856. {
  39857. name: "Mountain-Mashing",
  39858. height: math.unit(90000, "feet")
  39859. },
  39860. {
  39861. name: "Nation Nemesis",
  39862. height: math.unit(9e6, "feet")
  39863. },
  39864. {
  39865. name: "Continent Cracker",
  39866. height: math.unit(27e6, "feet")
  39867. },
  39868. {
  39869. name: "Earth-Eclipsing",
  39870. height: math.unit(2.7e8, "feet")
  39871. },
  39872. {
  39873. name: "Gas Giant Gulper",
  39874. height: math.unit(2.7e9, "feet")
  39875. },
  39876. {
  39877. name: "Sol-Swallowing",
  39878. height: math.unit(9e10, "feet")
  39879. },
  39880. {
  39881. name: "Galaxy Gulper",
  39882. height: math.unit(9, "galaxies")
  39883. },
  39884. {
  39885. name: "Cosmos Churner",
  39886. height: math.unit(9, "universes")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(160, "cm"),
  39895. weight: math.unit(55, "kg"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/tow/front.svg",
  39899. extra: 1751/1722,
  39900. bottom: 74/1825
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Norm",
  39907. height: math.unit(160, "cm")
  39908. },
  39909. {
  39910. name: "Casual",
  39911. height: math.unit(3200, "m"),
  39912. default: true
  39913. },
  39914. {
  39915. name: "Show-Off",
  39916. height: math.unit(160, "km")
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39922. {
  39923. front: {
  39924. height: math.unit(7 + 11/12, "feet"),
  39925. weight: math.unit(342.8, "lb"),
  39926. name: "Front",
  39927. image: {
  39928. source: "./media/characters/vivian-orca-dragon/front.svg",
  39929. extra: 1890/1865,
  39930. bottom: 28/1918
  39931. }
  39932. },
  39933. },
  39934. [
  39935. {
  39936. name: "Micro",
  39937. height: math.unit(5, "inches")
  39938. },
  39939. {
  39940. name: "Normal",
  39941. height: math.unit(7 + 11/12, "feet"),
  39942. default: true
  39943. },
  39944. {
  39945. name: "Macro",
  39946. height: math.unit(395 + 7/12, "feet")
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39952. {
  39953. side: {
  39954. height: math.unit(10, "feet"),
  39955. weight: math.unit(1442, "lb"),
  39956. name: "Side",
  39957. image: {
  39958. source: "./media/characters/lotherakon/side.svg",
  39959. extra: 1604/1497,
  39960. bottom: 89/1693
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Mortal Interaction",
  39967. height: math.unit(10, "feet")
  39968. },
  39969. {
  39970. name: "Large",
  39971. height: math.unit(30, "feet"),
  39972. default: true
  39973. },
  39974. {
  39975. name: "Giant",
  39976. height: math.unit(100, "feet")
  39977. },
  39978. {
  39979. name: "Kaiju",
  39980. height: math.unit(300, "feet")
  39981. },
  39982. {
  39983. name: "Macro",
  39984. height: math.unit(1000, "feet")
  39985. },
  39986. {
  39987. name: "Macro+",
  39988. height: math.unit(3000, "feet")
  39989. },
  39990. {
  39991. name: "Megamacro",
  39992. height: math.unit(10000, "feet")
  39993. },
  39994. {
  39995. name: "City-Crushing",
  39996. height: math.unit(30000, "feet")
  39997. },
  39998. {
  39999. name: "Continent Cracker",
  40000. height: math.unit(30e6, "feet")
  40001. },
  40002. {
  40003. name: "Earth Eclipsing",
  40004. height: math.unit(3e8, "feet")
  40005. },
  40006. {
  40007. name: "Gas Giant Gulper",
  40008. height: math.unit(3e9, "feet")
  40009. },
  40010. {
  40011. name: "Sol-Swallowing",
  40012. height: math.unit(1e11, "feet")
  40013. },
  40014. {
  40015. name: "System Swallower",
  40016. height: math.unit(3e14, "feet")
  40017. },
  40018. {
  40019. name: "Galaxy Gulper",
  40020. height: math.unit(10, "galaxies")
  40021. },
  40022. {
  40023. name: "Light Universal",
  40024. height: math.unit(5, "universes")
  40025. },
  40026. {
  40027. name: "Universe Palm",
  40028. height: math.unit(20, "universes")
  40029. },
  40030. {
  40031. name: "Light Multiversal",
  40032. height: math.unit(5, "multiverses")
  40033. },
  40034. {
  40035. name: "Multiverse Palm",
  40036. height: math.unit(20, "multiverses")
  40037. },
  40038. {
  40039. name: "Inferno Incarnate",
  40040. height: math.unit(1e7, "multiverses")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(8, "feet"),
  40049. weight: math.unit(1200, "lb"),
  40050. name: "Front",
  40051. image: {
  40052. source: "./media/characters/malithee/front.svg",
  40053. extra: 1675/1640,
  40054. bottom: 162/1837
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Mortal Interaction",
  40061. height: math.unit(8, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Large",
  40066. height: math.unit(24, "feet")
  40067. },
  40068. {
  40069. name: "Kaiju",
  40070. height: math.unit(240, "feet")
  40071. },
  40072. {
  40073. name: "Megamacro",
  40074. height: math.unit(8000, "feet")
  40075. },
  40076. {
  40077. name: "Continent Cracker",
  40078. height: math.unit(24e6, "feet")
  40079. },
  40080. {
  40081. name: "Earth-Eclipsing",
  40082. height: math.unit(2.4e8, "feet")
  40083. },
  40084. {
  40085. name: "Sol-Swallowing",
  40086. height: math.unit(8e10, "feet")
  40087. },
  40088. {
  40089. name: "Galaxy Gulper",
  40090. height: math.unit(8, "galaxies")
  40091. },
  40092. {
  40093. name: "Light Universal",
  40094. height: math.unit(4, "universes")
  40095. },
  40096. {
  40097. name: "Universe Atoms",
  40098. height: math.unit(1.829e9, "universes")
  40099. },
  40100. {
  40101. name: "Light Multiversal",
  40102. height: math.unit(4, "multiverses")
  40103. },
  40104. {
  40105. name: "Multiverse Atoms",
  40106. height: math.unit(1.829e9, "multiverses")
  40107. },
  40108. {
  40109. name: "Nigh-Omnipresence",
  40110. height: math.unit(8e261, "multiverses")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(10, "feet"),
  40119. weight: math.unit(1500, "lb"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/miles-thestia/front.svg",
  40123. extra: 1812/1727,
  40124. bottom: 86/1898
  40125. }
  40126. },
  40127. back: {
  40128. height: math.unit(10, "feet"),
  40129. weight: math.unit(1500, "lb"),
  40130. name: "Back",
  40131. image: {
  40132. source: "./media/characters/miles-thestia/back.svg",
  40133. extra: 1799/1690,
  40134. bottom: 47/1846
  40135. }
  40136. },
  40137. frontNsfw: {
  40138. height: math.unit(10, "feet"),
  40139. weight: math.unit(1500, "lb"),
  40140. name: "Front (NSFW)",
  40141. image: {
  40142. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40143. extra: 1812/1727,
  40144. bottom: 86/1898
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Mini-Macro",
  40151. height: math.unit(10, "feet"),
  40152. default: true
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(25, "feet"),
  40161. name: "Front",
  40162. image: {
  40163. source: "./media/characters/titan-s-wulf/front.svg",
  40164. extra: 1560/1484,
  40165. bottom: 76/1636
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Smallest",
  40172. height: math.unit(25, "feet"),
  40173. default: true
  40174. },
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(200, "feet")
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(200000, "feet")
  40182. },
  40183. {
  40184. name: "Multiversal Original",
  40185. height: math.unit(10000, "multiverses")
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(8, "feet"),
  40194. weight: math.unit(553, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/tawendeh/front.svg",
  40198. extra: 2365/2268,
  40199. bottom: 83/2448
  40200. }
  40201. },
  40202. frontClothed: {
  40203. height: math.unit(8, "feet"),
  40204. weight: math.unit(553, "lb"),
  40205. name: "Front (Clothed)",
  40206. image: {
  40207. source: "./media/characters/tawendeh/front-clothed.svg",
  40208. extra: 2365/2268,
  40209. bottom: 83/2448
  40210. }
  40211. },
  40212. back: {
  40213. height: math.unit(8, "feet"),
  40214. weight: math.unit(553, "lb"),
  40215. name: "Back",
  40216. image: {
  40217. source: "./media/characters/tawendeh/back.svg",
  40218. extra: 2397/2294,
  40219. bottom: 42/2439
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Mortal Interaction",
  40226. height: math.unit(8, "feet"),
  40227. default: true
  40228. },
  40229. {
  40230. name: "Giant",
  40231. height: math.unit(80, "feet")
  40232. },
  40233. {
  40234. name: "Macro",
  40235. height: math.unit(800, "feet")
  40236. },
  40237. {
  40238. name: "Megamacro",
  40239. height: math.unit(8000, "feet")
  40240. },
  40241. {
  40242. name: "City-Crushing",
  40243. height: math.unit(24000, "feet")
  40244. },
  40245. {
  40246. name: "Mountain-Mashing",
  40247. height: math.unit(80000, "feet")
  40248. },
  40249. {
  40250. name: "Nation Nemesis",
  40251. height: math.unit(8e6, "feet")
  40252. },
  40253. {
  40254. name: "Continent Cracker",
  40255. height: math.unit(24e6, "feet")
  40256. },
  40257. {
  40258. name: "Earth-Eclipsing",
  40259. height: math.unit(2.4e8, "feet")
  40260. },
  40261. {
  40262. name: "Gas Giant Gulper",
  40263. height: math.unit(2.4e9, "feet")
  40264. },
  40265. {
  40266. name: "Sol-Swallowing",
  40267. height: math.unit(8e10, "feet")
  40268. },
  40269. {
  40270. name: "Galaxy Gulper",
  40271. height: math.unit(8, "galaxies")
  40272. },
  40273. {
  40274. name: "Cosmos Churner",
  40275. height: math.unit(8, "universes")
  40276. },
  40277. {
  40278. name: "Omnipotent Otter",
  40279. height: math.unit(80, "universes")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(2.6, "meters"),
  40288. weight: math.unit(900, "kg"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/neesha/front.svg",
  40292. extra: 1803/1653,
  40293. bottom: 128/1931
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(2.6, "meters"),
  40301. default: true
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(50, "meters")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(5, "feet"),
  40314. weight: math.unit(185, "lb"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/kyera/front.svg",
  40318. extra: 1875/1790,
  40319. bottom: 96/1971
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(5, "feet"),
  40327. default: true
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(7 + 6/12, "feet"),
  40336. weight: math.unit(540, "lb"),
  40337. name: "Front",
  40338. image: {
  40339. source: "./media/characters/yuko/front.svg",
  40340. extra: 1282/1222,
  40341. bottom: 101/1383
  40342. }
  40343. },
  40344. frontClothed: {
  40345. height: math.unit(7 + 6/12, "feet"),
  40346. weight: math.unit(540, "lb"),
  40347. name: "Front (Clothed)",
  40348. image: {
  40349. source: "./media/characters/yuko/front-clothed.svg",
  40350. extra: 1282/1222,
  40351. bottom: 101/1383
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(7 + 6/12, "feet"),
  40359. default: true
  40360. },
  40361. {
  40362. name: "Macro",
  40363. height: math.unit(26 + 9/12, "feet")
  40364. },
  40365. {
  40366. name: "Megamacro",
  40367. height: math.unit(300, "feet")
  40368. },
  40369. {
  40370. name: "Gigamacro",
  40371. height: math.unit(5000, "feet")
  40372. },
  40373. {
  40374. name: "Planetary",
  40375. height: math.unit(10000, "miles")
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(8 + 2/12, "feet"),
  40384. weight: math.unit(600, "lb"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/deam-nitrel/front.svg",
  40388. extra: 1308/1234,
  40389. bottom: 125/1433
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Normal",
  40396. height: math.unit(8 + 2/12, "feet"),
  40397. default: true
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(6.1, "feet"),
  40406. weight: math.unit(180, "lb"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/skyress/front.svg",
  40410. extra: 1045/915,
  40411. bottom: 28/1073
  40412. }
  40413. },
  40414. maw: {
  40415. height: math.unit(1, "feet"),
  40416. name: "Maw",
  40417. image: {
  40418. source: "./media/characters/skyress/maw.svg"
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(6.1, "feet"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Macro",
  40430. height: math.unit(200, "feet")
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(4 + 2/12, "feet"),
  40439. weight: math.unit(40, "kg"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/amethyst-jones/front.svg",
  40443. extra: 1220/1150,
  40444. bottom: 101/1321
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(4 + 2/12, "feet"),
  40452. default: true
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(1.7, "m"),
  40461. weight: math.unit(135, "lb"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/jade/front.svg",
  40465. extra: 1818/1767,
  40466. bottom: 32/1850
  40467. }
  40468. },
  40469. back: {
  40470. height: math.unit(1.7, "m"),
  40471. weight: math.unit(135, "lb"),
  40472. name: "Back",
  40473. image: {
  40474. source: "./media/characters/jade/back.svg",
  40475. extra: 1869/1809,
  40476. bottom: 35/1904
  40477. }
  40478. },
  40479. hand: {
  40480. height: math.unit(0.24, "m"),
  40481. name: "Hand",
  40482. image: {
  40483. source: "./media/characters/jade/hand.svg"
  40484. }
  40485. },
  40486. foot: {
  40487. height: math.unit(0.263, "m"),
  40488. name: "Foot",
  40489. image: {
  40490. source: "./media/characters/jade/foot.svg"
  40491. }
  40492. },
  40493. dick: {
  40494. height: math.unit(0.47, "m"),
  40495. name: "Dick",
  40496. image: {
  40497. source: "./media/characters/jade/dick.svg"
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Micro",
  40504. height: math.unit(22, "cm")
  40505. },
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(1.7, "m"),
  40509. default: true
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(152, "m")
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40519. {
  40520. front: {
  40521. height: math.unit(100, "miles"),
  40522. weight: math.unit(20000, "tons"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/cookie/front.svg",
  40526. extra: 1125/1070,
  40527. bottom: 30/1155
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Big",
  40534. height: math.unit(50, "feet")
  40535. },
  40536. {
  40537. name: "Macro",
  40538. height: math.unit(100, "miles"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Megamacro",
  40543. height: math.unit(90000, "miles")
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(6, "feet"),
  40552. weight: math.unit(145, "lb"),
  40553. name: "Front",
  40554. image: {
  40555. source: "./media/characters/farzian/front.svg",
  40556. extra: 1902/1693,
  40557. bottom: 108/2010
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Macro",
  40564. height: math.unit(500, "feet"),
  40565. default: true
  40566. },
  40567. ]
  40568. ))
  40569. characterMakers.push(() => makeCharacter(
  40570. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40571. {
  40572. front: {
  40573. height: math.unit(3 + 6/12, "feet"),
  40574. weight: math.unit(50, "lb"),
  40575. name: "Front",
  40576. image: {
  40577. source: "./media/characters/kimberly-tilson/front.svg",
  40578. extra: 1400/1322,
  40579. bottom: 36/1436
  40580. }
  40581. },
  40582. back: {
  40583. height: math.unit(3 + 6/12, "feet"),
  40584. weight: math.unit(50, "lb"),
  40585. name: "Back",
  40586. image: {
  40587. source: "./media/characters/kimberly-tilson/back.svg",
  40588. extra: 1370/1307,
  40589. bottom: 20/1390
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(3 + 6/12, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(1148, "feet"),
  40606. weight: math.unit(34057, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/harthos/front.svg",
  40610. extra: 1391/1339,
  40611. bottom: 13/1404
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Macro",
  40618. height: math.unit(1148, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(15, "feet"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/hypatia/front.svg",
  40631. extra: 1653/1591,
  40632. bottom: 79/1732
  40633. }
  40634. },
  40635. },
  40636. [
  40637. {
  40638. name: "Normal",
  40639. height: math.unit(15, "feet")
  40640. },
  40641. {
  40642. name: "Small",
  40643. height: math.unit(300, "feet")
  40644. },
  40645. {
  40646. name: "Macro",
  40647. height: math.unit(2500, "feet"),
  40648. default: true
  40649. },
  40650. {
  40651. name: "Mega Macro",
  40652. height: math.unit(1500, "miles")
  40653. },
  40654. {
  40655. name: "Giga Macro",
  40656. height: math.unit(1.5e6, "miles")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(6, "feet"),
  40665. weight: math.unit(200, "lb"),
  40666. name: "Front",
  40667. image: {
  40668. source: "./media/characters/wulver/front.svg",
  40669. extra: 1724/1632,
  40670. bottom: 130/1854
  40671. }
  40672. },
  40673. frontNsfw: {
  40674. height: math.unit(6, "feet"),
  40675. weight: math.unit(200, "lb"),
  40676. name: "Front (NSFW)",
  40677. image: {
  40678. source: "./media/characters/wulver/front-nsfw.svg",
  40679. extra: 1724/1632,
  40680. bottom: 130/1854
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Human-Sized",
  40687. height: math.unit(6, "feet")
  40688. },
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(4, "meters"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Large",
  40696. height: math.unit(6, "m")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(7, "feet"),
  40705. name: "Front",
  40706. image: {
  40707. source: "./media/characters/maru/front.svg",
  40708. extra: 1595/1570,
  40709. bottom: 0/1595
  40710. }
  40711. },
  40712. },
  40713. [
  40714. {
  40715. name: "Normal",
  40716. height: math.unit(7, "feet"),
  40717. default: true
  40718. },
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(700, "feet")
  40722. },
  40723. {
  40724. name: "Mega Macro",
  40725. height: math.unit(25, "miles")
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(6, "feet"),
  40734. weight: math.unit(170, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/xenon/front.svg",
  40738. extra: 1376/1305,
  40739. bottom: 56/1432
  40740. }
  40741. },
  40742. back: {
  40743. height: math.unit(6, "feet"),
  40744. weight: math.unit(170, "lb"),
  40745. name: "Back",
  40746. image: {
  40747. source: "./media/characters/xenon/back.svg",
  40748. extra: 1328/1259,
  40749. bottom: 95/1423
  40750. }
  40751. },
  40752. maw: {
  40753. height: math.unit(0.52, "feet"),
  40754. name: "Maw",
  40755. image: {
  40756. source: "./media/characters/xenon/maw.svg"
  40757. }
  40758. },
  40759. hand: {
  40760. height: math.unit(0.82, "feet"),
  40761. name: "Hand",
  40762. image: {
  40763. source: "./media/characters/xenon/hand.svg"
  40764. }
  40765. },
  40766. foot: {
  40767. height: math.unit(1.13, "feet"),
  40768. name: "Foot",
  40769. image: {
  40770. source: "./media/characters/xenon/foot.svg"
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Micro",
  40777. height: math.unit(0.8, "inches")
  40778. },
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(6, "feet")
  40782. },
  40783. {
  40784. name: "Macro",
  40785. height: math.unit(50, "feet"),
  40786. default: true
  40787. },
  40788. {
  40789. name: "Macro+",
  40790. height: math.unit(250, "feet")
  40791. },
  40792. {
  40793. name: "Megamacro",
  40794. height: math.unit(1500, "feet")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(7 + 5/12, "feet"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/zane/front.svg",
  40806. extra: 1260/1203,
  40807. bottom: 94/1354
  40808. }
  40809. },
  40810. back: {
  40811. height: math.unit(5.05, "feet"),
  40812. name: "Back",
  40813. image: {
  40814. source: "./media/characters/zane/back.svg",
  40815. extra: 893/829,
  40816. bottom: 30/923
  40817. }
  40818. },
  40819. werewolf: {
  40820. height: math.unit(11, "feet"),
  40821. name: "Werewolf",
  40822. image: {
  40823. source: "./media/characters/zane/werewolf.svg",
  40824. extra: 1383/1323,
  40825. bottom: 89/1472
  40826. }
  40827. },
  40828. foot: {
  40829. height: math.unit(1.46, "feet"),
  40830. name: "Foot",
  40831. image: {
  40832. source: "./media/characters/zane/foot.svg"
  40833. }
  40834. },
  40835. footFront: {
  40836. height: math.unit(0.784, "feet"),
  40837. name: "Foot (Front)",
  40838. image: {
  40839. source: "./media/characters/zane/foot-front.svg"
  40840. }
  40841. },
  40842. dick: {
  40843. height: math.unit(1.95, "feet"),
  40844. name: "Dick",
  40845. image: {
  40846. source: "./media/characters/zane/dick.svg"
  40847. }
  40848. },
  40849. dickWerewolf: {
  40850. height: math.unit(3.77, "feet"),
  40851. name: "Dick (Werewolf)",
  40852. image: {
  40853. source: "./media/characters/zane/dick.svg"
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(7 + 5/12, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(6 + 2/12, "feet"),
  40870. weight: math.unit(284, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/benni-desparque/front.svg",
  40874. extra: 1353/1126,
  40875. bottom: 69/1422
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Civilian",
  40882. height: math.unit(6 + 2/12, "feet")
  40883. },
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(98, "feet"),
  40887. default: true
  40888. },
  40889. {
  40890. name: "Kaiju Fighter",
  40891. height: math.unit(268, "feet")
  40892. },
  40893. ]
  40894. ))
  40895. characterMakers.push(() => makeCharacter(
  40896. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40897. {
  40898. front: {
  40899. height: math.unit(5, "feet"),
  40900. weight: math.unit(105, "lb"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/maxine/front.svg",
  40904. extra: 1386/1250,
  40905. bottom: 71/1457
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(5, "feet"),
  40913. default: true
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(11 + 7/12, "feet"),
  40922. weight: math.unit(9576, "lb"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/scaly/front.svg",
  40926. extra: 888/867,
  40927. bottom: 36/924
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Normal",
  40934. height: math.unit(11 + 7/12, "feet"),
  40935. default: true
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6 + 3/12, "feet"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/saelria/front.svg",
  40947. extra: 1243/1138,
  40948. bottom: 46/1289
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Micro",
  40955. height: math.unit(6, "inches"),
  40956. },
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(6 + 3/12, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(25, "feet")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(80, "meters"),
  40973. weight: math.unit(7000, "tonnes"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/tef/front.svg",
  40977. extra: 2036/1991,
  40978. bottom: 54/2090
  40979. }
  40980. },
  40981. back: {
  40982. height: math.unit(80, "meters"),
  40983. weight: math.unit(7000, "tonnes"),
  40984. name: "Back",
  40985. image: {
  40986. source: "./media/characters/tef/back.svg",
  40987. extra: 2036/1991,
  40988. bottom: 54/2090
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Macro",
  40995. height: math.unit(80, "meters"),
  40996. default: true
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41002. {
  41003. front: {
  41004. height: math.unit(13, "feet"),
  41005. weight: math.unit(6, "tons"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/rover/front.svg",
  41009. extra: 1233/1156,
  41010. bottom: 50/1283
  41011. }
  41012. },
  41013. back: {
  41014. height: math.unit(13, "feet"),
  41015. weight: math.unit(6, "tons"),
  41016. name: "Back",
  41017. image: {
  41018. source: "./media/characters/rover/back.svg",
  41019. extra: 1327/1258,
  41020. bottom: 39/1366
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Normal",
  41027. height: math.unit(13, "feet"),
  41028. default: true
  41029. },
  41030. {
  41031. name: "Macro",
  41032. height: math.unit(1300, "feet")
  41033. },
  41034. {
  41035. name: "Megamacro",
  41036. height: math.unit(1300, "miles")
  41037. },
  41038. {
  41039. name: "Gigamacro",
  41040. height: math.unit(1300000, "miles")
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(6, "feet"),
  41049. weight: math.unit(150, "lb"),
  41050. name: "Front",
  41051. image: {
  41052. source: "./media/characters/ariz/front.svg",
  41053. extra: 1401/1346,
  41054. bottom: 5/1406
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(10, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(6, "feet"),
  41071. weight: math.unit(140, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/sigrun/front.svg",
  41075. extra: 1418/1359,
  41076. bottom: 27/1445
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Macro",
  41083. height: math.unit(35, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41090. {
  41091. front: {
  41092. height: math.unit(6, "feet"),
  41093. weight: math.unit(150, "lb"),
  41094. name: "Front",
  41095. image: {
  41096. source: "./media/characters/numin/front.svg",
  41097. extra: 1433/1388,
  41098. bottom: 12/1445
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Macro",
  41105. height: math.unit(21.5, "km"),
  41106. default: true
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41112. {
  41113. front: {
  41114. height: math.unit(6, "feet"),
  41115. weight: math.unit(463, "lb"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/melwa/front.svg",
  41119. extra: 1307/1248,
  41120. bottom: 93/1400
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Macro",
  41127. height: math.unit(50, "meters"),
  41128. default: true
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(325, "feet"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/zorkaiju/front.svg",
  41140. extra: 1955/1814,
  41141. bottom: 40/1995
  41142. }
  41143. },
  41144. frontExtended: {
  41145. height: math.unit(325, "feet"),
  41146. name: "Front (Extended)",
  41147. image: {
  41148. source: "./media/characters/zorkaiju/front-extended.svg",
  41149. extra: 1955/1814,
  41150. bottom: 40/1995
  41151. }
  41152. },
  41153. side: {
  41154. height: math.unit(325, "feet"),
  41155. name: "Side",
  41156. image: {
  41157. source: "./media/characters/zorkaiju/side.svg",
  41158. extra: 1495/1396,
  41159. bottom: 17/1512
  41160. }
  41161. },
  41162. sideExtended: {
  41163. height: math.unit(325, "feet"),
  41164. name: "Side (Extended)",
  41165. image: {
  41166. source: "./media/characters/zorkaiju/side-extended.svg",
  41167. extra: 1495/1396,
  41168. bottom: 17/1512
  41169. }
  41170. },
  41171. back: {
  41172. height: math.unit(325, "feet"),
  41173. name: "Back",
  41174. image: {
  41175. source: "./media/characters/zorkaiju/back.svg",
  41176. extra: 1959/1821,
  41177. bottom: 31/1990
  41178. }
  41179. },
  41180. backExtended: {
  41181. height: math.unit(325, "feet"),
  41182. name: "Back (Extended)",
  41183. image: {
  41184. source: "./media/characters/zorkaiju/back-extended.svg",
  41185. extra: 1959/1821,
  41186. bottom: 31/1990
  41187. }
  41188. },
  41189. hand: {
  41190. height: math.unit(58.4, "feet"),
  41191. name: "Hand",
  41192. image: {
  41193. source: "./media/characters/zorkaiju/hand.svg"
  41194. }
  41195. },
  41196. handExtended: {
  41197. height: math.unit(61.4, "feet"),
  41198. name: "Hand (Extended)",
  41199. image: {
  41200. source: "./media/characters/zorkaiju/hand-extended.svg"
  41201. }
  41202. },
  41203. foot: {
  41204. height: math.unit(95, "feet"),
  41205. name: "Foot",
  41206. image: {
  41207. source: "./media/characters/zorkaiju/foot.svg"
  41208. }
  41209. },
  41210. leftArm: {
  41211. height: math.unit(59, "feet"),
  41212. name: "Left Arm",
  41213. image: {
  41214. source: "./media/characters/zorkaiju/left-arm.svg"
  41215. }
  41216. },
  41217. rightArm: {
  41218. height: math.unit(59, "feet"),
  41219. name: "Right Arm",
  41220. image: {
  41221. source: "./media/characters/zorkaiju/right-arm.svg"
  41222. }
  41223. },
  41224. tail: {
  41225. height: math.unit(104, "feet"),
  41226. name: "Tail",
  41227. image: {
  41228. source: "./media/characters/zorkaiju/tail.svg"
  41229. }
  41230. },
  41231. tailExtended: {
  41232. height: math.unit(104, "feet"),
  41233. name: "Tail (Extended)",
  41234. image: {
  41235. source: "./media/characters/zorkaiju/tail-extended.svg"
  41236. }
  41237. },
  41238. tailBottom: {
  41239. height: math.unit(104, "feet"),
  41240. name: "Tail Bottom",
  41241. image: {
  41242. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41243. }
  41244. },
  41245. crystal: {
  41246. height: math.unit(27.54, "feet"),
  41247. name: "Crystal",
  41248. image: {
  41249. source: "./media/characters/zorkaiju/crystal.svg"
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Kaiju",
  41256. height: math.unit(325, "feet"),
  41257. default: true
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(6 + 1/12, "feet"),
  41266. weight: math.unit(115, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/bailey-belfry/front.svg",
  41270. extra: 1240/1121,
  41271. bottom: 101/1341
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(6 + 1/12, "feet"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41285. {
  41286. side: {
  41287. height: math.unit(4, "meters"),
  41288. weight: math.unit(250, "kg"),
  41289. name: "Side",
  41290. image: {
  41291. source: "./media/characters/blacky/side.svg",
  41292. extra: 1027/919,
  41293. bottom: 43/1070
  41294. }
  41295. },
  41296. maw: {
  41297. height: math.unit(1, "meters"),
  41298. name: "Maw",
  41299. image: {
  41300. source: "./media/characters/blacky/maw.svg"
  41301. }
  41302. },
  41303. paw: {
  41304. height: math.unit(1, "meters"),
  41305. name: "Paw",
  41306. image: {
  41307. source: "./media/characters/blacky/paw.svg"
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Normal",
  41314. height: math.unit(4, "meters"),
  41315. default: true
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41321. {
  41322. front: {
  41323. height: math.unit(170, "cm"),
  41324. weight: math.unit(66, "kg"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/thux-ei/front.svg",
  41328. extra: 1109/1011,
  41329. bottom: 8/1117
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Normal",
  41336. height: math.unit(170, "cm"),
  41337. default: true
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(5, "feet"),
  41346. weight: math.unit(120, "lb"),
  41347. name: "Front",
  41348. image: {
  41349. source: "./media/characters/roxanne-voltaire/front.svg",
  41350. extra: 1901/1779,
  41351. bottom: 53/1954
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Normal",
  41358. height: math.unit(5, "feet"),
  41359. default: true
  41360. },
  41361. {
  41362. name: "Giant",
  41363. height: math.unit(50, "feet")
  41364. },
  41365. {
  41366. name: "Titan",
  41367. height: math.unit(500, "feet")
  41368. },
  41369. {
  41370. name: "Macro",
  41371. height: math.unit(5000, "feet")
  41372. },
  41373. {
  41374. name: "Megamacro",
  41375. height: math.unit(50000, "feet")
  41376. },
  41377. {
  41378. name: "Gigamacro",
  41379. height: math.unit(500000, "feet")
  41380. },
  41381. {
  41382. name: "Teramacro",
  41383. height: math.unit(5e6, "feet")
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41389. {
  41390. front: {
  41391. height: math.unit(6 + 2/12, "feet"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/squeaks/front.svg",
  41395. extra: 1823/1768,
  41396. bottom: 138/1961
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Micro",
  41403. height: math.unit(0.5, "inches")
  41404. },
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(6 + 2/12, "feet"),
  41408. default: true
  41409. },
  41410. {
  41411. name: "Macro",
  41412. height: math.unit(600, "feet")
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(1.72, "meters"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/archinger/front.svg",
  41424. extra: 1861/1675,
  41425. bottom: 125/1986
  41426. }
  41427. },
  41428. back: {
  41429. height: math.unit(1.72, "meters"),
  41430. name: "Back",
  41431. image: {
  41432. source: "./media/characters/archinger/back.svg",
  41433. extra: 1844/1701,
  41434. bottom: 104/1948
  41435. }
  41436. },
  41437. cock: {
  41438. height: math.unit(0.59, "feet"),
  41439. name: "Cock",
  41440. image: {
  41441. source: "./media/characters/archinger/cock.svg"
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(1.72, "meters"),
  41449. default: true
  41450. },
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(84, "meters")
  41454. },
  41455. {
  41456. name: "Macro+",
  41457. height: math.unit(112, "meters")
  41458. },
  41459. {
  41460. name: "Macro++",
  41461. height: math.unit(960, "meters")
  41462. },
  41463. {
  41464. name: "Macro+++",
  41465. height: math.unit(4, "km")
  41466. },
  41467. {
  41468. name: "Macro++++",
  41469. height: math.unit(48, "km")
  41470. },
  41471. {
  41472. name: "Macro+++++",
  41473. height: math.unit(4500, "km")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(5 + 5/12, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/alsnapz/front.svg",
  41485. extra: 1157/1065,
  41486. bottom: 42/1199
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(5 + 5/12, "feet"),
  41494. default: true
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41500. {
  41501. side: {
  41502. height: math.unit(3.2, "earths"),
  41503. name: "Side",
  41504. image: {
  41505. source: "./media/characters/mag/side.svg",
  41506. extra: 1331/1008,
  41507. bottom: 52/1383
  41508. }
  41509. },
  41510. wing: {
  41511. height: math.unit(1.94, "earths"),
  41512. name: "Wing",
  41513. image: {
  41514. source: "./media/characters/mag/wing.svg"
  41515. }
  41516. },
  41517. dick: {
  41518. height: math.unit(1.8, "earths"),
  41519. name: "Dick",
  41520. image: {
  41521. source: "./media/characters/mag/dick.svg"
  41522. }
  41523. },
  41524. ass: {
  41525. height: math.unit(1.33, "earths"),
  41526. name: "Ass",
  41527. image: {
  41528. source: "./media/characters/mag/ass.svg"
  41529. }
  41530. },
  41531. head: {
  41532. height: math.unit(1.1, "earths"),
  41533. name: "Head",
  41534. image: {
  41535. source: "./media/characters/mag/head.svg"
  41536. }
  41537. },
  41538. maw: {
  41539. height: math.unit(1.62, "earths"),
  41540. name: "Maw",
  41541. image: {
  41542. source: "./media/characters/mag/maw.svg"
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Small",
  41549. height: math.unit(162, "feet")
  41550. },
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(3.2, "earths"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(512, "feet"),
  41563. weight: math.unit(63509, "tonnes"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/vorrel-harroc/front.svg",
  41567. extra: 1075/1063,
  41568. bottom: 62/1137
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(10, "feet")
  41576. },
  41577. {
  41578. name: "Macro",
  41579. height: math.unit(512, "feet"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Megamacro",
  41584. height: math.unit(256, "miles")
  41585. },
  41586. {
  41587. name: "Gigamacro",
  41588. height: math.unit(4096, "miles")
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41594. {
  41595. side: {
  41596. height: math.unit(50, "feet"),
  41597. name: "Side",
  41598. image: {
  41599. source: "./media/characters/froimar/side.svg",
  41600. extra: 855/638,
  41601. bottom: 99/954
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Macro",
  41608. height: math.unit(50, "feet"),
  41609. default: true
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41615. {
  41616. front: {
  41617. height: math.unit(210, "miles"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/timothy/front.svg",
  41621. extra: 1007/943,
  41622. bottom: 62/1069
  41623. }
  41624. },
  41625. frontSkirt: {
  41626. height: math.unit(210, "miles"),
  41627. name: "Front (Skirt)",
  41628. image: {
  41629. source: "./media/characters/timothy/front-skirt.svg",
  41630. extra: 1007/943,
  41631. bottom: 62/1069
  41632. }
  41633. },
  41634. frontCoat: {
  41635. height: math.unit(210, "miles"),
  41636. name: "Front (Coat)",
  41637. image: {
  41638. source: "./media/characters/timothy/front-coat.svg",
  41639. extra: 1007/943,
  41640. bottom: 62/1069
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(210, "miles"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Megamacro",
  41652. height: math.unit(210000, "miles")
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(188, "feet"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/pyotr/front.svg",
  41664. extra: 1912/1826,
  41665. bottom: 18/1930
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Macro",
  41672. height: math.unit(188, "feet"),
  41673. default: true
  41674. },
  41675. {
  41676. name: "Megamacro",
  41677. height: math.unit(8, "miles")
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41683. {
  41684. side: {
  41685. height: math.unit(10, "feet"),
  41686. weight: math.unit(4500, "lb"),
  41687. name: "Side",
  41688. image: {
  41689. source: "./media/characters/ackart/side.svg",
  41690. extra: 1776/1668,
  41691. bottom: 116/1892
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(10, "feet"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41705. {
  41706. side: {
  41707. height: math.unit(21, "feet"),
  41708. name: "Side",
  41709. image: {
  41710. source: "./media/characters/nolow/side.svg",
  41711. extra: 1484/1434,
  41712. bottom: 85/1569
  41713. }
  41714. },
  41715. sideErect: {
  41716. height: math.unit(21, "feet"),
  41717. name: "Side-erect",
  41718. image: {
  41719. source: "./media/characters/nolow/side-erect.svg",
  41720. extra: 1484/1434,
  41721. bottom: 85/1569
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Regular",
  41728. height: math.unit(12, "feet")
  41729. },
  41730. {
  41731. name: "Big Chee",
  41732. height: math.unit(21, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41739. {
  41740. front: {
  41741. height: math.unit(7, "feet"),
  41742. weight: math.unit(250, "lb"),
  41743. name: "Front",
  41744. image: {
  41745. source: "./media/characters/nines/front.svg",
  41746. extra: 1741/1607,
  41747. bottom: 41/1782
  41748. }
  41749. },
  41750. side: {
  41751. height: math.unit(7, "feet"),
  41752. weight: math.unit(250, "lb"),
  41753. name: "Side",
  41754. image: {
  41755. source: "./media/characters/nines/side.svg",
  41756. extra: 1854/1735,
  41757. bottom: 93/1947
  41758. }
  41759. },
  41760. back: {
  41761. height: math.unit(7, "feet"),
  41762. weight: math.unit(250, "lb"),
  41763. name: "Back",
  41764. image: {
  41765. source: "./media/characters/nines/back.svg",
  41766. extra: 1748/1615,
  41767. bottom: 20/1768
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Megamacro",
  41774. height: math.unit(99, "km"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(5 + 10/12, "feet"),
  41784. weight: math.unit(210, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/zenith/front.svg",
  41788. extra: 1531/1452,
  41789. bottom: 198/1729
  41790. }
  41791. },
  41792. back: {
  41793. height: math.unit(5 + 10/12, "feet"),
  41794. weight: math.unit(210, "lb"),
  41795. name: "Back",
  41796. image: {
  41797. source: "./media/characters/zenith/back.svg",
  41798. extra: 1571/1487,
  41799. bottom: 75/1646
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(5 + 10/12, "feet"),
  41807. default: true
  41808. }
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(4, "feet"),
  41816. weight: math.unit(60, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/jasper/front.svg",
  41820. extra: 1450/1379,
  41821. bottom: 19/1469
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Normal",
  41828. height: math.unit(4, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(6 + 5/12, "feet"),
  41838. weight: math.unit(290, "lb"),
  41839. name: "Front",
  41840. image: {
  41841. source: "./media/characters/tiberius-thyben/front.svg",
  41842. extra: 757/739,
  41843. bottom: 39/796
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Micro",
  41850. height: math.unit(1.5, "inches")
  41851. },
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(6 + 5/12, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(300, "feet")
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(5 + 6/12, "feet"),
  41868. weight: math.unit(60, "kg"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/sabre/front.svg",
  41872. extra: 738/671,
  41873. bottom: 27/765
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Teeny",
  41880. height: math.unit(2, "inches")
  41881. },
  41882. {
  41883. name: "Smol",
  41884. height: math.unit(8, "inches")
  41885. },
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(5 + 6/12, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Mini-Macro",
  41893. height: math.unit(15, "feet")
  41894. },
  41895. {
  41896. name: "Macro",
  41897. height: math.unit(50, "feet")
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(6 + 4/12, "feet"),
  41906. weight: math.unit(170, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/charlie/front.svg",
  41910. extra: 1348/1228,
  41911. bottom: 15/1363
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Macro",
  41918. height: math.unit(1700, "meters"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "MegaMacro",
  41923. height: math.unit(20400, "meters")
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(6 + 3/12, "feet"),
  41932. weight: math.unit(185, "lb"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/susan-grant/front.svg",
  41936. extra: 1351/1327,
  41937. bottom: 26/1377
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Normal",
  41944. height: math.unit(6 + 3/12, "feet"),
  41945. default: true
  41946. },
  41947. {
  41948. name: "Macro",
  41949. height: math.unit(225, "feet")
  41950. },
  41951. {
  41952. name: "Macro+",
  41953. height: math.unit(900, "feet")
  41954. },
  41955. {
  41956. name: "MegaMacro",
  41957. height: math.unit(14400, "feet")
  41958. },
  41959. ]
  41960. ))
  41961. characterMakers.push(() => makeCharacter(
  41962. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41963. {
  41964. front: {
  41965. height: math.unit(5 + 4/12, "feet"),
  41966. weight: math.unit(110, "lb"),
  41967. name: "Front",
  41968. image: {
  41969. source: "./media/characters/axel-isanov/front.svg",
  41970. extra: 1096/1065,
  41971. bottom: 13/1109
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(5 + 4/12, "feet"),
  41979. default: true
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(9, "feet"),
  41988. weight: math.unit(467, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/necahual/front.svg",
  41992. extra: 920/873,
  41993. bottom: 26/946
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(9, "feet"),
  41998. weight: math.unit(467, "lb"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/necahual/back.svg",
  42002. extra: 930/884,
  42003. bottom: 16/946
  42004. }
  42005. },
  42006. frontUnderwear: {
  42007. height: math.unit(9, "feet"),
  42008. weight: math.unit(467, "lb"),
  42009. name: "Front (Underwear)",
  42010. image: {
  42011. source: "./media/characters/necahual/front-underwear.svg",
  42012. extra: 920/873,
  42013. bottom: 26/946
  42014. }
  42015. },
  42016. frontDressed: {
  42017. height: math.unit(9, "feet"),
  42018. weight: math.unit(467, "lb"),
  42019. name: "Front (Dressed)",
  42020. image: {
  42021. source: "./media/characters/necahual/front-dressed.svg",
  42022. extra: 920/873,
  42023. bottom: 26/946
  42024. }
  42025. },
  42026. },
  42027. [
  42028. {
  42029. name: "Comprsesed",
  42030. height: math.unit(9, "feet")
  42031. },
  42032. {
  42033. name: "Natural",
  42034. height: math.unit(15, "feet"),
  42035. default: true
  42036. },
  42037. {
  42038. name: "Boosted",
  42039. height: math.unit(50, "feet")
  42040. },
  42041. {
  42042. name: "Boosted+",
  42043. height: math.unit(150, "feet")
  42044. },
  42045. {
  42046. name: "Max",
  42047. height: math.unit(500, "feet")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(22 + 1/12, "feet"),
  42056. weight: math.unit(3200, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/theo-acacia/front.svg",
  42060. extra: 1796/1741,
  42061. bottom: 83/1879
  42062. }
  42063. },
  42064. frontUnderwear: {
  42065. height: math.unit(22 + 1/12, "feet"),
  42066. weight: math.unit(3200, "lb"),
  42067. name: "Front (Underwear)",
  42068. image: {
  42069. source: "./media/characters/theo-acacia/front-underwear.svg",
  42070. extra: 1796/1741,
  42071. bottom: 83/1879
  42072. }
  42073. },
  42074. frontNude: {
  42075. height: math.unit(22 + 1/12, "feet"),
  42076. weight: math.unit(3200, "lb"),
  42077. name: "Front (Nude)",
  42078. image: {
  42079. source: "./media/characters/theo-acacia/front-nude.svg",
  42080. extra: 1796/1741,
  42081. bottom: 83/1879
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(22 + 1/12, "feet"),
  42089. default: true
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42095. {
  42096. front: {
  42097. height: math.unit(20, "feet"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/astra/front.svg",
  42101. extra: 1850/1714,
  42102. bottom: 106/1956
  42103. }
  42104. },
  42105. frontUndressed: {
  42106. height: math.unit(20, "feet"),
  42107. name: "Front (Undressed)",
  42108. image: {
  42109. source: "./media/characters/astra/front-undressed.svg",
  42110. extra: 1926/1749,
  42111. bottom: 0/1926
  42112. }
  42113. },
  42114. hand: {
  42115. height: math.unit(1.53, "feet"),
  42116. name: "Hand",
  42117. image: {
  42118. source: "./media/characters/astra/hand.svg"
  42119. }
  42120. },
  42121. paw: {
  42122. height: math.unit(1.53, "feet"),
  42123. name: "Paw",
  42124. image: {
  42125. source: "./media/characters/astra/paw.svg"
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Smallest",
  42132. height: math.unit(20, "feet")
  42133. },
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(1e9, "miles"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Larger",
  42141. height: math.unit(5, "multiverses")
  42142. },
  42143. {
  42144. name: "Largest",
  42145. height: math.unit(1e9, "multiverses")
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(8, "feet"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/breanna/front.svg",
  42157. extra: 1912/1632,
  42158. bottom: 33/1945
  42159. }
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Smallest",
  42165. height: math.unit(8, "feet")
  42166. },
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(1, "mile"),
  42170. default: true
  42171. },
  42172. {
  42173. name: "Maximum",
  42174. height: math.unit(1500000000000, "lightyears")
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42180. {
  42181. front: {
  42182. height: math.unit(5 + 11/12, "feet"),
  42183. weight: math.unit(155, "lb"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/cai/front.svg",
  42187. extra: 1823/1702,
  42188. bottom: 32/1855
  42189. }
  42190. },
  42191. back: {
  42192. height: math.unit(5 + 11/12, "feet"),
  42193. weight: math.unit(155, "lb"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/cai/back.svg",
  42197. extra: 1809/1708,
  42198. bottom: 31/1840
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(5 + 11/12, "feet"),
  42206. default: true
  42207. },
  42208. {
  42209. name: "Big",
  42210. height: math.unit(15, "feet")
  42211. },
  42212. {
  42213. name: "Macro",
  42214. height: math.unit(200, "feet")
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(5 + 6/12, "feet"),
  42223. weight: math.unit(160, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42227. extra: 1227/1174,
  42228. bottom: 37/1264
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Macro",
  42235. height: math.unit(444, "meters"),
  42236. default: true
  42237. },
  42238. ]
  42239. ))
  42240. characterMakers.push(() => makeCharacter(
  42241. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42242. {
  42243. front: {
  42244. height: math.unit(18 + 7/12, "feet"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/rex/front.svg",
  42248. extra: 1941/1807,
  42249. bottom: 66/2007
  42250. }
  42251. },
  42252. back: {
  42253. height: math.unit(18 + 7/12, "feet"),
  42254. name: "Back",
  42255. image: {
  42256. source: "./media/characters/rex/back.svg",
  42257. extra: 1937/1822,
  42258. bottom: 42/1979
  42259. }
  42260. },
  42261. boot: {
  42262. height: math.unit(3.45, "feet"),
  42263. name: "Boot",
  42264. image: {
  42265. source: "./media/characters/rex/boot.svg"
  42266. }
  42267. },
  42268. paw: {
  42269. height: math.unit(4.17, "feet"),
  42270. name: "Paw",
  42271. image: {
  42272. source: "./media/characters/rex/paw.svg"
  42273. }
  42274. },
  42275. head: {
  42276. height: math.unit(6.728, "feet"),
  42277. name: "Head",
  42278. image: {
  42279. source: "./media/characters/rex/head.svg"
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Nano",
  42286. height: math.unit(18 + 7/12, "feet")
  42287. },
  42288. {
  42289. name: "Micro",
  42290. height: math.unit(1.5, "megameters")
  42291. },
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(440, "megameters"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Macro",
  42299. height: math.unit(2.5, "gigameters")
  42300. },
  42301. {
  42302. name: "Gigamacro",
  42303. height: math.unit(2, "galaxies")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42309. {
  42310. side: {
  42311. height: math.unit(32, "feet"),
  42312. weight: math.unit(250000, "lb"),
  42313. name: "Side",
  42314. image: {
  42315. source: "./media/characters/silverwing/side.svg",
  42316. extra: 1100/1019,
  42317. bottom: 204/1304
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Normal",
  42324. height: math.unit(32, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(6 + 6/12, "feet"),
  42334. weight: math.unit(350, "lb"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/tristan-hawthorne/front.svg",
  42338. extra: 1159/1124,
  42339. bottom: 37/1196
  42340. },
  42341. form: "labrador",
  42342. default: true
  42343. },
  42344. skunkFront: {
  42345. height: math.unit(4 + 6/12, "feet"),
  42346. weight: math.unit(120, "lb"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42350. extra: 1609/1551,
  42351. bottom: 169/1778
  42352. },
  42353. form: "skunk",
  42354. default: true
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(6 + 6/12, "feet"),
  42361. form: "labrador",
  42362. default: true
  42363. },
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(4 + 6/12, "feet"),
  42367. form: "skunk",
  42368. default: true
  42369. },
  42370. ],
  42371. {
  42372. "labrador": {
  42373. name: "Labrador",
  42374. default: true
  42375. },
  42376. "skunk": {
  42377. name: "Skunk"
  42378. }
  42379. }
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(5 + 11/12, "feet"),
  42386. weight: math.unit(190, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/mizu/front.svg",
  42390. extra: 1988/1788,
  42391. bottom: 14/2002
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(5 + 11/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(1.7, "feet"),
  42408. weight: math.unit(50, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/dechroma/front.svg",
  42412. extra: 1095/859,
  42413. bottom: 64/1159
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(1.7, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42427. {
  42428. side: {
  42429. height: math.unit(30, "feet"),
  42430. name: "Side",
  42431. image: {
  42432. source: "./media/characters/veluren-thanazel/side.svg",
  42433. extra: 1611/633,
  42434. bottom: 118/1729
  42435. }
  42436. },
  42437. front: {
  42438. height: math.unit(30, "feet"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/veluren-thanazel/front.svg",
  42442. extra: 1486/636,
  42443. bottom: 238/1724
  42444. }
  42445. },
  42446. head: {
  42447. height: math.unit(21.4, "feet"),
  42448. name: "Head",
  42449. image: {
  42450. source: "./media/characters/veluren-thanazel/head.svg"
  42451. }
  42452. },
  42453. genitals: {
  42454. height: math.unit(19.4, "feet"),
  42455. name: "Genitals",
  42456. image: {
  42457. source: "./media/characters/veluren-thanazel/genitals.svg"
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Social",
  42464. height: math.unit(6, "feet")
  42465. },
  42466. {
  42467. name: "Play",
  42468. height: math.unit(12, "feet")
  42469. },
  42470. {
  42471. name: "True",
  42472. height: math.unit(30, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(7 + 6/12, "feet"),
  42482. weight: math.unit(500, "kg"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/arcturas/front.svg",
  42486. extra: 1700/1500,
  42487. bottom: 145/1845
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Normal",
  42494. height: math.unit(7 + 6/12, "feet"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42501. {
  42502. side: {
  42503. height: math.unit(6, "feet"),
  42504. weight: math.unit(2, "tons"),
  42505. name: "Side",
  42506. image: {
  42507. source: "./media/characters/vitaen/side.svg",
  42508. extra: 1157/617,
  42509. bottom: 122/1279
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(6, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(19, "feet"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/fia-dreamweaver/front.svg",
  42529. extra: 1630/1504,
  42530. bottom: 25/1655
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(19, "feet"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(5 + 4/12, "feet"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/artan/front.svg",
  42550. extra: 1618/1535,
  42551. bottom: 46/1664
  42552. }
  42553. },
  42554. back: {
  42555. height: math.unit(5 + 4/12, "feet"),
  42556. name: "Back",
  42557. image: {
  42558. source: "./media/characters/artan/back.svg",
  42559. extra: 1618/1543,
  42560. bottom: 31/1649
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Normal",
  42567. height: math.unit(5 + 4/12, "feet"),
  42568. default: true
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42574. {
  42575. side: {
  42576. height: math.unit(182, "cm"),
  42577. weight: math.unit(1000, "lb"),
  42578. name: "Side",
  42579. image: {
  42580. source: "./media/characters/silver-dragon/side.svg",
  42581. extra: 710/287,
  42582. bottom: 88/798
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Normal",
  42589. height: math.unit(182, "cm"),
  42590. default: true
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42596. {
  42597. side: {
  42598. height: math.unit(6 + 6/12, "feet"),
  42599. weight: math.unit(1.5, "tons"),
  42600. name: "Side",
  42601. image: {
  42602. source: "./media/characters/zephyr/side.svg",
  42603. extra: 1433/586,
  42604. bottom: 109/1542
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Normal",
  42611. height: math.unit(6 + 6/12, "feet"),
  42612. default: true
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42618. {
  42619. side: {
  42620. height: math.unit(1, "feet"),
  42621. name: "Side",
  42622. image: {
  42623. source: "./media/characters/vixye/side.svg",
  42624. extra: 632/541,
  42625. bottom: 0/632
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(1, "feet"),
  42633. default: true
  42634. },
  42635. {
  42636. name: "True",
  42637. height: math.unit(1e15, "multiverses")
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(8 + 2/12, "feet"),
  42646. weight: math.unit(650, "lb"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42650. extra: 1174/1137,
  42651. bottom: 82/1256
  42652. }
  42653. },
  42654. back: {
  42655. height: math.unit(8 + 2/12, "feet"),
  42656. weight: math.unit(650, "lb"),
  42657. name: "Back",
  42658. image: {
  42659. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42660. extra: 1204/1157,
  42661. bottom: 46/1250
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Wildform",
  42668. height: math.unit(8 + 2/12, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(18, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/cyphin/front.svg",
  42681. extra: 970/886,
  42682. bottom: 42/1012
  42683. }
  42684. },
  42685. back: {
  42686. height: math.unit(18, "feet"),
  42687. name: "Back",
  42688. image: {
  42689. source: "./media/characters/cyphin/back.svg",
  42690. extra: 1009/894,
  42691. bottom: 24/1033
  42692. }
  42693. },
  42694. head: {
  42695. height: math.unit(5.05, "feet"),
  42696. name: "Head",
  42697. image: {
  42698. source: "./media/characters/cyphin/head.svg"
  42699. }
  42700. },
  42701. tailbud: {
  42702. height: math.unit(5, "feet"),
  42703. name: "Tailbud",
  42704. image: {
  42705. source: "./media/characters/cyphin/tailbud.svg"
  42706. }
  42707. },
  42708. },
  42709. [
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42714. {
  42715. side: {
  42716. height: math.unit(10, "feet"),
  42717. weight: math.unit(6, "tons"),
  42718. name: "Side",
  42719. image: {
  42720. source: "./media/characters/raijin/side.svg",
  42721. extra: 1529/613,
  42722. bottom: 337/1866
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(10, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42736. {
  42737. side: {
  42738. height: math.unit(9, "feet"),
  42739. name: "Side",
  42740. image: {
  42741. source: "./media/characters/nilghais/side.svg",
  42742. extra: 1047/744,
  42743. bottom: 91/1138
  42744. }
  42745. },
  42746. head: {
  42747. height: math.unit(3.14, "feet"),
  42748. name: "Head",
  42749. image: {
  42750. source: "./media/characters/nilghais/head.svg"
  42751. }
  42752. },
  42753. mouth: {
  42754. height: math.unit(4.6, "feet"),
  42755. name: "Mouth",
  42756. image: {
  42757. source: "./media/characters/nilghais/mouth.svg"
  42758. }
  42759. },
  42760. wings: {
  42761. height: math.unit(24, "feet"),
  42762. name: "Wings",
  42763. image: {
  42764. source: "./media/characters/nilghais/wings.svg"
  42765. }
  42766. },
  42767. ass: {
  42768. height: math.unit(6.12, "feet"),
  42769. name: "Ass",
  42770. image: {
  42771. source: "./media/characters/nilghais/ass.svg"
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(9, "feet"),
  42779. default: true
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42785. {
  42786. regular: {
  42787. height: math.unit(16 + 2/12, "feet"),
  42788. weight: math.unit(2300, "lb"),
  42789. name: "Regular",
  42790. image: {
  42791. source: "./media/characters/zolgar/regular.svg",
  42792. extra: 1246/1004,
  42793. bottom: 124/1370
  42794. }
  42795. },
  42796. boxers: {
  42797. height: math.unit(16 + 2/12, "feet"),
  42798. weight: math.unit(2300, "lb"),
  42799. name: "Boxers",
  42800. image: {
  42801. source: "./media/characters/zolgar/boxers.svg",
  42802. extra: 1246/1004,
  42803. bottom: 124/1370
  42804. }
  42805. },
  42806. armored: {
  42807. height: math.unit(16 + 2/12, "feet"),
  42808. weight: math.unit(2300, "lb"),
  42809. name: "Armored",
  42810. image: {
  42811. source: "./media/characters/zolgar/armored.svg",
  42812. extra: 1246/1004,
  42813. bottom: 124/1370
  42814. }
  42815. },
  42816. goth: {
  42817. height: math.unit(16 + 2/12, "feet"),
  42818. weight: math.unit(2300, "lb"),
  42819. name: "Goth",
  42820. image: {
  42821. source: "./media/characters/zolgar/goth.svg",
  42822. extra: 1246/1004,
  42823. bottom: 124/1370
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Shrunken Down",
  42830. height: math.unit(9 + 2/12, "feet")
  42831. },
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(16 + 2/12, "feet"),
  42835. default: true
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42841. {
  42842. front: {
  42843. height: math.unit(6, "feet"),
  42844. weight: math.unit(168, "lb"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/luca/front.svg",
  42848. extra: 841/667,
  42849. bottom: 102/943
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(6, "feet"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42863. {
  42864. side: {
  42865. height: math.unit(7 + 3/12, "feet"),
  42866. weight: math.unit(312, "lb"),
  42867. name: "Side",
  42868. image: {
  42869. source: "./media/characters/zezo/side.svg",
  42870. extra: 1192/1067,
  42871. bottom: 63/1255
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(7 + 3/12, "feet"),
  42879. default: true
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(5 + 5/12, "feet"),
  42888. weight: math.unit(170, "lb"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/mayso/front.svg",
  42892. extra: 1215/1108,
  42893. bottom: 16/1231
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(5 + 5/12, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(4 + 3/12, "feet"),
  42910. weight: math.unit(80, "lb"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/hess/front.svg",
  42914. extra: 1200/1123,
  42915. bottom: 16/1216
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(4 + 3/12, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42929. {
  42930. front: {
  42931. height: math.unit(1.9, "meters"),
  42932. name: "Front",
  42933. image: {
  42934. source: "./media/characters/ashgar/front.svg",
  42935. extra: 1177/1146,
  42936. bottom: 99/1276
  42937. }
  42938. },
  42939. back: {
  42940. height: math.unit(1.9, "meters"),
  42941. name: "Back",
  42942. image: {
  42943. source: "./media/characters/ashgar/back.svg",
  42944. extra: 1201/1183,
  42945. bottom: 53/1254
  42946. }
  42947. },
  42948. feral: {
  42949. height: math.unit(1.4, "meters"),
  42950. name: "Feral",
  42951. image: {
  42952. source: "./media/characters/ashgar/feral.svg",
  42953. extra: 370/345,
  42954. bottom: 45/415
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Normal",
  42961. height: math.unit(1.9, "meters"),
  42962. default: true
  42963. },
  42964. ]
  42965. ))
  42966. characterMakers.push(() => makeCharacter(
  42967. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42968. {
  42969. regular: {
  42970. height: math.unit(6, "feet"),
  42971. weight: math.unit(220, "lb"),
  42972. name: "Regular",
  42973. image: {
  42974. source: "./media/characters/phillip/regular.svg",
  42975. extra: 1373/1277,
  42976. bottom: 75/1448
  42977. }
  42978. },
  42979. dressed: {
  42980. height: math.unit(6, "feet"),
  42981. weight: math.unit(220, "lb"),
  42982. name: "Dressed",
  42983. image: {
  42984. source: "./media/characters/phillip/dressed.svg",
  42985. extra: 1373/1277,
  42986. bottom: 75/1448
  42987. }
  42988. },
  42989. paw: {
  42990. height: math.unit(1.44, "feet"),
  42991. name: "Paw",
  42992. image: {
  42993. source: "./media/characters/phillip/paw.svg"
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(6, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43007. {
  43008. side: {
  43009. height: math.unit(42, "feet"),
  43010. name: "Side",
  43011. image: {
  43012. source: "./media/characters/uvula/side.svg",
  43013. extra: 683/586,
  43014. bottom: 60/743
  43015. }
  43016. },
  43017. front: {
  43018. height: math.unit(42, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/uvula/front.svg",
  43022. extra: 705/613,
  43023. bottom: 54/759
  43024. }
  43025. },
  43026. maw: {
  43027. height: math.unit(23.5, "feet"),
  43028. name: "Maw",
  43029. image: {
  43030. source: "./media/characters/uvula/maw.svg"
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Original Size",
  43037. height: math.unit(14, "inches")
  43038. },
  43039. {
  43040. name: "Human Size",
  43041. height: math.unit(6, "feet")
  43042. },
  43043. {
  43044. name: "Big",
  43045. height: math.unit(42, "feet"),
  43046. default: true
  43047. },
  43048. {
  43049. name: "Bigger",
  43050. height: math.unit(100, "feet")
  43051. },
  43052. ]
  43053. ))
  43054. characterMakers.push(() => makeCharacter(
  43055. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43056. {
  43057. front: {
  43058. height: math.unit(5 + 11/12, "feet"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/lannah/front.svg",
  43062. extra: 1208/1113,
  43063. bottom: 97/1305
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(5 + 11/12, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43077. {
  43078. front: {
  43079. height: math.unit(6 + 3/12, "feet"),
  43080. weight: math.unit(3.5, "tons"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/emberflame/front.svg",
  43084. extra: 1198/672,
  43085. bottom: 82/1280
  43086. }
  43087. },
  43088. side: {
  43089. height: math.unit(6 + 3/12, "feet"),
  43090. weight: math.unit(3.5, "tons"),
  43091. name: "Side",
  43092. image: {
  43093. source: "./media/characters/emberflame/side.svg",
  43094. extra: 938/527,
  43095. bottom: 56/994
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(6 + 3/12, "feet"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43109. {
  43110. side: {
  43111. height: math.unit(17.5, "feet"),
  43112. weight: math.unit(35, "tons"),
  43113. name: "Side",
  43114. image: {
  43115. source: "./media/characters/sophie-ambrose/side.svg",
  43116. extra: 1573/1242,
  43117. bottom: 71/1644
  43118. }
  43119. },
  43120. maw: {
  43121. height: math.unit(7.4, "feet"),
  43122. name: "Maw",
  43123. image: {
  43124. source: "./media/characters/sophie-ambrose/maw.svg"
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(17.5, "feet"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(280, "feet"),
  43141. weight: math.unit(550, "tons"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/king-mugi/front.svg",
  43145. extra: 1102/947,
  43146. bottom: 104/1206
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "King Mugi",
  43153. height: math.unit(280, "feet"),
  43154. default: true
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43160. {
  43161. front: {
  43162. height: math.unit(64, "meters"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/nova-fox/front.svg",
  43166. extra: 1310/1246,
  43167. bottom: 65/1375
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Macro",
  43174. height: math.unit(64, "meters"),
  43175. default: true
  43176. },
  43177. ]
  43178. ))
  43179. characterMakers.push(() => makeCharacter(
  43180. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43181. {
  43182. front: {
  43183. height: math.unit(6 + 3/12, "feet"),
  43184. weight: math.unit(170, "lb"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/sam-bat/front.svg",
  43188. extra: 1601/1411,
  43189. bottom: 125/1726
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(6 + 3/12, "feet"),
  43194. weight: math.unit(170, "lb"),
  43195. name: "Back",
  43196. image: {
  43197. source: "./media/characters/sam-bat/back.svg",
  43198. extra: 1577/1405,
  43199. bottom: 58/1635
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(6 + 3/12, "feet"),
  43207. default: true
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43213. {
  43214. front: {
  43215. height: math.unit(59, "feet"),
  43216. weight: math.unit(40000, "lb"),
  43217. name: "Front",
  43218. image: {
  43219. source: "./media/characters/inari/front.svg",
  43220. extra: 1884/1350,
  43221. bottom: 95/1979
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Gigantamax",
  43228. height: math.unit(59, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(5 + 8/12, "feet"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/elizabeth/front.svg",
  43241. extra: 1395/1298,
  43242. bottom: 54/1449
  43243. }
  43244. },
  43245. mouth: {
  43246. height: math.unit(1.97, "feet"),
  43247. name: "Mouth",
  43248. image: {
  43249. source: "./media/characters/elizabeth/mouth.svg"
  43250. }
  43251. },
  43252. foot: {
  43253. height: math.unit(1.17, "feet"),
  43254. name: "Foot",
  43255. image: {
  43256. source: "./media/characters/elizabeth/foot.svg"
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(5 + 8/12, "feet"),
  43264. default: true
  43265. },
  43266. {
  43267. name: "Minimacro",
  43268. height: math.unit(18, "feet")
  43269. },
  43270. {
  43271. name: "Macro",
  43272. height: math.unit(180, "feet")
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(5 + 2/12, "feet"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/october-gossamer/front.svg",
  43284. extra: 505/454,
  43285. bottom: 7/512
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(5 + 2/12, "feet"),
  43290. name: "Back",
  43291. image: {
  43292. source: "./media/characters/october-gossamer/back.svg",
  43293. extra: 501/454,
  43294. bottom: 11/512
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(5 + 2/12, "feet"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43308. {
  43309. front: {
  43310. height: math.unit(5, "feet"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/epiglottis/front.svg",
  43314. extra: 923/849,
  43315. bottom: 17/940
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Original Size",
  43322. height: math.unit(10, "inches")
  43323. },
  43324. {
  43325. name: "Human Size",
  43326. height: math.unit(5, "feet"),
  43327. default: true
  43328. },
  43329. {
  43330. name: "Big",
  43331. height: math.unit(25, "feet")
  43332. },
  43333. {
  43334. name: "Bigger",
  43335. height: math.unit(50, "feet")
  43336. },
  43337. {
  43338. name: "oh lawd",
  43339. height: math.unit(75, "feet")
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43345. {
  43346. front: {
  43347. height: math.unit(2 + 4/12, "feet"),
  43348. weight: math.unit(60, "lb"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/lerm/front.svg",
  43352. extra: 796/790,
  43353. bottom: 79/875
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(2 + 4/12, "feet"),
  43361. default: true
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(5.5, "feet"),
  43370. weight: math.unit(130, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/xena-nebadon/front.svg",
  43374. extra: 1828/1730,
  43375. bottom: 79/1907
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Tiny Puppy",
  43382. height: math.unit(3, "inches")
  43383. },
  43384. {
  43385. name: "Normal",
  43386. height: math.unit(5.5, "feet"),
  43387. default: true
  43388. },
  43389. {
  43390. name: "Lotta Lady",
  43391. height: math.unit(12, "feet")
  43392. },
  43393. {
  43394. name: "Pretty Big",
  43395. height: math.unit(100, "feet")
  43396. },
  43397. {
  43398. name: "Big",
  43399. height: math.unit(500, "feet")
  43400. },
  43401. {
  43402. name: "Skyscraper Toys",
  43403. height: math.unit(2500, "feet")
  43404. },
  43405. {
  43406. name: "Plane Catcher",
  43407. height: math.unit(8, "miles")
  43408. },
  43409. {
  43410. name: "Planet Toys",
  43411. height: math.unit(15, "earths")
  43412. },
  43413. {
  43414. name: "Stardust",
  43415. height: math.unit(0.25, "galaxies")
  43416. },
  43417. {
  43418. name: "Snacks",
  43419. height: math.unit(70, "universes")
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(1.6, "meters"),
  43428. weight: math.unit(60, "kg"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/bounty/front.svg",
  43432. extra: 1426/1308,
  43433. bottom: 15/1441
  43434. }
  43435. },
  43436. back: {
  43437. height: math.unit(1.6, "meters"),
  43438. weight: math.unit(60, "kg"),
  43439. name: "Back",
  43440. image: {
  43441. source: "./media/characters/bounty/back.svg",
  43442. extra: 1417/1307,
  43443. bottom: 8/1425
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(1.6, "meters"),
  43451. default: true
  43452. },
  43453. {
  43454. name: "Macro",
  43455. height: math.unit(300, "meters")
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43461. {
  43462. front: {
  43463. height: math.unit(2 + 8/12, "feet"),
  43464. weight: math.unit(15, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/mochi/front.svg",
  43468. extra: 1022/852,
  43469. bottom: 435/1457
  43470. }
  43471. },
  43472. back: {
  43473. height: math.unit(2 + 8/12, "feet"),
  43474. weight: math.unit(15, "lb"),
  43475. name: "Back",
  43476. image: {
  43477. source: "./media/characters/mochi/back.svg",
  43478. extra: 1335/1119,
  43479. bottom: 39/1374
  43480. }
  43481. },
  43482. bird: {
  43483. height: math.unit(2 + 8/12, "feet"),
  43484. weight: math.unit(15, "lb"),
  43485. name: "Bird",
  43486. image: {
  43487. source: "./media/characters/mochi/bird.svg",
  43488. extra: 1251/1113,
  43489. bottom: 178/1429
  43490. }
  43491. },
  43492. kaiju: {
  43493. height: math.unit(154, "feet"),
  43494. weight: math.unit(1e7, "lb"),
  43495. name: "Kaiju",
  43496. image: {
  43497. source: "./media/characters/mochi/kaiju.svg",
  43498. extra: 460/324,
  43499. bottom: 40/500
  43500. }
  43501. },
  43502. head: {
  43503. height: math.unit(1.21, "feet"),
  43504. name: "Head",
  43505. image: {
  43506. source: "./media/characters/mochi/head.svg"
  43507. }
  43508. },
  43509. alternateTail: {
  43510. height: math.unit(2 + 8/12, "feet"),
  43511. weight: math.unit(45, "lb"),
  43512. name: "Alternate Tail",
  43513. image: {
  43514. source: "./media/characters/mochi/alternate-tail.svg",
  43515. extra: 139/76,
  43516. bottom: 45/184
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Micro",
  43523. height: math.unit(2, "inches")
  43524. },
  43525. {
  43526. name: "Normal",
  43527. height: math.unit(2 + 8/12, "feet"),
  43528. default: true
  43529. },
  43530. {
  43531. name: "Macro",
  43532. height: math.unit(106, "feet")
  43533. },
  43534. ]
  43535. ))
  43536. characterMakers.push(() => makeCharacter(
  43537. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43538. {
  43539. front: {
  43540. height: math.unit(5.67, "feet"),
  43541. weight: math.unit(135, "lb"),
  43542. name: "Front",
  43543. image: {
  43544. source: "./media/characters/sarel/front.svg",
  43545. extra: 865/788,
  43546. bottom: 97/962
  43547. }
  43548. },
  43549. back: {
  43550. height: math.unit(5.67, "feet"),
  43551. weight: math.unit(135, "lb"),
  43552. name: "Back",
  43553. image: {
  43554. source: "./media/characters/sarel/back.svg",
  43555. extra: 857/777,
  43556. bottom: 32/889
  43557. }
  43558. },
  43559. chozoan: {
  43560. height: math.unit(5.67, "feet"),
  43561. weight: math.unit(135, "lb"),
  43562. name: "Chozoan",
  43563. image: {
  43564. source: "./media/characters/sarel/chozoan.svg",
  43565. extra: 865/788,
  43566. bottom: 97/962
  43567. }
  43568. },
  43569. current: {
  43570. height: math.unit(5.67, "feet"),
  43571. weight: math.unit(135, "lb"),
  43572. name: "Current",
  43573. image: {
  43574. source: "./media/characters/sarel/current.svg",
  43575. extra: 865/788,
  43576. bottom: 97/962
  43577. }
  43578. },
  43579. head: {
  43580. height: math.unit(1.77, "feet"),
  43581. name: "Head",
  43582. image: {
  43583. source: "./media/characters/sarel/head.svg"
  43584. }
  43585. },
  43586. claws: {
  43587. height: math.unit(1.8, "feet"),
  43588. name: "Claws",
  43589. image: {
  43590. source: "./media/characters/sarel/claws.svg"
  43591. }
  43592. },
  43593. clawsAlt: {
  43594. height: math.unit(1.8, "feet"),
  43595. name: "Claws-alt",
  43596. image: {
  43597. source: "./media/characters/sarel/claws-alt.svg"
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(5.67, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(5500, "feet"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/alyonia/front.svg",
  43617. extra: 1200/1135,
  43618. bottom: 29/1229
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(5500, "feet"),
  43623. name: "Back",
  43624. image: {
  43625. source: "./media/characters/alyonia/back.svg",
  43626. extra: 1205/1138,
  43627. bottom: 10/1215
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Small",
  43634. height: math.unit(10, "feet")
  43635. },
  43636. {
  43637. name: "Macro",
  43638. height: math.unit(500, "feet")
  43639. },
  43640. {
  43641. name: "Mega Macro",
  43642. height: math.unit(5500, "feet"),
  43643. default: true
  43644. },
  43645. {
  43646. name: "Mega Macro+",
  43647. height: math.unit(500000, "feet")
  43648. },
  43649. {
  43650. name: "Giga Macro",
  43651. height: math.unit(3000, "miles")
  43652. },
  43653. {
  43654. name: "Tera Macro",
  43655. height: math.unit(2.8e6, "miles")
  43656. },
  43657. {
  43658. name: "Galactic",
  43659. height: math.unit(120000, "lightyears")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43665. {
  43666. werewolf: {
  43667. height: math.unit(8, "feet"),
  43668. weight: math.unit(425, "lb"),
  43669. name: "Werewolf",
  43670. image: {
  43671. source: "./media/characters/autumn/werewolf.svg",
  43672. extra: 2154/2031,
  43673. bottom: 160/2314
  43674. }
  43675. },
  43676. human: {
  43677. height: math.unit(5 + 8/12, "feet"),
  43678. weight: math.unit(150, "lb"),
  43679. name: "Human",
  43680. image: {
  43681. source: "./media/characters/autumn/human.svg",
  43682. extra: 1200/1149,
  43683. bottom: 30/1230
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(8, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(8 + 5/12, "feet"),
  43700. weight: math.unit(825, "lb"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/cobalt-charizard/front.svg",
  43704. extra: 1268/1155,
  43705. bottom: 122/1390
  43706. }
  43707. },
  43708. side: {
  43709. height: math.unit(8 + 5/12, "feet"),
  43710. weight: math.unit(825, "lb"),
  43711. name: "Side",
  43712. image: {
  43713. source: "./media/characters/cobalt-charizard/side.svg",
  43714. extra: 1348/1257,
  43715. bottom: 58/1406
  43716. }
  43717. },
  43718. gMax: {
  43719. height: math.unit(134 + 11/12, "feet"),
  43720. name: "G-Max",
  43721. image: {
  43722. source: "./media/characters/cobalt-charizard/g-max.svg",
  43723. extra: 1835/1541,
  43724. bottom: 151/1986
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Normal",
  43731. height: math.unit(8 + 5/12, "feet"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(6 + 3/12, "feet"),
  43741. weight: math.unit(210, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/stella/front.svg",
  43745. extra: 3549/3335,
  43746. bottom: 51/3600
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Normal",
  43753. height: math.unit(6 + 3/12, "feet"),
  43754. default: true
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(5, "feet"),
  43763. weight: math.unit(90, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/riley-bishop/front.svg",
  43767. extra: 1450/1428,
  43768. bottom: 152/1602
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Normal",
  43775. height: math.unit(5, "feet"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43782. {
  43783. side: {
  43784. height: math.unit(8 + 2/12, "feet"),
  43785. weight: math.unit(500, "kg"),
  43786. name: "Side",
  43787. image: {
  43788. source: "./media/characters/theo-arcanine/side.svg",
  43789. extra: 1342/1074,
  43790. bottom: 111/1453
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Normal",
  43797. height: math.unit(8 + 2/12, "feet"),
  43798. default: true
  43799. },
  43800. ]
  43801. ))
  43802. characterMakers.push(() => makeCharacter(
  43803. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43804. {
  43805. front: {
  43806. height: math.unit(4, "feet"),
  43807. name: "Front",
  43808. image: {
  43809. source: "./media/characters/kali/front.svg",
  43810. extra: 1921/1357,
  43811. bottom: 70/1991
  43812. }
  43813. },
  43814. },
  43815. [
  43816. {
  43817. name: "Normal",
  43818. height: math.unit(4, "feet"),
  43819. default: true
  43820. },
  43821. {
  43822. name: "Macro",
  43823. height: math.unit(32, "meters")
  43824. },
  43825. {
  43826. name: "Macro+",
  43827. height: math.unit(150, "meters")
  43828. },
  43829. {
  43830. name: "Megamacro",
  43831. height: math.unit(7500, "meters")
  43832. },
  43833. {
  43834. name: "Megamacro+",
  43835. height: math.unit(80, "kilometers")
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43841. {
  43842. side: {
  43843. height: math.unit(5 + 11/12, "feet"),
  43844. weight: math.unit(236, "lb"),
  43845. name: "Side",
  43846. image: {
  43847. source: "./media/characters/gapp/side.svg",
  43848. extra: 775/340,
  43849. bottom: 58/833
  43850. }
  43851. },
  43852. mouth: {
  43853. height: math.unit(2.98, "feet"),
  43854. name: "Mouth",
  43855. image: {
  43856. source: "./media/characters/gapp/mouth.svg"
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Normal",
  43863. height: math.unit(5 + 1/12, "feet"),
  43864. default: true
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(6, "feet"),
  43873. name: "Front",
  43874. image: {
  43875. source: "./media/characters/persephone/front.svg",
  43876. extra: 1895/1717,
  43877. bottom: 96/1991
  43878. }
  43879. },
  43880. back: {
  43881. height: math.unit(6, "feet"),
  43882. name: "Back",
  43883. image: {
  43884. source: "./media/characters/persephone/back.svg",
  43885. extra: 1868/1679,
  43886. bottom: 26/1894
  43887. }
  43888. },
  43889. casual: {
  43890. height: math.unit(6, "feet"),
  43891. name: "Casual",
  43892. image: {
  43893. source: "./media/characters/persephone/casual.svg",
  43894. extra: 1713/1541,
  43895. bottom: 76/1789
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Human Size",
  43902. height: math.unit(6, "feet")
  43903. },
  43904. {
  43905. name: "Big Steppy",
  43906. height: math.unit(600, "meters"),
  43907. default: true
  43908. },
  43909. {
  43910. name: "Galaxy Brain",
  43911. height: math.unit(1, "zettameter")
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(1.85, "meters"),
  43920. name: "Front",
  43921. image: {
  43922. source: "./media/characters/riley-foxthing/front.svg",
  43923. extra: 1495/1354,
  43924. bottom: 122/1617
  43925. }
  43926. },
  43927. frontAlt: {
  43928. height: math.unit(1.85, "meters"),
  43929. name: "Front (Alt)",
  43930. image: {
  43931. source: "./media/characters/riley-foxthing/front-alt.svg",
  43932. extra: 1572/1389,
  43933. bottom: 116/1688
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal Sized",
  43940. height: math.unit(1.85, "meters"),
  43941. default: true
  43942. },
  43943. {
  43944. name: "Quite Sizable",
  43945. height: math.unit(5, "meters")
  43946. },
  43947. {
  43948. name: "Rather Large",
  43949. height: math.unit(20, "meters")
  43950. },
  43951. {
  43952. name: "Macro",
  43953. height: math.unit(450, "meters")
  43954. },
  43955. {
  43956. name: "Giga",
  43957. height: math.unit(5, "km")
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43963. {
  43964. front: {
  43965. height: math.unit(6, "feet"),
  43966. weight: math.unit(200, "lb"),
  43967. name: "Front",
  43968. image: {
  43969. source: "./media/characters/blizzard/front.svg",
  43970. extra: 1136/990,
  43971. bottom: 136/1272
  43972. }
  43973. },
  43974. back: {
  43975. height: math.unit(6, "feet"),
  43976. weight: math.unit(200, "lb"),
  43977. name: "Back",
  43978. image: {
  43979. source: "./media/characters/blizzard/back.svg",
  43980. extra: 1175/1034,
  43981. bottom: 97/1272
  43982. }
  43983. },
  43984. sitting: {
  43985. height: math.unit(3.725, "feet"),
  43986. weight: math.unit(200, "lb"),
  43987. name: "Sitting",
  43988. image: {
  43989. source: "./media/characters/blizzard/sitting.svg",
  43990. extra: 581/485,
  43991. bottom: 90/671
  43992. }
  43993. },
  43994. frontWizard: {
  43995. height: math.unit(7.9, "feet"),
  43996. weight: math.unit(200, "lb"),
  43997. name: "Front (Wizard)",
  43998. image: {
  43999. source: "./media/characters/blizzard/front-wizard.svg"
  44000. }
  44001. },
  44002. backWizard: {
  44003. height: math.unit(7.9, "feet"),
  44004. weight: math.unit(200, "lb"),
  44005. name: "Back (Wizard)",
  44006. image: {
  44007. source: "./media/characters/blizzard/back-wizard.svg"
  44008. }
  44009. },
  44010. frontNsfw: {
  44011. height: math.unit(6, "feet"),
  44012. weight: math.unit(200, "lb"),
  44013. name: "Front (NSFW)",
  44014. image: {
  44015. source: "./media/characters/blizzard/front-nsfw.svg",
  44016. extra: 1136/990,
  44017. bottom: 136/1272
  44018. }
  44019. },
  44020. backNsfw: {
  44021. height: math.unit(6, "feet"),
  44022. weight: math.unit(200, "lb"),
  44023. name: "Back (NSFW)",
  44024. image: {
  44025. source: "./media/characters/blizzard/back-nsfw.svg",
  44026. extra: 1175/1034,
  44027. bottom: 97/1272
  44028. }
  44029. },
  44030. sittingNsfw: {
  44031. height: math.unit(3.725, "feet"),
  44032. weight: math.unit(200, "lb"),
  44033. name: "Sitting (NSFW)",
  44034. image: {
  44035. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44036. extra: 581/485,
  44037. bottom: 90/671
  44038. }
  44039. },
  44040. wizardFrontNsfw: {
  44041. height: math.unit(7.9, "feet"),
  44042. weight: math.unit(200, "lb"),
  44043. name: "Wizard (Front, NSFW)",
  44044. image: {
  44045. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(5 + 2/12, "feet"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/lumi/front.svg",
  44065. extra: 1328/1268,
  44066. bottom: 103/1431
  44067. }
  44068. },
  44069. back: {
  44070. height: math.unit(5 + 2/12, "feet"),
  44071. name: "Back",
  44072. image: {
  44073. source: "./media/characters/lumi/back.svg",
  44074. extra: 1381/1327,
  44075. bottom: 43/1424
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(5 + 2/12, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(5 + 9/12, "feet"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/aliya-cotton/front.svg",
  44095. extra: 577/564,
  44096. bottom: 29/606
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(5 + 9/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(2.7, "meters"),
  44113. weight: math.unit(25000, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/noah-luxray/front.svg",
  44117. extra: 1644/825,
  44118. bottom: 339/1983
  44119. }
  44120. },
  44121. side: {
  44122. height: math.unit(2.97, "meters"),
  44123. weight: math.unit(25000, "lb"),
  44124. name: "Side",
  44125. image: {
  44126. source: "./media/characters/noah-luxray/side.svg",
  44127. extra: 1319/650,
  44128. bottom: 163/1482
  44129. }
  44130. },
  44131. dick: {
  44132. height: math.unit(7.4, "feet"),
  44133. weight: math.unit(2500, "lb"),
  44134. name: "Dick",
  44135. image: {
  44136. source: "./media/characters/noah-luxray/dick.svg"
  44137. }
  44138. },
  44139. dickAlt: {
  44140. height: math.unit(10.83, "feet"),
  44141. weight: math.unit(2500, "lb"),
  44142. name: "Dick-alt",
  44143. image: {
  44144. source: "./media/characters/noah-luxray/dick-alt.svg"
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "BIG",
  44151. height: math.unit(2.7, "meters"),
  44152. default: true
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44158. {
  44159. standing: {
  44160. height: math.unit(183, "cm"),
  44161. weight: math.unit(68, "kg"),
  44162. name: "Standing",
  44163. image: {
  44164. source: "./media/characters/arion/standing.svg",
  44165. extra: 1869/1807,
  44166. bottom: 93/1962
  44167. }
  44168. },
  44169. reclining: {
  44170. height: math.unit(70.5, "cm"),
  44171. weight: math.unit(68, "lb"),
  44172. name: "Reclining",
  44173. image: {
  44174. source: "./media/characters/arion/reclining.svg",
  44175. extra: 937/870,
  44176. bottom: 63/1000
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Colossus Size, Low",
  44183. height: math.unit(33, "meters"),
  44184. default: true
  44185. },
  44186. {
  44187. name: "Colossus Size, Mid",
  44188. height: math.unit(52, "meters")
  44189. },
  44190. {
  44191. name: "Colossus Size, High",
  44192. height: math.unit(60, "meters")
  44193. },
  44194. {
  44195. name: "Titan Size, Low",
  44196. height: math.unit(91, "meters"),
  44197. },
  44198. {
  44199. name: "Titan Size, Mid",
  44200. height: math.unit(122, "meters")
  44201. },
  44202. {
  44203. name: "Titan Size, High",
  44204. height: math.unit(162, "meters")
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(53, "meters"),
  44213. name: "Front",
  44214. image: {
  44215. source: "./media/characters/stellar-marbey/front.svg",
  44216. extra: 1913/1805,
  44217. bottom: 92/2005
  44218. }
  44219. },
  44220. back: {
  44221. height: math.unit(53, "meters"),
  44222. name: "Back",
  44223. image: {
  44224. source: "./media/characters/stellar-marbey/back.svg",
  44225. extra: 1960/1851,
  44226. bottom: 28/1988
  44227. }
  44228. },
  44229. mouth: {
  44230. height: math.unit(3.5, "meters"),
  44231. name: "Mouth",
  44232. image: {
  44233. source: "./media/characters/stellar-marbey/mouth.svg"
  44234. }
  44235. },
  44236. },
  44237. [
  44238. {
  44239. name: "Macro",
  44240. height: math.unit(53, "meters"),
  44241. default: true
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(8 + 1/12, "feet"),
  44250. weight: math.unit(233, "lb"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/matsu/front.svg",
  44254. extra: 832/772,
  44255. bottom: 40/872
  44256. }
  44257. },
  44258. back: {
  44259. height: math.unit(8 + 1/12, "feet"),
  44260. weight: math.unit(233, "lb"),
  44261. name: "Back",
  44262. image: {
  44263. source: "./media/characters/matsu/back.svg",
  44264. extra: 839/780,
  44265. bottom: 47/886
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(8 + 1/12, "feet"),
  44273. default: true
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(4, "feet"),
  44282. weight: math.unit(148, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/thiz/front.svg",
  44286. extra: 1913/1748,
  44287. bottom: 62/1975
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(4, "feet"),
  44295. default: true
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44301. {
  44302. front: {
  44303. height: math.unit(7 + 6/12, "feet"),
  44304. weight: math.unit(267, "lb"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/marcel/front.svg",
  44308. extra: 1221/1096,
  44309. bottom: 76/1297
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(7 + 6/12, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44323. {
  44324. side: {
  44325. height: math.unit(42, "meters"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/flake/side.svg",
  44329. extra: 1525/1306,
  44330. bottom: 209/1734
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(42, "meters"),
  44338. default: true
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44344. {
  44345. dressed: {
  44346. height: math.unit(6 + 4/12, "feet"),
  44347. weight: math.unit(520, "lb"),
  44348. name: "Dressed",
  44349. image: {
  44350. source: "./media/characters/someonne/dressed.svg",
  44351. extra: 1020/1010,
  44352. bottom: 178/1198
  44353. }
  44354. },
  44355. undressed: {
  44356. height: math.unit(6 + 4/12, "feet"),
  44357. weight: math.unit(520, "lb"),
  44358. name: "Undressed",
  44359. image: {
  44360. source: "./media/characters/someonne/undressed.svg",
  44361. extra: 1019/1014,
  44362. bottom: 169/1188
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Normal",
  44369. height: math.unit(6 + 4/12, "feet"),
  44370. default: true
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(3, "feet"),
  44379. weight: math.unit(30, "lb"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/till/front.svg",
  44383. extra: 892/823,
  44384. bottom: 55/947
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(3, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(9 + 8/12, "feet"),
  44401. weight: math.unit(800, "lb"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/sydney-heki/front.svg",
  44405. extra: 1360/1300,
  44406. bottom: 22/1382
  44407. }
  44408. },
  44409. back: {
  44410. height: math.unit(9 + 8/12, "feet"),
  44411. weight: math.unit(800, "lb"),
  44412. name: "Back",
  44413. image: {
  44414. source: "./media/characters/sydney-heki/back.svg",
  44415. extra: 1356/1293,
  44416. bottom: 12/1368
  44417. }
  44418. },
  44419. frontDressed: {
  44420. height: math.unit(9 + 8/12, "feet"),
  44421. weight: math.unit(800, "lb"),
  44422. name: "Front-dressed",
  44423. image: {
  44424. source: "./media/characters/sydney-heki/front-dressed.svg",
  44425. extra: 1360/1300,
  44426. bottom: 22/1382
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Normal",
  44433. height: math.unit(9 + 8/12, "feet"),
  44434. default: true
  44435. },
  44436. {
  44437. name: "Macro",
  44438. height: math.unit(500, "feet")
  44439. },
  44440. {
  44441. name: "Megamacro",
  44442. height: math.unit(3.6, "miles")
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(200, "cm"),
  44451. weight: math.unit(250, "lb"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/fowler-karlsson/front.svg",
  44455. extra: 897/845,
  44456. bottom: 123/1020
  44457. }
  44458. },
  44459. back: {
  44460. height: math.unit(200, "cm"),
  44461. weight: math.unit(250, "lb"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/fowler-karlsson/back.svg",
  44465. extra: 999/944,
  44466. bottom: 26/1025
  44467. }
  44468. },
  44469. dick: {
  44470. height: math.unit(1.92, "feet"),
  44471. weight: math.unit(150, "lb"),
  44472. name: "Dick",
  44473. image: {
  44474. source: "./media/characters/fowler-karlsson/dick.svg"
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(200, "cm"),
  44482. default: true
  44483. },
  44484. {
  44485. name: "Smaller Macro",
  44486. height: math.unit(90, "m")
  44487. },
  44488. {
  44489. name: "Macro",
  44490. height: math.unit(150, "m")
  44491. },
  44492. {
  44493. name: "Bigger Macro",
  44494. height: math.unit(300, "m")
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44500. {
  44501. side: {
  44502. height: math.unit(8 + 2/12, "feet"),
  44503. weight: math.unit(1, "tonne"),
  44504. name: "Side",
  44505. image: {
  44506. source: "./media/characters/rylide/side.svg",
  44507. extra: 1318/1034,
  44508. bottom: 106/1424
  44509. }
  44510. },
  44511. sitting: {
  44512. height: math.unit(303, "cm"),
  44513. weight: math.unit(1, "tonne"),
  44514. name: "Sitting",
  44515. image: {
  44516. source: "./media/characters/rylide/sitting.svg",
  44517. extra: 1303/1103,
  44518. bottom: 36/1339
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(8 + 2/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5 + 10/12, "feet"),
  44535. weight: math.unit(160, "lb"),
  44536. name: "Front",
  44537. image: {
  44538. source: "./media/characters/pudask/front.svg",
  44539. extra: 1616/1590,
  44540. bottom: 161/1777
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Ferret Height",
  44547. height: math.unit(2 + 5/12, "feet")
  44548. },
  44549. {
  44550. name: "Canon Height",
  44551. height: math.unit(5 + 10/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(3 + 6/12, "feet"),
  44561. weight: math.unit(60, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/ramita/front.svg",
  44565. extra: 1402/1232,
  44566. bottom: 62/1464
  44567. }
  44568. },
  44569. dressed: {
  44570. height: math.unit(3 + 6/12, "feet"),
  44571. weight: math.unit(60, "lb"),
  44572. name: "Dressed",
  44573. image: {
  44574. source: "./media/characters/ramita/dressed.svg",
  44575. extra: 1534/1249,
  44576. bottom: 50/1584
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(3 + 6/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(8, "feet"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/ark/front.svg",
  44596. extra: 772/693,
  44597. bottom: 45/817
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(8, "feet"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44611. {
  44612. front: {
  44613. height: math.unit(6, "feet"),
  44614. weight: math.unit(250, "lb"),
  44615. volume: math.unit(5/8, "gallons"),
  44616. name: "Front",
  44617. image: {
  44618. source: "./media/characters/ludwig-horn/front.svg",
  44619. extra: 1782/1635,
  44620. bottom: 96/1878
  44621. }
  44622. },
  44623. back: {
  44624. height: math.unit(6, "feet"),
  44625. weight: math.unit(250, "lb"),
  44626. volume: math.unit(5/8, "gallons"),
  44627. name: "Back",
  44628. image: {
  44629. source: "./media/characters/ludwig-horn/back.svg",
  44630. extra: 1874/1729,
  44631. bottom: 27/1901
  44632. }
  44633. },
  44634. dick: {
  44635. height: math.unit(1.05, "feet"),
  44636. weight: math.unit(15, "lb"),
  44637. volume: math.unit(5/8, "gallons"),
  44638. name: "Dick",
  44639. image: {
  44640. source: "./media/characters/ludwig-horn/dick.svg"
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Small",
  44647. height: math.unit(6, "feet")
  44648. },
  44649. {
  44650. name: "Typical",
  44651. height: math.unit(12, "feet"),
  44652. default: true
  44653. },
  44654. {
  44655. name: "Building",
  44656. height: math.unit(80, "feet")
  44657. },
  44658. {
  44659. name: "Town",
  44660. height: math.unit(800, "feet")
  44661. },
  44662. {
  44663. name: "Kingdom",
  44664. height: math.unit(80000, "feet")
  44665. },
  44666. {
  44667. name: "Planet",
  44668. height: math.unit(8000000, "feet")
  44669. },
  44670. {
  44671. name: "Universe",
  44672. height: math.unit(8000000000, "feet")
  44673. },
  44674. {
  44675. name: "Transcended",
  44676. height: math.unit(8e27, "feet")
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44682. {
  44683. front: {
  44684. height: math.unit(5, "feet"),
  44685. weight: math.unit(50, "kg"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/biot-avery/front.svg",
  44689. extra: 1295/1232,
  44690. bottom: 86/1381
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(5, "feet"),
  44698. default: true
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(6, "feet"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/kitsune-kiro/front.svg",
  44710. extra: 1270/1158,
  44711. bottom: 42/1312
  44712. }
  44713. },
  44714. frontAlt: {
  44715. height: math.unit(6, "feet"),
  44716. name: "Front-alt",
  44717. image: {
  44718. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44719. extra: 1130/1081,
  44720. bottom: 36/1166
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Smol",
  44727. height: math.unit(3, "feet")
  44728. },
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(6, "feet"),
  44732. default: true
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(6, "feet"),
  44741. weight: math.unit(125, "lb"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/jack-thatcher/front.svg",
  44745. extra: 1474/1370,
  44746. bottom: 26/1500
  44747. }
  44748. },
  44749. back: {
  44750. height: math.unit(6, "feet"),
  44751. weight: math.unit(125, "lb"),
  44752. name: "Back",
  44753. image: {
  44754. source: "./media/characters/jack-thatcher/back.svg",
  44755. extra: 1489/1384,
  44756. bottom: 18/1507
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(6, "feet"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Macro",
  44768. height: math.unit(75, "feet")
  44769. },
  44770. {
  44771. name: "Macro-er",
  44772. height: math.unit(250, "feet")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(7, "feet"),
  44781. weight: math.unit(110, "kg"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/max-hyper/front.svg",
  44785. extra: 1969/1881,
  44786. bottom: 49/2018
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(7, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44800. {
  44801. front: {
  44802. height: math.unit(5 + 5/12, "feet"),
  44803. weight: math.unit(160, "lb"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/spook/front.svg",
  44807. extra: 794/791,
  44808. bottom: 54/848
  44809. }
  44810. },
  44811. back: {
  44812. height: math.unit(5 + 5/12, "feet"),
  44813. weight: math.unit(160, "lb"),
  44814. name: "Back",
  44815. image: {
  44816. source: "./media/characters/spook/back.svg",
  44817. extra: 812/798,
  44818. bottom: 32/844
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(5 + 5/12, "feet"),
  44826. default: true
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44832. {
  44833. front: {
  44834. height: math.unit(18, "feet"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/xeaduulix/front.svg",
  44838. extra: 1380/1166,
  44839. bottom: 110/1490
  44840. }
  44841. },
  44842. back: {
  44843. height: math.unit(18, "feet"),
  44844. name: "Back",
  44845. image: {
  44846. source: "./media/characters/xeaduulix/back.svg",
  44847. extra: 1592/1170,
  44848. bottom: 128/1720
  44849. }
  44850. },
  44851. frontNsfw: {
  44852. height: math.unit(18, "feet"),
  44853. name: "Front (NSFW)",
  44854. image: {
  44855. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44856. extra: 1380/1166,
  44857. bottom: 110/1490
  44858. }
  44859. },
  44860. backNsfw: {
  44861. height: math.unit(18, "feet"),
  44862. name: "Back (NSFW)",
  44863. image: {
  44864. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44865. extra: 1592/1170,
  44866. bottom: 128/1720
  44867. }
  44868. },
  44869. },
  44870. [
  44871. {
  44872. name: "Normal",
  44873. height: math.unit(18, "feet"),
  44874. default: true
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44880. {
  44881. spreadWings: {
  44882. height: math.unit(20, "feet"),
  44883. name: "Spread Wings",
  44884. image: {
  44885. source: "./media/characters/fledge/spread-wings.svg",
  44886. extra: 693/635,
  44887. bottom: 26/719
  44888. }
  44889. },
  44890. front: {
  44891. height: math.unit(20, "feet"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/fledge/front.svg",
  44895. extra: 684/637,
  44896. bottom: 18/702
  44897. }
  44898. },
  44899. frontAlt: {
  44900. height: math.unit(20, "feet"),
  44901. name: "Front (Alt)",
  44902. image: {
  44903. source: "./media/characters/fledge/front-alt.svg",
  44904. extra: 708/664,
  44905. bottom: 13/721
  44906. }
  44907. },
  44908. back: {
  44909. height: math.unit(20, "feet"),
  44910. name: "Back",
  44911. image: {
  44912. source: "./media/characters/fledge/back.svg",
  44913. extra: 718/634,
  44914. bottom: 22/740
  44915. }
  44916. },
  44917. head: {
  44918. height: math.unit(5.55, "feet"),
  44919. name: "Head",
  44920. image: {
  44921. source: "./media/characters/fledge/head.svg"
  44922. }
  44923. },
  44924. headAlt: {
  44925. height: math.unit(5.1, "feet"),
  44926. name: "Head (Alt)",
  44927. image: {
  44928. source: "./media/characters/fledge/head-alt.svg"
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Small",
  44935. height: math.unit(6 + 2/12, "feet")
  44936. },
  44937. {
  44938. name: "Big",
  44939. height: math.unit(20, "feet"),
  44940. default: true
  44941. },
  44942. {
  44943. name: "Giant",
  44944. height: math.unit(100, "feet")
  44945. },
  44946. {
  44947. name: "Macro",
  44948. height: math.unit(200, "feet")
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(1, "meter"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/atlas-morenai/front.svg",
  44960. extra: 1275/1043,
  44961. bottom: 19/1294
  44962. }
  44963. },
  44964. back: {
  44965. height: math.unit(1, "meter"),
  44966. name: "Back",
  44967. image: {
  44968. source: "./media/characters/atlas-morenai/back.svg",
  44969. extra: 1141/1001,
  44970. bottom: 25/1166
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(1, "meter"),
  44978. default: true
  44979. },
  44980. {
  44981. name: "Magic-Infused",
  44982. height: math.unit(5, "meters")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(5, "meters"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/cintia/front.svg",
  44994. extra: 1312/1228,
  44995. bottom: 38/1350
  44996. }
  44997. },
  44998. back: {
  44999. height: math.unit(5, "meters"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/cintia/back.svg",
  45003. extra: 1260/1166,
  45004. bottom: 98/1358
  45005. }
  45006. },
  45007. frontDick: {
  45008. height: math.unit(5, "meters"),
  45009. name: "Front (Dick)",
  45010. image: {
  45011. source: "./media/characters/cintia/front-dick.svg",
  45012. extra: 1312/1228,
  45013. bottom: 38/1350
  45014. }
  45015. },
  45016. backDick: {
  45017. height: math.unit(5, "meters"),
  45018. name: "Back (Dick)",
  45019. image: {
  45020. source: "./media/characters/cintia/back-dick.svg",
  45021. extra: 1260/1166,
  45022. bottom: 98/1358
  45023. }
  45024. },
  45025. bust: {
  45026. height: math.unit(1.97, "meters"),
  45027. name: "Bust",
  45028. image: {
  45029. source: "./media/characters/cintia/bust.svg",
  45030. extra: 617/565,
  45031. bottom: 0/617
  45032. }
  45033. },
  45034. },
  45035. [
  45036. {
  45037. name: "Normal",
  45038. height: math.unit(5, "meters"),
  45039. default: true
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45045. {
  45046. side: {
  45047. height: math.unit(100, "feet"),
  45048. name: "Side",
  45049. image: {
  45050. source: "./media/characters/denora/side.svg",
  45051. extra: 875/803,
  45052. bottom: 9/884
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Standard",
  45059. height: math.unit(100, "feet"),
  45060. default: true
  45061. },
  45062. {
  45063. name: "Grand",
  45064. height: math.unit(1000, "feet")
  45065. },
  45066. {
  45067. name: "Conquering",
  45068. height: math.unit(10000, "feet")
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45074. {
  45075. dressed: {
  45076. height: math.unit(8 + 5/12, "feet"),
  45077. weight: math.unit(700, "lb"),
  45078. name: "Dressed",
  45079. image: {
  45080. source: "./media/characters/kiva/dressed.svg",
  45081. extra: 1102/1055,
  45082. bottom: 60/1162
  45083. }
  45084. },
  45085. nude: {
  45086. height: math.unit(8 + 5/12, "feet"),
  45087. weight: math.unit(700, "lb"),
  45088. name: "Nude",
  45089. image: {
  45090. source: "./media/characters/kiva/nude.svg",
  45091. extra: 1102/1055,
  45092. bottom: 60/1162
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Base Height",
  45099. height: math.unit(8 + 5/12, "feet"),
  45100. default: true
  45101. },
  45102. {
  45103. name: "Macro",
  45104. height: math.unit(100, "feet")
  45105. },
  45106. {
  45107. name: "Max",
  45108. height: math.unit(3280, "feet")
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(6 + 8/12, "feet"),
  45117. weight: math.unit(250, "lb"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/ztragon/front.svg",
  45121. extra: 1825/1684,
  45122. bottom: 98/1923
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(6 + 8/12, "feet"),
  45130. default: true
  45131. },
  45132. {
  45133. name: "Macro",
  45134. height: math.unit(80, "feet")
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45140. {
  45141. front: {
  45142. height: math.unit(10.4, "feet"),
  45143. weight: math.unit(2, "tons"),
  45144. name: "Front",
  45145. image: {
  45146. source: "./media/characters/yesenia/front.svg",
  45147. extra: 1479/1474,
  45148. bottom: 233/1712
  45149. }
  45150. },
  45151. },
  45152. [
  45153. {
  45154. name: "Normal",
  45155. height: math.unit(10.4, "feet"),
  45156. default: true
  45157. },
  45158. ]
  45159. ))
  45160. characterMakers.push(() => makeCharacter(
  45161. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45162. {
  45163. normal: {
  45164. height: math.unit(6 + 1/12, "feet"),
  45165. weight: math.unit(180, "lb"),
  45166. name: "Normal",
  45167. image: {
  45168. source: "./media/characters/leanne-lycheborne/normal.svg",
  45169. extra: 1748/1660,
  45170. bottom: 98/1846
  45171. }
  45172. },
  45173. were: {
  45174. height: math.unit(12, "feet"),
  45175. weight: math.unit(1600, "lb"),
  45176. name: "Were",
  45177. image: {
  45178. source: "./media/characters/leanne-lycheborne/were.svg",
  45179. extra: 1485/1432,
  45180. bottom: 66/1551
  45181. }
  45182. },
  45183. },
  45184. [
  45185. {
  45186. name: "Normal",
  45187. height: math.unit(6 + 1/12, "feet"),
  45188. default: true
  45189. },
  45190. ]
  45191. ))
  45192. characterMakers.push(() => makeCharacter(
  45193. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45194. {
  45195. side: {
  45196. height: math.unit(13, "feet"),
  45197. name: "Side",
  45198. image: {
  45199. source: "./media/characters/kira-tyler/side.svg",
  45200. extra: 693/393,
  45201. bottom: 58/751
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Normal",
  45208. height: math.unit(13, "feet"),
  45209. default: true
  45210. },
  45211. ]
  45212. ))
  45213. characterMakers.push(() => makeCharacter(
  45214. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45215. {
  45216. front: {
  45217. height: math.unit(10.3, "feet"),
  45218. weight: math.unit(150, "lb"),
  45219. name: "Front",
  45220. image: {
  45221. source: "./media/characters/blaze/front.svg",
  45222. extra: 1378/1286,
  45223. bottom: 172/1550
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(10.3, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45237. {
  45238. side: {
  45239. height: math.unit(2, "meters"),
  45240. weight: math.unit(400, "kg"),
  45241. name: "Side",
  45242. image: {
  45243. source: "./media/characters/anu/side.svg",
  45244. extra: 506/394,
  45245. bottom: 18/524
  45246. }
  45247. },
  45248. },
  45249. [
  45250. {
  45251. name: "Humanoid",
  45252. height: math.unit(2, "meters")
  45253. },
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(5, "meters"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(5 + 5/12, "feet"),
  45266. weight: math.unit(170, "lb"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/synx-the-lynx/front.svg",
  45270. extra: 1893/1745,
  45271. bottom: 17/1910
  45272. }
  45273. },
  45274. side: {
  45275. height: math.unit(5 + 5/12, "feet"),
  45276. weight: math.unit(170, "lb"),
  45277. name: "Side",
  45278. image: {
  45279. source: "./media/characters/synx-the-lynx/side.svg",
  45280. extra: 1884/1740,
  45281. bottom: 39/1923
  45282. }
  45283. },
  45284. back: {
  45285. height: math.unit(5 + 5/12, "feet"),
  45286. weight: math.unit(170, "lb"),
  45287. name: "Back",
  45288. image: {
  45289. source: "./media/characters/synx-the-lynx/back.svg",
  45290. extra: 1903/1755,
  45291. bottom: 14/1917
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Normal",
  45298. height: math.unit(5 + 5/12, "feet"),
  45299. default: true
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45305. {
  45306. back: {
  45307. height: math.unit(15, "feet"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/nadezda-fex/back.svg",
  45311. extra: 1695/1481,
  45312. bottom: 25/1720
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(15, "feet"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Macro",
  45324. height: math.unit(2.5, "miles")
  45325. },
  45326. {
  45327. name: "Goddess",
  45328. height: math.unit(2, "multiverses")
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(216, "cm"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/lev/front.svg",
  45340. extra: 1728/1670,
  45341. bottom: 82/1810
  45342. }
  45343. },
  45344. back: {
  45345. height: math.unit(216, "cm"),
  45346. name: "Back",
  45347. image: {
  45348. source: "./media/characters/lev/back.svg",
  45349. extra: 1738/1675,
  45350. bottom: 24/1762
  45351. }
  45352. },
  45353. dressed: {
  45354. height: math.unit(216, "cm"),
  45355. name: "Dressed",
  45356. image: {
  45357. source: "./media/characters/lev/dressed.svg",
  45358. extra: 1397/1351,
  45359. bottom: 73/1470
  45360. }
  45361. },
  45362. head: {
  45363. height: math.unit(0.51, "meter"),
  45364. name: "Head",
  45365. image: {
  45366. source: "./media/characters/lev/head.svg"
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(216, "cm"),
  45374. default: true
  45375. },
  45376. {
  45377. name: "Relatively Macro",
  45378. height: math.unit(80, "meters")
  45379. },
  45380. {
  45381. name: "Megamacro",
  45382. height: math.unit(21600, "meters")
  45383. },
  45384. {
  45385. name: "Megamacro+",
  45386. height: math.unit(64800, "meters")
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(2, "meters"),
  45395. weight: math.unit(80, "kg"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/moka/front.svg",
  45399. extra: 1337/1255,
  45400. bottom: 58/1395
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Micro",
  45407. height: math.unit(15, "cm")
  45408. },
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(2, "meters"),
  45412. default: true
  45413. },
  45414. {
  45415. name: "Macro",
  45416. height: math.unit(20, "meters"),
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(9, "feet"),
  45425. weight: math.unit(240, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/kuzco/front.svg",
  45429. extra: 1593/1487,
  45430. bottom: 32/1625
  45431. }
  45432. },
  45433. side: {
  45434. height: math.unit(9, "feet"),
  45435. weight: math.unit(240, "lb"),
  45436. name: "Side",
  45437. image: {
  45438. source: "./media/characters/kuzco/side.svg",
  45439. extra: 1575/1485,
  45440. bottom: 30/1605
  45441. }
  45442. },
  45443. back: {
  45444. height: math.unit(9, "feet"),
  45445. weight: math.unit(240, "lb"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/kuzco/back.svg",
  45449. extra: 1603/1514,
  45450. bottom: 14/1617
  45451. }
  45452. },
  45453. },
  45454. [
  45455. {
  45456. name: "Normal",
  45457. height: math.unit(9, "feet"),
  45458. default: true
  45459. },
  45460. ]
  45461. ))
  45462. characterMakers.push(() => makeCharacter(
  45463. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45464. {
  45465. side: {
  45466. height: math.unit(2, "meters"),
  45467. weight: math.unit(300, "kg"),
  45468. name: "Side",
  45469. image: {
  45470. source: "./media/characters/ceruleus/side.svg",
  45471. extra: 1068/974,
  45472. bottom: 126/1194
  45473. }
  45474. },
  45475. },
  45476. [
  45477. {
  45478. name: "Normal",
  45479. height: math.unit(16, "meters"),
  45480. default: true
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45486. {
  45487. front: {
  45488. height: math.unit(9, "feet"),
  45489. weight: math.unit(500, "kg"),
  45490. name: "Front",
  45491. image: {
  45492. source: "./media/characters/acouya/front.svg",
  45493. extra: 1660/1473,
  45494. bottom: 28/1688
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Normal",
  45501. height: math.unit(9, "feet"),
  45502. default: true
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(5 + 6/12, "feet"),
  45511. weight: math.unit(195, "lb"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/vant/front.svg",
  45515. extra: 1396/1320,
  45516. bottom: 20/1416
  45517. }
  45518. },
  45519. back: {
  45520. height: math.unit(5 + 6/12, "feet"),
  45521. weight: math.unit(195, "lb"),
  45522. name: "Back",
  45523. image: {
  45524. source: "./media/characters/vant/back.svg",
  45525. extra: 1396/1320,
  45526. bottom: 20/1416
  45527. }
  45528. },
  45529. maw: {
  45530. height: math.unit(0.75, "feet"),
  45531. name: "Maw",
  45532. image: {
  45533. source: "./media/characters/vant/maw.svg"
  45534. }
  45535. },
  45536. paw: {
  45537. height: math.unit(1.07, "feet"),
  45538. name: "Paw",
  45539. image: {
  45540. source: "./media/characters/vant/paw.svg"
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Micro",
  45547. height: math.unit(0.25, "inches")
  45548. },
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(5 + 6/12, "feet"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Macro",
  45556. height: math.unit(75, "feet")
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45562. {
  45563. front: {
  45564. height: math.unit(30, "meters"),
  45565. weight: math.unit(363, "tons"),
  45566. name: "Front",
  45567. image: {
  45568. source: "./media/characters/ahra/front.svg",
  45569. extra: 1914/1814,
  45570. bottom: 46/1960
  45571. }
  45572. },
  45573. },
  45574. [
  45575. {
  45576. name: "Macro",
  45577. height: math.unit(30, "meters"),
  45578. default: true
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45584. {
  45585. undressed: {
  45586. height: math.unit(2, "m"),
  45587. weight: math.unit(250, "kg"),
  45588. name: "Undressed",
  45589. image: {
  45590. source: "./media/characters/coriander/undressed.svg",
  45591. extra: 1757/1606,
  45592. bottom: 107/1864
  45593. }
  45594. },
  45595. dressed: {
  45596. height: math.unit(2, "m"),
  45597. weight: math.unit(250, "kg"),
  45598. name: "Dressed",
  45599. image: {
  45600. source: "./media/characters/coriander/dressed.svg",
  45601. extra: 1757/1606,
  45602. bottom: 107/1864
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(4, "meters"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "XL",
  45614. height: math.unit(6, "meters")
  45615. },
  45616. {
  45617. name: "XXL",
  45618. height: math.unit(8, "meters")
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(6, "feet"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/syrinx/front.svg",
  45630. extra: 1557/1259,
  45631. bottom: 171/1728
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Normal",
  45638. height: math.unit(6 + 3/12, "feet"),
  45639. default: true
  45640. },
  45641. ]
  45642. ))
  45643. characterMakers.push(() => makeCharacter(
  45644. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45645. {
  45646. front: {
  45647. height: math.unit(11 + 6/12, "feet"),
  45648. weight: math.unit(1.5, "tons"),
  45649. name: "Front",
  45650. image: {
  45651. source: "./media/characters/bor/front.svg",
  45652. extra: 1189/1109,
  45653. bottom: 170/1359
  45654. }
  45655. },
  45656. },
  45657. [
  45658. {
  45659. name: "Normal",
  45660. height: math.unit(11 + 6/12, "feet"),
  45661. default: true
  45662. },
  45663. {
  45664. name: "Macro",
  45665. height: math.unit(32 + 9/12, "feet")
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45671. {
  45672. anthro: {
  45673. height: math.unit(9, "feet"),
  45674. weight: math.unit(2076, "lb"),
  45675. name: "Anthro",
  45676. image: {
  45677. source: "./media/characters/abacus/anthro.svg",
  45678. extra: 1540/1494,
  45679. bottom: 233/1773
  45680. }
  45681. },
  45682. pigeon: {
  45683. height: math.unit(1, "feet"),
  45684. name: "Pigeon",
  45685. image: {
  45686. source: "./media/characters/abacus/pigeon.svg",
  45687. extra: 528/525,
  45688. bottom: 46/574
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Normal",
  45695. height: math.unit(9, "feet"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45702. {
  45703. side: {
  45704. height: math.unit(6, "feet"),
  45705. name: "Side",
  45706. image: {
  45707. source: "./media/characters/delkhan/side.svg",
  45708. extra: 1884/1786,
  45709. bottom: 308/2192
  45710. }
  45711. },
  45712. head: {
  45713. height: math.unit(3.38, "feet"),
  45714. name: "Head",
  45715. image: {
  45716. source: "./media/characters/delkhan/head.svg"
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Normal",
  45723. height: math.unit(72, "feet"),
  45724. default: true
  45725. },
  45726. {
  45727. name: "Giant",
  45728. height: math.unit(172, "feet")
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45734. {
  45735. standing: {
  45736. height: math.unit(6, "feet"),
  45737. name: "Standing",
  45738. image: {
  45739. source: "./media/characters/euchidat/standing.svg",
  45740. extra: 1612/1553,
  45741. bottom: 116/1728
  45742. }
  45743. },
  45744. leaning: {
  45745. height: math.unit(6, "feet"),
  45746. name: "Leaning",
  45747. image: {
  45748. source: "./media/characters/euchidat/leaning.svg",
  45749. extra: 1719/1674,
  45750. bottom: 27/1746
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Normal",
  45757. height: math.unit(175, "feet"),
  45758. default: true
  45759. },
  45760. {
  45761. name: "Megamacro",
  45762. height: math.unit(190, "miles")
  45763. },
  45764. {
  45765. name: "Gigamacro",
  45766. height: math.unit(190000, "miles")
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45772. {
  45773. front: {
  45774. height: math.unit(6, "feet"),
  45775. weight: math.unit(150, "lb"),
  45776. name: "Front",
  45777. image: {
  45778. source: "./media/characters/rebecca-stack/front.svg",
  45779. extra: 1256/1201,
  45780. bottom: 18/1274
  45781. }
  45782. },
  45783. },
  45784. [
  45785. {
  45786. name: "Normal",
  45787. height: math.unit(5 + 8/12, "feet"),
  45788. default: true
  45789. },
  45790. {
  45791. name: "Demolitionist",
  45792. height: math.unit(200, "feet")
  45793. },
  45794. {
  45795. name: "Out of Control",
  45796. height: math.unit(2, "miles")
  45797. },
  45798. {
  45799. name: "Giga",
  45800. height: math.unit(7200, "miles")
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(6, "feet"),
  45809. weight: math.unit(150, "lb"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/jenny-cartwright/front.svg",
  45813. extra: 1384/1376,
  45814. bottom: 58/1442
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "Normal",
  45821. height: math.unit(6 + 7/12, "feet"),
  45822. default: true
  45823. },
  45824. {
  45825. name: "Librarian",
  45826. height: math.unit(55, "feet")
  45827. },
  45828. {
  45829. name: "Sightseer",
  45830. height: math.unit(50, "miles")
  45831. },
  45832. {
  45833. name: "Giga",
  45834. height: math.unit(30000, "miles")
  45835. },
  45836. ]
  45837. ))
  45838. characterMakers.push(() => makeCharacter(
  45839. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45840. {
  45841. nude: {
  45842. height: math.unit(8, "feet"),
  45843. weight: math.unit(225, "lb"),
  45844. name: "Nude",
  45845. image: {
  45846. source: "./media/characters/marvy/nude.svg",
  45847. extra: 1900/1683,
  45848. bottom: 89/1989
  45849. }
  45850. },
  45851. dressed: {
  45852. height: math.unit(8, "feet"),
  45853. weight: math.unit(225, "lb"),
  45854. name: "Dressed",
  45855. image: {
  45856. source: "./media/characters/marvy/dressed.svg",
  45857. extra: 1900/1683,
  45858. bottom: 89/1989
  45859. }
  45860. },
  45861. head: {
  45862. height: math.unit(2.85, "feet"),
  45863. name: "Head",
  45864. image: {
  45865. source: "./media/characters/marvy/head.svg"
  45866. }
  45867. },
  45868. },
  45869. [
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(8, "feet"),
  45873. default: true
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45879. {
  45880. front: {
  45881. height: math.unit(8, "feet"),
  45882. weight: math.unit(250, "lb"),
  45883. name: "Front",
  45884. image: {
  45885. source: "./media/characters/leah/front.svg",
  45886. extra: 1257/1149,
  45887. bottom: 109/1366
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Normal",
  45894. height: math.unit(8, "feet"),
  45895. default: true
  45896. },
  45897. {
  45898. name: "Minimacro",
  45899. height: math.unit(40, "feet")
  45900. },
  45901. {
  45902. name: "Macro",
  45903. height: math.unit(124, "feet")
  45904. },
  45905. {
  45906. name: "Megamacro",
  45907. height: math.unit(850, "feet")
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45913. {
  45914. side: {
  45915. height: math.unit(13 + 6/12, "feet"),
  45916. weight: math.unit(3200, "lb"),
  45917. name: "Side",
  45918. image: {
  45919. source: "./media/characters/alvir/side.svg",
  45920. extra: 896/589,
  45921. bottom: 26/922
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(13 + 6/12, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45935. {
  45936. front: {
  45937. height: math.unit(5 + 4/12, "feet"),
  45938. weight: math.unit(236, "lb"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/zaina-khalil/front.svg",
  45942. extra: 1533/1485,
  45943. bottom: 94/1627
  45944. }
  45945. },
  45946. side: {
  45947. height: math.unit(5 + 4/12, "feet"),
  45948. weight: math.unit(236, "lb"),
  45949. name: "Side",
  45950. image: {
  45951. source: "./media/characters/zaina-khalil/side.svg",
  45952. extra: 1537/1498,
  45953. bottom: 66/1603
  45954. }
  45955. },
  45956. back: {
  45957. height: math.unit(5 + 4/12, "feet"),
  45958. weight: math.unit(236, "lb"),
  45959. name: "Back",
  45960. image: {
  45961. source: "./media/characters/zaina-khalil/back.svg",
  45962. extra: 1546/1494,
  45963. bottom: 89/1635
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Normal",
  45970. height: math.unit(5 + 4/12, "feet"),
  45971. default: true
  45972. },
  45973. ]
  45974. ))
  45975. characterMakers.push(() => makeCharacter(
  45976. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45977. {
  45978. side: {
  45979. height: math.unit(12, "feet"),
  45980. weight: math.unit(4000, "lb"),
  45981. name: "Side",
  45982. image: {
  45983. source: "./media/characters/terry/side.svg",
  45984. extra: 1518/1439,
  45985. bottom: 149/1667
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(12, "feet"),
  45993. default: true
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(12, "feet"),
  46002. weight: math.unit(1500, "lb"),
  46003. name: "Front",
  46004. image: {
  46005. source: "./media/characters/kahea/front.svg",
  46006. extra: 1722/1617,
  46007. bottom: 179/1901
  46008. }
  46009. },
  46010. },
  46011. [
  46012. {
  46013. name: "Normal",
  46014. height: math.unit(12, "feet"),
  46015. default: true
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46021. {
  46022. demonFront: {
  46023. height: math.unit(36, "feet"),
  46024. name: "Front",
  46025. image: {
  46026. source: "./media/characters/alex-xuria/demon-front.svg",
  46027. extra: 1705/1673,
  46028. bottom: 198/1903
  46029. },
  46030. form: "demon",
  46031. default: true
  46032. },
  46033. demonBack: {
  46034. height: math.unit(36, "feet"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/alex-xuria/demon-back.svg",
  46038. extra: 1725/1693,
  46039. bottom: 70/1795
  46040. },
  46041. form: "demon"
  46042. },
  46043. demonHead: {
  46044. height: math.unit(2.14, "meters"),
  46045. name: "Head",
  46046. image: {
  46047. source: "./media/characters/alex-xuria/demon-head.svg"
  46048. },
  46049. form: "demon"
  46050. },
  46051. demonHand: {
  46052. height: math.unit(1.61, "meters"),
  46053. name: "Hand",
  46054. image: {
  46055. source: "./media/characters/alex-xuria/demon-hand.svg"
  46056. },
  46057. form: "demon"
  46058. },
  46059. demonPaw: {
  46060. height: math.unit(1.35, "meters"),
  46061. name: "Paw",
  46062. image: {
  46063. source: "./media/characters/alex-xuria/demon-paw.svg"
  46064. },
  46065. form: "demon"
  46066. },
  46067. demonFoot: {
  46068. height: math.unit(2.2, "meters"),
  46069. name: "Foot",
  46070. image: {
  46071. source: "./media/characters/alex-xuria/demon-foot.svg"
  46072. },
  46073. form: "demon"
  46074. },
  46075. demonCock: {
  46076. height: math.unit(1.74, "meters"),
  46077. name: "Cock",
  46078. image: {
  46079. source: "./media/characters/alex-xuria/demon-cock.svg"
  46080. },
  46081. form: "demon"
  46082. },
  46083. demonTailClosed: {
  46084. height: math.unit(1.47, "meters"),
  46085. name: "Tail (Closed)",
  46086. image: {
  46087. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46088. },
  46089. form: "demon"
  46090. },
  46091. demonTailOpen: {
  46092. height: math.unit(2.85, "meters"),
  46093. name: "Tail (Open)",
  46094. image: {
  46095. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46096. },
  46097. form: "demon"
  46098. },
  46099. incubusFront: {
  46100. height: math.unit(12, "feet"),
  46101. name: "Front",
  46102. image: {
  46103. source: "./media/characters/alex-xuria/incubus-front.svg",
  46104. extra: 1754/1677,
  46105. bottom: 125/1879
  46106. },
  46107. form: "incubus",
  46108. default: true
  46109. },
  46110. incubusBack: {
  46111. height: math.unit(12, "feet"),
  46112. name: "Back",
  46113. image: {
  46114. source: "./media/characters/alex-xuria/incubus-back.svg",
  46115. extra: 1702/1647,
  46116. bottom: 30/1732
  46117. },
  46118. form: "incubus"
  46119. },
  46120. incubusHead: {
  46121. height: math.unit(3.45, "feet"),
  46122. name: "Head",
  46123. image: {
  46124. source: "./media/characters/alex-xuria/incubus-head.svg"
  46125. },
  46126. form: "incubus"
  46127. },
  46128. rabbitFront: {
  46129. height: math.unit(6, "feet"),
  46130. name: "Front",
  46131. image: {
  46132. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46133. extra: 1369/1349,
  46134. bottom: 45/1414
  46135. },
  46136. form: "rabbit",
  46137. default: true
  46138. },
  46139. rabbitSide: {
  46140. height: math.unit(6, "feet"),
  46141. name: "Side",
  46142. image: {
  46143. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46144. extra: 1370/1356,
  46145. bottom: 37/1407
  46146. },
  46147. form: "rabbit"
  46148. },
  46149. rabbitBack: {
  46150. height: math.unit(6, "feet"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46154. extra: 1375/1358,
  46155. bottom: 43/1418
  46156. },
  46157. form: "rabbit"
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Normal",
  46163. height: math.unit(6, "feet"),
  46164. default: true,
  46165. form: "rabbit"
  46166. },
  46167. {
  46168. name: "Incubus",
  46169. height: math.unit(12, "feet"),
  46170. default: true,
  46171. form: "incubus"
  46172. },
  46173. {
  46174. name: "Demon",
  46175. height: math.unit(36, "feet"),
  46176. default: true,
  46177. form: "demon"
  46178. }
  46179. ],
  46180. {
  46181. "demon": {
  46182. name: "Demon",
  46183. default: true
  46184. },
  46185. "incubus": {
  46186. name: "Incubus",
  46187. },
  46188. "rabbit": {
  46189. name: "Rabbit"
  46190. }
  46191. }
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(7 + 5/12, "feet"),
  46198. weight: math.unit(510, "lb"),
  46199. name: "Front",
  46200. image: {
  46201. source: "./media/characters/syrup/front.svg",
  46202. extra: 932/916,
  46203. bottom: 26/958
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(7 + 5/12, "feet"),
  46211. default: true
  46212. },
  46213. {
  46214. name: "Big",
  46215. height: math.unit(50, "feet")
  46216. },
  46217. {
  46218. name: "Macro",
  46219. height: math.unit(300, "feet")
  46220. },
  46221. {
  46222. name: "Megamacro",
  46223. height: math.unit(1, "mile")
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(6 + 9/12, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/zeimne/front.svg",
  46235. extra: 1969/1806,
  46236. bottom: 53/2022
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Normal",
  46243. height: math.unit(6 + 9/12, "feet"),
  46244. default: true
  46245. },
  46246. {
  46247. name: "Giant",
  46248. height: math.unit(550, "feet")
  46249. },
  46250. {
  46251. name: "Mega",
  46252. height: math.unit(3, "miles")
  46253. },
  46254. {
  46255. name: "Giga",
  46256. height: math.unit(250, "miles")
  46257. },
  46258. {
  46259. name: "Tera",
  46260. height: math.unit(1, "AU")
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(5 + 2/12, "feet"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/grar/front.svg",
  46272. extra: 1331/1119,
  46273. bottom: 60/1391
  46274. }
  46275. },
  46276. back: {
  46277. height: math.unit(5 + 2/12, "feet"),
  46278. name: "Back",
  46279. image: {
  46280. source: "./media/characters/grar/back.svg",
  46281. extra: 1385/1169,
  46282. bottom: 23/1408
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(5 + 2/12, "feet"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46296. {
  46297. front: {
  46298. height: math.unit(13 + 7/12, "feet"),
  46299. weight: math.unit(2200, "lb"),
  46300. name: "Front",
  46301. image: {
  46302. source: "./media/characters/endraya/front.svg",
  46303. extra: 1289/1215,
  46304. bottom: 50/1339
  46305. }
  46306. },
  46307. nude: {
  46308. height: math.unit(13 + 7/12, "feet"),
  46309. weight: math.unit(2200, "lb"),
  46310. name: "Nude",
  46311. image: {
  46312. source: "./media/characters/endraya/nude.svg",
  46313. extra: 1247/1171,
  46314. bottom: 40/1287
  46315. }
  46316. },
  46317. head: {
  46318. height: math.unit(2.6, "feet"),
  46319. name: "Head",
  46320. image: {
  46321. source: "./media/characters/endraya/head.svg"
  46322. }
  46323. },
  46324. slit: {
  46325. height: math.unit(3.4, "feet"),
  46326. name: "Slit",
  46327. image: {
  46328. source: "./media/characters/endraya/slit.svg"
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(13 + 7/12, "feet"),
  46336. default: true
  46337. },
  46338. {
  46339. name: "Macro",
  46340. height: math.unit(200, "feet")
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(1.81, "meters"),
  46349. weight: math.unit(69, "kg"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/rodryana/front.svg",
  46353. extra: 2002/1921,
  46354. bottom: 53/2055
  46355. }
  46356. },
  46357. back: {
  46358. height: math.unit(1.81, "meters"),
  46359. weight: math.unit(69, "kg"),
  46360. name: "Back",
  46361. image: {
  46362. source: "./media/characters/rodryana/back.svg",
  46363. extra: 1993/1926,
  46364. bottom: 48/2041
  46365. }
  46366. },
  46367. maw: {
  46368. height: math.unit(0.19769417475, "meters"),
  46369. name: "Maw",
  46370. image: {
  46371. source: "./media/characters/rodryana/maw.svg"
  46372. }
  46373. },
  46374. slit: {
  46375. height: math.unit(0.31631067961, "meters"),
  46376. name: "Slit",
  46377. image: {
  46378. source: "./media/characters/rodryana/slit.svg"
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(1.81, "meters")
  46386. },
  46387. {
  46388. name: "Mini Macro",
  46389. height: math.unit(181, "meters")
  46390. },
  46391. {
  46392. name: "Macro",
  46393. height: math.unit(452, "meters"),
  46394. default: true
  46395. },
  46396. {
  46397. name: "Mega Macro",
  46398. height: math.unit(1.375, "km")
  46399. },
  46400. {
  46401. name: "Giga Macro",
  46402. height: math.unit(13.575, "km")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46408. {
  46409. front: {
  46410. height: math.unit(6, "feet"),
  46411. weight: math.unit(1000, "lb"),
  46412. name: "Front",
  46413. image: {
  46414. source: "./media/characters/asaya/front.svg",
  46415. extra: 1460/1200,
  46416. bottom: 71/1531
  46417. }
  46418. },
  46419. },
  46420. [
  46421. {
  46422. name: "Normal",
  46423. height: math.unit(8, "km"),
  46424. default: true
  46425. },
  46426. ]
  46427. ))
  46428. characterMakers.push(() => makeCharacter(
  46429. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46430. {
  46431. front: {
  46432. height: math.unit(3.5, "meters"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/sarzu-and-israz/front.svg",
  46436. extra: 1570/1558,
  46437. bottom: 150/1720
  46438. },
  46439. },
  46440. back: {
  46441. height: math.unit(3.5, "meters"),
  46442. name: "Back",
  46443. image: {
  46444. source: "./media/characters/sarzu-and-israz/back.svg",
  46445. extra: 1523/1509,
  46446. bottom: 132/1655
  46447. },
  46448. },
  46449. frontFemale: {
  46450. height: math.unit(3.5, "meters"),
  46451. name: "Front (Female)",
  46452. image: {
  46453. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46454. extra: 1570/1558,
  46455. bottom: 150/1720
  46456. },
  46457. },
  46458. frontHerm: {
  46459. height: math.unit(3.5, "meters"),
  46460. name: "Front (Herm)",
  46461. image: {
  46462. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46463. extra: 1570/1558,
  46464. bottom: 150/1720
  46465. },
  46466. },
  46467. },
  46468. [
  46469. {
  46470. name: "Normal",
  46471. height: math.unit(3.5, "meters"),
  46472. default: true,
  46473. },
  46474. {
  46475. name: "Macro",
  46476. height: math.unit(65.5, "meters"),
  46477. },
  46478. ],
  46479. ))
  46480. characterMakers.push(() => makeCharacter(
  46481. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46482. {
  46483. front: {
  46484. height: math.unit(6, "feet"),
  46485. weight: math.unit(250, "lb"),
  46486. name: "Front",
  46487. image: {
  46488. source: "./media/characters/zenimma/front.svg",
  46489. extra: 1346/1320,
  46490. bottom: 58/1404
  46491. }
  46492. },
  46493. back: {
  46494. height: math.unit(6, "feet"),
  46495. weight: math.unit(250, "lb"),
  46496. name: "Back",
  46497. image: {
  46498. source: "./media/characters/zenimma/back.svg",
  46499. extra: 1324/1308,
  46500. bottom: 44/1368
  46501. }
  46502. },
  46503. dick: {
  46504. height: math.unit(1.44, "feet"),
  46505. name: "Dick",
  46506. image: {
  46507. source: "./media/characters/zenimma/dick.svg"
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Canon Height",
  46514. height: math.unit(66, "miles"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46521. {
  46522. nude: {
  46523. height: math.unit(6, "feet"),
  46524. weight: math.unit(150, "lb"),
  46525. name: "Nude",
  46526. image: {
  46527. source: "./media/characters/shavon/nude.svg",
  46528. extra: 1242/1096,
  46529. bottom: 98/1340
  46530. }
  46531. },
  46532. dressed: {
  46533. height: math.unit(6, "feet"),
  46534. weight: math.unit(150, "lb"),
  46535. name: "Dressed",
  46536. image: {
  46537. source: "./media/characters/shavon/dressed.svg",
  46538. extra: 1242/1096,
  46539. bottom: 98/1340
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Macro",
  46546. height: math.unit(255, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(6, "feet"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/steph/front.svg",
  46559. extra: 1430/1330,
  46560. bottom: 54/1484
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(6, "feet"),
  46568. default: true
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46574. {
  46575. front: {
  46576. height: math.unit(9, "feet"),
  46577. weight: math.unit(400, "lb"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/kil'aman/front.svg",
  46581. extra: 1210/1159,
  46582. bottom: 109/1319
  46583. }
  46584. },
  46585. head: {
  46586. height: math.unit(2.14, "feet"),
  46587. name: "Head",
  46588. image: {
  46589. source: "./media/characters/kil'aman/head.svg"
  46590. }
  46591. },
  46592. maw: {
  46593. height: math.unit(1.21, "feet"),
  46594. name: "Maw",
  46595. image: {
  46596. source: "./media/characters/kil'aman/maw.svg"
  46597. }
  46598. },
  46599. foot: {
  46600. height: math.unit(1.7, "feet"),
  46601. name: "Foot",
  46602. image: {
  46603. source: "./media/characters/kil'aman/foot.svg"
  46604. }
  46605. },
  46606. dick: {
  46607. height: math.unit(2.1, "feet"),
  46608. name: "Dick",
  46609. image: {
  46610. source: "./media/characters/kil'aman/dick.svg"
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(9, "feet")
  46618. },
  46619. {
  46620. name: "Canon Height",
  46621. height: math.unit(10, "miles"),
  46622. default: true
  46623. },
  46624. {
  46625. name: "Maximum",
  46626. height: math.unit(6e9, "miles")
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46632. {
  46633. front: {
  46634. height: math.unit(90, "feet"),
  46635. weight: math.unit(675000, "lb"),
  46636. name: "Front",
  46637. image: {
  46638. source: "./media/characters/qadan/front.svg",
  46639. extra: 1012/1004,
  46640. bottom: 78/1090
  46641. }
  46642. },
  46643. back: {
  46644. height: math.unit(90, "feet"),
  46645. weight: math.unit(675000, "lb"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/qadan/back.svg",
  46649. extra: 1042/1031,
  46650. bottom: 55/1097
  46651. }
  46652. },
  46653. armored: {
  46654. height: math.unit(90, "feet"),
  46655. weight: math.unit(675000, "lb"),
  46656. name: "Armored",
  46657. image: {
  46658. source: "./media/characters/qadan/armored.svg",
  46659. extra: 1047/1037,
  46660. bottom: 48/1095
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(90, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(6, "feet"),
  46677. weight: math.unit(225, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/brooke/front.svg",
  46681. extra: 1050/1010,
  46682. bottom: 66/1116
  46683. }
  46684. },
  46685. back: {
  46686. height: math.unit(6, "feet"),
  46687. weight: math.unit(225, "lb"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/brooke/back.svg",
  46691. extra: 1053/1013,
  46692. bottom: 41/1094
  46693. }
  46694. },
  46695. dressed: {
  46696. height: math.unit(6, "feet"),
  46697. weight: math.unit(225, "lb"),
  46698. name: "Dressed",
  46699. image: {
  46700. source: "./media/characters/brooke/dressed.svg",
  46701. extra: 1050/1010,
  46702. bottom: 66/1116
  46703. }
  46704. },
  46705. },
  46706. [
  46707. {
  46708. name: "Canon Height",
  46709. height: math.unit(500, "miles"),
  46710. default: true
  46711. },
  46712. ]
  46713. ))
  46714. characterMakers.push(() => makeCharacter(
  46715. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46716. {
  46717. front: {
  46718. height: math.unit(6 + 2/12, "feet"),
  46719. weight: math.unit(210, "lb"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/wubs/front.svg",
  46723. extra: 1345/1325,
  46724. bottom: 70/1415
  46725. }
  46726. },
  46727. back: {
  46728. height: math.unit(6 + 2/12, "feet"),
  46729. weight: math.unit(210, "lb"),
  46730. name: "Back",
  46731. image: {
  46732. source: "./media/characters/wubs/back.svg",
  46733. extra: 1296/1275,
  46734. bottom: 58/1354
  46735. }
  46736. },
  46737. },
  46738. [
  46739. {
  46740. name: "Normal",
  46741. height: math.unit(6 + 2/12, "feet"),
  46742. default: true
  46743. },
  46744. {
  46745. name: "Macro",
  46746. height: math.unit(1000, "feet")
  46747. },
  46748. {
  46749. name: "Megamacro",
  46750. height: math.unit(1, "mile")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(4, "feet"),
  46759. weight: math.unit(120, "lb"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/blue/front.svg",
  46763. extra: 1636/1525,
  46764. bottom: 43/1679
  46765. }
  46766. },
  46767. back: {
  46768. height: math.unit(4, "feet"),
  46769. weight: math.unit(120, "lb"),
  46770. name: "Back",
  46771. image: {
  46772. source: "./media/characters/blue/back.svg",
  46773. extra: 1660/1560,
  46774. bottom: 57/1717
  46775. }
  46776. },
  46777. paws: {
  46778. height: math.unit(0.826, "feet"),
  46779. name: "Paws",
  46780. image: {
  46781. source: "./media/characters/blue/paws.svg"
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Micro",
  46788. height: math.unit(3, "inches")
  46789. },
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(4, "feet"),
  46793. default: true
  46794. },
  46795. {
  46796. name: "Femenine Form",
  46797. height: math.unit(14, "feet")
  46798. },
  46799. {
  46800. name: "Werebat Form",
  46801. height: math.unit(18, "feet")
  46802. },
  46803. ]
  46804. ))
  46805. characterMakers.push(() => makeCharacter(
  46806. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46807. {
  46808. female: {
  46809. height: math.unit(7 + 4/12, "feet"),
  46810. weight: math.unit(243, "lb"),
  46811. name: "Female",
  46812. image: {
  46813. source: "./media/characters/kaya/female.svg",
  46814. extra: 975/898,
  46815. bottom: 34/1009
  46816. }
  46817. },
  46818. herm: {
  46819. height: math.unit(7 + 4/12, "feet"),
  46820. weight: math.unit(243, "lb"),
  46821. name: "Herm",
  46822. image: {
  46823. source: "./media/characters/kaya/herm.svg",
  46824. extra: 975/898,
  46825. bottom: 34/1009
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(7 + 4/12, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46839. {
  46840. female: {
  46841. height: math.unit(9 + 4/12, "feet"),
  46842. weight: math.unit(398, "lb"),
  46843. name: "Female",
  46844. image: {
  46845. source: "./media/characters/kassandra/female.svg",
  46846. extra: 908/839,
  46847. bottom: 61/969
  46848. }
  46849. },
  46850. intersex: {
  46851. height: math.unit(9 + 4/12, "feet"),
  46852. weight: math.unit(398, "lb"),
  46853. name: "Intersex",
  46854. image: {
  46855. source: "./media/characters/kassandra/intersex.svg",
  46856. extra: 908/839,
  46857. bottom: 61/969
  46858. }
  46859. },
  46860. },
  46861. [
  46862. {
  46863. name: "Normal",
  46864. height: math.unit(9 + 4/12, "feet"),
  46865. default: true
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46871. {
  46872. front: {
  46873. height: math.unit(3, "meters"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/amy/front.svg",
  46877. extra: 1380/1343,
  46878. bottom: 70/1450
  46879. }
  46880. },
  46881. back: {
  46882. height: math.unit(3, "meters"),
  46883. name: "Back",
  46884. image: {
  46885. source: "./media/characters/amy/back.svg",
  46886. extra: 1380/1347,
  46887. bottom: 66/1446
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(3, "meters"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46901. {
  46902. side: {
  46903. height: math.unit(47, "cm"),
  46904. weight: math.unit(10.8, "kg"),
  46905. name: "Side",
  46906. image: {
  46907. source: "./media/characters/alphaschakal/side.svg",
  46908. extra: 1058/568,
  46909. bottom: 62/1120
  46910. }
  46911. },
  46912. back: {
  46913. height: math.unit(78, "cm"),
  46914. weight: math.unit(10.8, "kg"),
  46915. name: "Back",
  46916. image: {
  46917. source: "./media/characters/alphaschakal/back.svg",
  46918. extra: 1102/942,
  46919. bottom: 185/1287
  46920. }
  46921. },
  46922. head: {
  46923. height: math.unit(28, "cm"),
  46924. name: "Head",
  46925. image: {
  46926. source: "./media/characters/alphaschakal/head.svg",
  46927. extra: 696/508,
  46928. bottom: 0/696
  46929. }
  46930. },
  46931. paw: {
  46932. height: math.unit(16, "cm"),
  46933. name: "Paw",
  46934. image: {
  46935. source: "./media/characters/alphaschakal/paw.svg"
  46936. }
  46937. },
  46938. },
  46939. [
  46940. {
  46941. name: "Normal",
  46942. height: math.unit(47, "cm"),
  46943. default: true
  46944. },
  46945. {
  46946. name: "Macro",
  46947. height: math.unit(340, "cm")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(36, "earths"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/ecobyss/front.svg",
  46959. extra: 1282/1215,
  46960. bottom: 11/1293
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(36, "earths"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/ecobyss/back.svg",
  46968. extra: 1291/1222,
  46969. bottom: 8/1299
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(36, "earths"),
  46977. default: true
  46978. },
  46979. ]
  46980. ))
  46981. characterMakers.push(() => makeCharacter(
  46982. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46983. {
  46984. front: {
  46985. height: math.unit(12, "feet"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/vasuk/front.svg",
  46989. extra: 1326/1207,
  46990. bottom: 64/1390
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(12, "feet"),
  46998. default: true
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47004. {
  47005. side: {
  47006. height: math.unit(100, "feet"),
  47007. name: "Side",
  47008. image: {
  47009. source: "./media/characters/linneaus/side.svg",
  47010. extra: 987/807,
  47011. bottom: 47/1034
  47012. }
  47013. },
  47014. },
  47015. [
  47016. {
  47017. name: "Macro",
  47018. height: math.unit(100, "feet"),
  47019. default: true
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(8, "feet"),
  47028. weight: math.unit(1200, "lb"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/nyterious-daligdig/front.svg",
  47032. extra: 1284/1094,
  47033. bottom: 84/1368
  47034. }
  47035. },
  47036. back: {
  47037. height: math.unit(8, "feet"),
  47038. weight: math.unit(1200, "lb"),
  47039. name: "Back",
  47040. image: {
  47041. source: "./media/characters/nyterious-daligdig/back.svg",
  47042. extra: 1301/1121,
  47043. bottom: 129/1430
  47044. }
  47045. },
  47046. mouth: {
  47047. height: math.unit(1.464, "feet"),
  47048. name: "Mouth",
  47049. image: {
  47050. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47051. }
  47052. },
  47053. },
  47054. [
  47055. {
  47056. name: "Small",
  47057. height: math.unit(8, "feet"),
  47058. default: true
  47059. },
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(15, "feet")
  47063. },
  47064. {
  47065. name: "Macro",
  47066. height: math.unit(90, "feet")
  47067. },
  47068. ]
  47069. ))
  47070. characterMakers.push(() => makeCharacter(
  47071. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47072. {
  47073. front: {
  47074. height: math.unit(7 + 4/12, "feet"),
  47075. weight: math.unit(252, "lb"),
  47076. name: "Front",
  47077. image: {
  47078. source: "./media/characters/bandel/front.svg",
  47079. extra: 1946/1775,
  47080. bottom: 26/1972
  47081. }
  47082. },
  47083. back: {
  47084. height: math.unit(7 + 4/12, "feet"),
  47085. weight: math.unit(252, "lb"),
  47086. name: "Back",
  47087. image: {
  47088. source: "./media/characters/bandel/back.svg",
  47089. extra: 1940/1770,
  47090. bottom: 25/1965
  47091. }
  47092. },
  47093. maw: {
  47094. height: math.unit(2.15, "feet"),
  47095. name: "Maw",
  47096. image: {
  47097. source: "./media/characters/bandel/maw.svg"
  47098. }
  47099. },
  47100. stomach: {
  47101. height: math.unit(1.95, "feet"),
  47102. name: "Stomach",
  47103. image: {
  47104. source: "./media/characters/bandel/stomach.svg"
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(7 + 4/12, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47118. {
  47119. front: {
  47120. height: math.unit(10 + 5/12, "feet"),
  47121. weight: math.unit(773.5, "kg"),
  47122. name: "Front",
  47123. image: {
  47124. source: "./media/characters/zed/front.svg",
  47125. extra: 987/941,
  47126. bottom: 52/1039
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Short",
  47133. height: math.unit(5 + 4/12, "feet")
  47134. },
  47135. {
  47136. name: "Average",
  47137. height: math.unit(10 + 5/12, "feet"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Mini-Macro",
  47142. height: math.unit(24 + 9/12, "feet")
  47143. },
  47144. {
  47145. name: "Macro",
  47146. height: math.unit(249, "feet")
  47147. },
  47148. {
  47149. name: "Mega-Macro",
  47150. height: math.unit(12490, "feet")
  47151. },
  47152. {
  47153. name: "Giga-Macro",
  47154. height: math.unit(24.9, "miles")
  47155. },
  47156. {
  47157. name: "Tera-Macro",
  47158. height: math.unit(24900, "miles")
  47159. },
  47160. {
  47161. name: "Cosmic Scale",
  47162. height: math.unit(38.9, "lightyears")
  47163. },
  47164. {
  47165. name: "Universal Scale",
  47166. height: math.unit(138e12, "lightyears")
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(1561, "inches"),
  47175. name: "Front",
  47176. image: {
  47177. source: "./media/characters/ivan/front.svg",
  47178. extra: 1126/1071,
  47179. bottom: 26/1152
  47180. }
  47181. },
  47182. back: {
  47183. height: math.unit(1561, "inches"),
  47184. name: "Back",
  47185. image: {
  47186. source: "./media/characters/ivan/back.svg",
  47187. extra: 1134/1079,
  47188. bottom: 30/1164
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(1561, "inches"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(5 + 7/12, "feet"),
  47205. weight: math.unit(150, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/robin-arctic-hare/front.svg",
  47209. extra: 1148/974,
  47210. bottom: 20/1168
  47211. }
  47212. },
  47213. },
  47214. [
  47215. {
  47216. name: "Normal",
  47217. height: math.unit(5 + 7/12, "feet"),
  47218. default: true
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47224. {
  47225. side: {
  47226. height: math.unit(5, "feet"),
  47227. name: "Side",
  47228. image: {
  47229. source: "./media/characters/birch/side.svg",
  47230. extra: 985/796,
  47231. bottom: 111/1096
  47232. }
  47233. },
  47234. },
  47235. [
  47236. {
  47237. name: "Normal",
  47238. height: math.unit(5, "feet"),
  47239. default: true
  47240. },
  47241. ]
  47242. ))
  47243. characterMakers.push(() => makeCharacter(
  47244. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47245. {
  47246. front: {
  47247. height: math.unit(4, "feet"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/rasp/front.svg",
  47251. extra: 561/478,
  47252. bottom: 74/635
  47253. }
  47254. },
  47255. },
  47256. [
  47257. {
  47258. name: "Normal",
  47259. height: math.unit(4, "feet"),
  47260. default: true
  47261. },
  47262. ]
  47263. ))
  47264. characterMakers.push(() => makeCharacter(
  47265. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47266. {
  47267. front: {
  47268. height: math.unit(4 + 6/12, "feet"),
  47269. name: "Front",
  47270. image: {
  47271. source: "./media/characters/agatha/front.svg",
  47272. extra: 947/933,
  47273. bottom: 42/989
  47274. }
  47275. },
  47276. back: {
  47277. height: math.unit(4 + 6/12, "feet"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/agatha/back.svg",
  47281. extra: 935/922,
  47282. bottom: 48/983
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(4 + 6 /12, "feet"),
  47290. default: true
  47291. },
  47292. {
  47293. name: "Max Size",
  47294. height: math.unit(500, "feet")
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47300. {
  47301. side: {
  47302. height: math.unit(30, "feet"),
  47303. name: "Side",
  47304. image: {
  47305. source: "./media/characters/roggy/side.svg",
  47306. extra: 909/643,
  47307. bottom: 63/972
  47308. }
  47309. },
  47310. lounging: {
  47311. height: math.unit(20, "feet"),
  47312. name: "Lounging",
  47313. image: {
  47314. source: "./media/characters/roggy/lounging.svg",
  47315. extra: 643/479,
  47316. bottom: 145/788
  47317. }
  47318. },
  47319. handpaw: {
  47320. height: math.unit(13.1, "feet"),
  47321. name: "Handpaw",
  47322. image: {
  47323. source: "./media/characters/roggy/handpaw.svg"
  47324. }
  47325. },
  47326. footpaw: {
  47327. height: math.unit(15.8, "feet"),
  47328. name: "Footpaw",
  47329. image: {
  47330. source: "./media/characters/roggy/footpaw.svg"
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Menacing",
  47337. height: math.unit(30, "feet"),
  47338. default: true
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(5 + 7/12, "feet"),
  47347. weight: math.unit(135, "lb"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/naomi/front.svg",
  47351. extra: 1209/1154,
  47352. bottom: 129/1338
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(5 + 7/12, "feet"),
  47357. weight: math.unit(135, "lb"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/naomi/back.svg",
  47361. extra: 1252/1190,
  47362. bottom: 23/1275
  47363. }
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Normal",
  47369. height: math.unit(5 + 7 /12, "feet"),
  47370. default: true
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47376. {
  47377. side: {
  47378. height: math.unit(35, "meters"),
  47379. name: "Side",
  47380. image: {
  47381. source: "./media/characters/kimpi/side.svg",
  47382. extra: 419/382,
  47383. bottom: 63/482
  47384. }
  47385. },
  47386. hand: {
  47387. height: math.unit(8.96, "meters"),
  47388. name: "Hand",
  47389. image: {
  47390. source: "./media/characters/kimpi/hand.svg"
  47391. }
  47392. },
  47393. },
  47394. [
  47395. {
  47396. name: "Normal",
  47397. height: math.unit(35, "meters"),
  47398. default: true
  47399. },
  47400. ]
  47401. ))
  47402. characterMakers.push(() => makeCharacter(
  47403. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47404. {
  47405. front: {
  47406. height: math.unit(4 + 4/12, "feet"),
  47407. name: "Front",
  47408. image: {
  47409. source: "./media/characters/pepper-purrloin/front.svg",
  47410. extra: 1141/1024,
  47411. bottom: 21/1162
  47412. }
  47413. },
  47414. },
  47415. [
  47416. {
  47417. name: "Normal",
  47418. height: math.unit(4 + 4/12, "feet"),
  47419. default: true
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(6 + 2/12, "feet"),
  47428. name: "Front",
  47429. image: {
  47430. source: "./media/characters/raphael/front.svg",
  47431. extra: 1101/962,
  47432. bottom: 59/1160
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Normal",
  47439. height: math.unit(6 + 2/12, "feet"),
  47440. default: true
  47441. },
  47442. ]
  47443. ))
  47444. characterMakers.push(() => makeCharacter(
  47445. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47446. {
  47447. front: {
  47448. height: math.unit(6, "feet"),
  47449. weight: math.unit(150, "lb"),
  47450. name: "Front",
  47451. image: {
  47452. source: "./media/characters/victor-williams/front.svg",
  47453. extra: 1894/1825,
  47454. bottom: 67/1961
  47455. }
  47456. },
  47457. },
  47458. [
  47459. {
  47460. name: "Normal",
  47461. height: math.unit(6, "feet"),
  47462. default: true
  47463. },
  47464. ]
  47465. ))
  47466. characterMakers.push(() => makeCharacter(
  47467. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47468. {
  47469. front: {
  47470. height: math.unit(5 + 8/12, "feet"),
  47471. weight: math.unit(150, "lb"),
  47472. name: "Front",
  47473. image: {
  47474. source: "./media/characters/rachel/front.svg",
  47475. extra: 1902/1787,
  47476. bottom: 46/1948
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Base Height",
  47483. height: math.unit(5 + 8/12, "feet"),
  47484. default: true
  47485. },
  47486. {
  47487. name: "Macro",
  47488. height: math.unit(200, "feet")
  47489. },
  47490. {
  47491. name: "Mega Macro",
  47492. height: math.unit(1, "mile")
  47493. },
  47494. {
  47495. name: "Giga Macro",
  47496. height: math.unit(1500, "miles")
  47497. },
  47498. {
  47499. name: "Tera Macro",
  47500. height: math.unit(8000, "miles")
  47501. },
  47502. {
  47503. name: "Tera Macro+",
  47504. height: math.unit(2e5, "miles")
  47505. },
  47506. ]
  47507. ))
  47508. characterMakers.push(() => makeCharacter(
  47509. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47510. {
  47511. front: {
  47512. height: math.unit(6.5, "feet"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47516. extra: 860/819,
  47517. bottom: 307/1167
  47518. }
  47519. },
  47520. back: {
  47521. height: math.unit(6.5, "feet"),
  47522. name: "Back",
  47523. image: {
  47524. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47525. extra: 880/837,
  47526. bottom: 395/1275
  47527. }
  47528. },
  47529. sleeping: {
  47530. height: math.unit(2.79, "feet"),
  47531. name: "Sleeping",
  47532. image: {
  47533. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47534. extra: 465/383,
  47535. bottom: 263/728
  47536. }
  47537. },
  47538. maw: {
  47539. height: math.unit(2.52, "feet"),
  47540. name: "Maw",
  47541. image: {
  47542. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(6.5, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(5, "feet"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/nova-nerium/front.svg",
  47562. extra: 1548/1392,
  47563. bottom: 374/1922
  47564. }
  47565. },
  47566. back: {
  47567. height: math.unit(5, "feet"),
  47568. name: "Back",
  47569. image: {
  47570. source: "./media/characters/nova-nerium/back.svg",
  47571. extra: 1658/1468,
  47572. bottom: 257/1915
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Normal",
  47579. height: math.unit(5, "feet"),
  47580. default: true
  47581. },
  47582. ]
  47583. ))
  47584. characterMakers.push(() => makeCharacter(
  47585. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47586. {
  47587. front: {
  47588. height: math.unit(5 + 4/12, "feet"),
  47589. name: "Front",
  47590. image: {
  47591. source: "./media/characters/ashe-pyriph/front.svg",
  47592. extra: 1935/1747,
  47593. bottom: 60/1995
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(5 + 4/12, "feet"),
  47601. default: true
  47602. },
  47603. ]
  47604. ))
  47605. characterMakers.push(() => makeCharacter(
  47606. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47607. {
  47608. front: {
  47609. height: math.unit(8.7, "feet"),
  47610. name: "Front",
  47611. image: {
  47612. source: "./media/characters/flicker-wisp/front.svg",
  47613. extra: 1835/1613,
  47614. bottom: 449/2284
  47615. }
  47616. },
  47617. side: {
  47618. height: math.unit(8.7, "feet"),
  47619. name: "Side",
  47620. image: {
  47621. source: "./media/characters/flicker-wisp/side.svg",
  47622. extra: 1841/1642,
  47623. bottom: 336/2177
  47624. },
  47625. default: true
  47626. },
  47627. maw: {
  47628. height: math.unit(3.35, "feet"),
  47629. name: "Maw",
  47630. image: {
  47631. source: "./media/characters/flicker-wisp/maw.svg",
  47632. extra: 2338/1506,
  47633. bottom: 0/2338
  47634. }
  47635. },
  47636. ovipositor: {
  47637. height: math.unit(4.95, "feet"),
  47638. name: "Ovipositor",
  47639. image: {
  47640. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47641. }
  47642. },
  47643. egg: {
  47644. height: math.unit(0.385, "feet"),
  47645. weight: math.unit(2, "lb"),
  47646. name: "Egg",
  47647. image: {
  47648. source: "./media/characters/flicker-wisp/egg.svg"
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(8.7, "feet"),
  47656. default: true
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47662. {
  47663. side: {
  47664. height: math.unit(11, "feet"),
  47665. name: "Side",
  47666. image: {
  47667. source: "./media/characters/faefnul/side.svg",
  47668. extra: 1100/1007,
  47669. bottom: 0/1100
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(11, "feet"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47683. {
  47684. front: {
  47685. height: math.unit(6 + 2/12, "feet"),
  47686. name: "Front",
  47687. image: {
  47688. source: "./media/characters/shady/front.svg",
  47689. extra: 502/461,
  47690. bottom: 9/511
  47691. }
  47692. },
  47693. kneeling: {
  47694. height: math.unit(4.6, "feet"),
  47695. name: "Kneeling",
  47696. image: {
  47697. source: "./media/characters/shady/kneeling.svg",
  47698. extra: 1328/1219,
  47699. bottom: 117/1445
  47700. }
  47701. },
  47702. maw: {
  47703. height: math.unit(2, "feet"),
  47704. name: "Maw",
  47705. image: {
  47706. source: "./media/characters/shady/maw.svg"
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Nano",
  47713. height: math.unit(1, "mm")
  47714. },
  47715. {
  47716. name: "Micro",
  47717. height: math.unit(12, "mm")
  47718. },
  47719. {
  47720. name: "Tiny",
  47721. height: math.unit(3, "inches")
  47722. },
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(6 + 2/12, "feet"),
  47726. default: true
  47727. },
  47728. {
  47729. name: "Big",
  47730. height: math.unit(15, "feet")
  47731. },
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(150, "feet")
  47735. },
  47736. {
  47737. name: "Titanic",
  47738. height: math.unit(500, "feet")
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47744. {
  47745. front: {
  47746. height: math.unit(12, "feet"),
  47747. name: "Front",
  47748. image: {
  47749. source: "./media/characters/fenrir/front.svg",
  47750. extra: 968/875,
  47751. bottom: 22/990
  47752. }
  47753. },
  47754. },
  47755. [
  47756. {
  47757. name: "Big",
  47758. height: math.unit(12, "feet"),
  47759. default: true
  47760. },
  47761. ]
  47762. ))
  47763. characterMakers.push(() => makeCharacter(
  47764. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47765. {
  47766. front: {
  47767. height: math.unit(5 + 4/12, "feet"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/makar/front.svg",
  47771. extra: 1181/1112,
  47772. bottom: 78/1259
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(5 + 4/12, "feet"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47786. {
  47787. front: {
  47788. height: math.unit(5 + 7/12, "feet"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/callow/front.svg",
  47792. extra: 1482/1304,
  47793. bottom: 23/1505
  47794. }
  47795. },
  47796. back: {
  47797. height: math.unit(5 + 7/12, "feet"),
  47798. name: "Back",
  47799. image: {
  47800. source: "./media/characters/callow/back.svg",
  47801. extra: 1484/1296,
  47802. bottom: 25/1509
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Micro",
  47809. height: math.unit(3, "inches"),
  47810. default: true
  47811. },
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(5 + 7/12, "feet")
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(6 + 2/12, "feet"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/natel/front.svg",
  47826. extra: 1833/1692,
  47827. bottom: 166/1999
  47828. }
  47829. },
  47830. },
  47831. [
  47832. {
  47833. name: "Normal",
  47834. height: math.unit(6 + 2/12, "feet"),
  47835. default: true
  47836. },
  47837. ]
  47838. ))
  47839. characterMakers.push(() => makeCharacter(
  47840. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47841. {
  47842. front: {
  47843. height: math.unit(1.75, "meters"),
  47844. name: "Front",
  47845. image: {
  47846. source: "./media/characters/misu/front.svg",
  47847. extra: 1690/1558,
  47848. bottom: 234/1924
  47849. }
  47850. },
  47851. back: {
  47852. height: math.unit(1.75, "meters"),
  47853. name: "Back",
  47854. image: {
  47855. source: "./media/characters/misu/back.svg",
  47856. extra: 1762/1618,
  47857. bottom: 146/1908
  47858. }
  47859. },
  47860. frontNude: {
  47861. height: math.unit(1.75, "meters"),
  47862. name: "Front (Nude)",
  47863. image: {
  47864. source: "./media/characters/misu/front-nude.svg",
  47865. extra: 1690/1558,
  47866. bottom: 234/1924
  47867. }
  47868. },
  47869. backNude: {
  47870. height: math.unit(1.75, "meters"),
  47871. name: "Back (Nude)",
  47872. image: {
  47873. source: "./media/characters/misu/back-nude.svg",
  47874. extra: 1762/1618,
  47875. bottom: 146/1908
  47876. }
  47877. },
  47878. frontErect: {
  47879. height: math.unit(1.75, "meters"),
  47880. name: "Front (Erect)",
  47881. image: {
  47882. source: "./media/characters/misu/front-erect.svg",
  47883. extra: 1690/1558,
  47884. bottom: 234/1924
  47885. }
  47886. },
  47887. maw: {
  47888. height: math.unit(0.47, "meters"),
  47889. name: "Maw",
  47890. image: {
  47891. source: "./media/characters/misu/maw.svg"
  47892. }
  47893. },
  47894. head: {
  47895. height: math.unit(0.35, "meters"),
  47896. name: "Head",
  47897. image: {
  47898. source: "./media/characters/misu/head.svg"
  47899. }
  47900. },
  47901. rear: {
  47902. height: math.unit(0.47, "meters"),
  47903. name: "Rear",
  47904. image: {
  47905. source: "./media/characters/misu/rear.svg"
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(1.75, "meters")
  47913. },
  47914. {
  47915. name: "Not good for the people",
  47916. height: math.unit(42, "meters")
  47917. },
  47918. {
  47919. name: "Not good for the neighborhood",
  47920. height: math.unit(135, "meters")
  47921. },
  47922. {
  47923. name: "Bit bigger problem",
  47924. height: math.unit(380, "meters"),
  47925. default: true
  47926. },
  47927. {
  47928. name: "Not good for the city",
  47929. height: math.unit(1.5, "km")
  47930. },
  47931. {
  47932. name: "Not good for the county",
  47933. height: math.unit(5.5, "km")
  47934. },
  47935. {
  47936. name: "Not good for the state",
  47937. height: math.unit(25, "km")
  47938. },
  47939. {
  47940. name: "Not good for the country",
  47941. height: math.unit(125, "km")
  47942. },
  47943. {
  47944. name: "Not good for the continent",
  47945. height: math.unit(2100, "km")
  47946. },
  47947. {
  47948. name: "Not good for the planet",
  47949. height: math.unit(35000, "km")
  47950. },
  47951. {
  47952. name: "Just no",
  47953. height: math.unit(8.5e18, "km")
  47954. },
  47955. ]
  47956. ))
  47957. characterMakers.push(() => makeCharacter(
  47958. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47959. {
  47960. front: {
  47961. height: math.unit(6.5, "feet"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/poppy/front.svg",
  47965. extra: 1878/1812,
  47966. bottom: 43/1921
  47967. }
  47968. },
  47969. feet: {
  47970. height: math.unit(1.06, "feet"),
  47971. name: "Feet",
  47972. image: {
  47973. source: "./media/characters/poppy/feet.svg",
  47974. extra: 1083/1083,
  47975. bottom: 87/1170
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Human",
  47982. height: math.unit(6.5, "feet")
  47983. },
  47984. {
  47985. name: "Default",
  47986. height: math.unit(300, "feet"),
  47987. default: true
  47988. },
  47989. {
  47990. name: "Huge",
  47991. height: math.unit(850, "feet")
  47992. },
  47993. {
  47994. name: "Mega",
  47995. height: math.unit(8000, "feet")
  47996. },
  47997. {
  47998. name: "Giga",
  47999. height: math.unit(300, "miles")
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48005. {
  48006. bipedal: {
  48007. height: math.unit(7, "feet"),
  48008. name: "Bipedal",
  48009. image: {
  48010. source: "./media/characters/zener/bipedal.svg",
  48011. extra: 874/805,
  48012. bottom: 109/983
  48013. }
  48014. },
  48015. quadrupedal: {
  48016. height: math.unit(4.64, "feet"),
  48017. name: "Quadrupedal",
  48018. image: {
  48019. source: "./media/characters/zener/quadrupedal.svg",
  48020. extra: 638/507,
  48021. bottom: 190/828
  48022. }
  48023. },
  48024. cock: {
  48025. height: math.unit(18, "inches"),
  48026. name: "Cock",
  48027. image: {
  48028. source: "./media/characters/zener/cock.svg"
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Normal",
  48035. height: math.unit(7, "feet"),
  48036. default: true
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48042. {
  48043. nude: {
  48044. height: math.unit(5 + 6/12, "feet"),
  48045. name: "Nude",
  48046. image: {
  48047. source: "./media/characters/charlie-dog/nude.svg",
  48048. extra: 768/734,
  48049. bottom: 26/794
  48050. }
  48051. },
  48052. dressed: {
  48053. height: math.unit(5 + 6/12, "feet"),
  48054. name: "Dressed",
  48055. image: {
  48056. source: "./media/characters/charlie-dog/dressed.svg",
  48057. extra: 768/734,
  48058. bottom: 26/794
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Normal",
  48065. height: math.unit(5 + 6/12, "feet"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(6 + 4/12, "feet"),
  48075. name: "Front",
  48076. image: {
  48077. source: "./media/characters/ir'istrasz/front.svg",
  48078. extra: 1014/977,
  48079. bottom: 65/1079
  48080. }
  48081. },
  48082. back: {
  48083. height: math.unit(6 + 4/12, "feet"),
  48084. name: "Back",
  48085. image: {
  48086. source: "./media/characters/ir'istrasz/back.svg",
  48087. extra: 1024/992,
  48088. bottom: 34/1058
  48089. }
  48090. },
  48091. },
  48092. [
  48093. {
  48094. name: "Normal",
  48095. height: math.unit(6 + 4/12, "feet"),
  48096. default: true
  48097. },
  48098. ]
  48099. ))
  48100. characterMakers.push(() => makeCharacter(
  48101. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48102. {
  48103. front: {
  48104. height: math.unit(5 + 8/12, "feet"),
  48105. name: "Front",
  48106. image: {
  48107. source: "./media/characters/dee-ditto/front.svg",
  48108. extra: 1874/1785,
  48109. bottom: 68/1942
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(5 + 8/12, "feet"),
  48114. name: "Back",
  48115. image: {
  48116. source: "./media/characters/dee-ditto/back.svg",
  48117. extra: 1870/1783,
  48118. bottom: 77/1947
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(5 + 8/12, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(7 + 6/12, "feet"),
  48135. name: "Front",
  48136. image: {
  48137. source: "./media/characters/fey/front.svg",
  48138. extra: 995/979,
  48139. bottom: 30/1025
  48140. }
  48141. },
  48142. back: {
  48143. height: math.unit(7 + 6/12, "feet"),
  48144. name: "Back",
  48145. image: {
  48146. source: "./media/characters/fey/back.svg",
  48147. extra: 1079/1008,
  48148. bottom: 5/1084
  48149. }
  48150. },
  48151. dressed: {
  48152. height: math.unit(7 + 6/12, "feet"),
  48153. name: "Dressed",
  48154. image: {
  48155. source: "./media/characters/fey/dressed.svg",
  48156. extra: 995/979,
  48157. bottom: 30/1025
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Normal",
  48164. height: math.unit(7 + 6/12, "feet"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48171. {
  48172. standing: {
  48173. height: math.unit(17, "feet"),
  48174. name: "Standing",
  48175. image: {
  48176. source: "./media/characters/aster/standing.svg",
  48177. extra: 1798/1598,
  48178. bottom: 117/1915
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(17, "feet"),
  48186. default: true
  48187. },
  48188. {
  48189. name: "Homewrecker",
  48190. height: math.unit(95, "feet")
  48191. },
  48192. {
  48193. name: "Planet Devourer",
  48194. height: math.unit(1008000, "miles")
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48200. {
  48201. front: {
  48202. height: math.unit(6 + 5/12, "feet"),
  48203. weight: math.unit(265, "lb"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/devon-childs/front.svg",
  48207. extra: 1795/1721,
  48208. bottom: 41/1836
  48209. }
  48210. },
  48211. side: {
  48212. height: math.unit(6 + 5/12, "feet"),
  48213. weight: math.unit(265, "lb"),
  48214. name: "Side",
  48215. image: {
  48216. source: "./media/characters/devon-childs/side.svg",
  48217. extra: 1812/1738,
  48218. bottom: 30/1842
  48219. }
  48220. },
  48221. back: {
  48222. height: math.unit(6 + 5/12, "feet"),
  48223. weight: math.unit(265, "lb"),
  48224. name: "Back",
  48225. image: {
  48226. source: "./media/characters/devon-childs/back.svg",
  48227. extra: 1808/1735,
  48228. bottom: 23/1831
  48229. }
  48230. },
  48231. hand: {
  48232. height: math.unit(1.464, "feet"),
  48233. name: "Hand",
  48234. image: {
  48235. source: "./media/characters/devon-childs/hand.svg"
  48236. }
  48237. },
  48238. foot: {
  48239. height: math.unit(1.6, "feet"),
  48240. name: "Foot",
  48241. image: {
  48242. source: "./media/characters/devon-childs/foot.svg"
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Micro",
  48249. height: math.unit(7, "cm")
  48250. },
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(6 + 5/12, "feet"),
  48254. default: true
  48255. },
  48256. {
  48257. name: "Macro",
  48258. height: math.unit(154, "feet")
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(6, "feet"),
  48267. weight: math.unit(180, "lb"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/lydemox-vir/front.svg",
  48271. extra: 1632/1435,
  48272. bottom: 58/1690
  48273. }
  48274. },
  48275. frontSFW: {
  48276. height: math.unit(6, "feet"),
  48277. weight: math.unit(180, "lb"),
  48278. name: "Front (SFW)",
  48279. image: {
  48280. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48281. extra: 1632/1435,
  48282. bottom: 58/1690
  48283. }
  48284. },
  48285. back: {
  48286. height: math.unit(6, "feet"),
  48287. weight: math.unit(180, "lb"),
  48288. name: "Back",
  48289. image: {
  48290. source: "./media/characters/lydemox-vir/back.svg",
  48291. extra: 1593/1408,
  48292. bottom: 31/1624
  48293. }
  48294. },
  48295. paw: {
  48296. height: math.unit(1.85, "feet"),
  48297. name: "Paw",
  48298. image: {
  48299. source: "./media/characters/lydemox-vir/paw.svg"
  48300. }
  48301. },
  48302. dick: {
  48303. height: math.unit(1.8, "feet"),
  48304. name: "Dick",
  48305. image: {
  48306. source: "./media/characters/lydemox-vir/dick.svg"
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Macro",
  48313. height: math.unit(100, "feet"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Teramacro",
  48318. height: math.unit(1, "earth")
  48319. },
  48320. {
  48321. name: "Planetary",
  48322. height: math.unit(20, "earths")
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(15 + 8/12, "feet"),
  48331. weight: math.unit(1237, "kg"),
  48332. name: "Front",
  48333. image: {
  48334. source: "./media/characters/mia/front.svg",
  48335. extra: 1573/1446,
  48336. bottom: 58/1631
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Small",
  48343. height: math.unit(9 + 5/12, "feet")
  48344. },
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(15 + 8/12, "feet"),
  48348. default: true
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(10 + 6/12, "feet"),
  48357. weight: math.unit(1.3, "tons"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/mr-graves/front.svg",
  48361. extra: 1779/1695,
  48362. bottom: 198/1977
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(10 + 6 /12, "feet"),
  48370. default: true
  48371. },
  48372. ]
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48376. {
  48377. dressedFront: {
  48378. height: math.unit(5 + 8/12, "feet"),
  48379. weight: math.unit(125, "lb"),
  48380. name: "Dressed (Front)",
  48381. image: {
  48382. source: "./media/characters/jess/dressed-front.svg",
  48383. extra: 1176/1152,
  48384. bottom: 42/1218
  48385. }
  48386. },
  48387. dressedSide: {
  48388. height: math.unit(5 + 8/12, "feet"),
  48389. weight: math.unit(125, "lb"),
  48390. name: "Dressed (Side)",
  48391. image: {
  48392. source: "./media/characters/jess/dressed-side.svg",
  48393. extra: 1204/1190,
  48394. bottom: 6/1210
  48395. }
  48396. },
  48397. nudeFront: {
  48398. height: math.unit(5 + 8/12, "feet"),
  48399. weight: math.unit(125, "lb"),
  48400. name: "Nude (Front)",
  48401. image: {
  48402. source: "./media/characters/jess/nude-front.svg",
  48403. extra: 1176/1152,
  48404. bottom: 42/1218
  48405. }
  48406. },
  48407. nudeSide: {
  48408. height: math.unit(5 + 8/12, "feet"),
  48409. weight: math.unit(125, "lb"),
  48410. name: "Nude (Side)",
  48411. image: {
  48412. source: "./media/characters/jess/nude-side.svg",
  48413. extra: 1204/1190,
  48414. bottom: 6/1210
  48415. }
  48416. },
  48417. organsFront: {
  48418. height: math.unit(2.83799342105, "feet"),
  48419. name: "Organs (Front)",
  48420. image: {
  48421. source: "./media/characters/jess/organs-front.svg"
  48422. }
  48423. },
  48424. organsSide: {
  48425. height: math.unit(2.64225290474, "feet"),
  48426. name: "Organs (Side)",
  48427. image: {
  48428. source: "./media/characters/jess/organs-side.svg"
  48429. }
  48430. },
  48431. digestiveTractFront: {
  48432. height: math.unit(2.8106580871, "feet"),
  48433. name: "Digestive Tract (Front)",
  48434. image: {
  48435. source: "./media/characters/jess/digestive-tract-front.svg"
  48436. }
  48437. },
  48438. digestiveTractSide: {
  48439. height: math.unit(2.54365045014, "feet"),
  48440. name: "Digestive Tract (Side)",
  48441. image: {
  48442. source: "./media/characters/jess/digestive-tract-side.svg"
  48443. }
  48444. },
  48445. respiratorySystemFront: {
  48446. height: math.unit(1.11196233456, "feet"),
  48447. name: "Respiratory System (Front)",
  48448. image: {
  48449. source: "./media/characters/jess/respiratory-system-front.svg"
  48450. }
  48451. },
  48452. respiratorySystemSide: {
  48453. height: math.unit(0.89327966297, "feet"),
  48454. name: "Respiratory System (Side)",
  48455. image: {
  48456. source: "./media/characters/jess/respiratory-system-side.svg"
  48457. }
  48458. },
  48459. urinaryTractFront: {
  48460. height: math.unit(1.16126356186, "feet"),
  48461. name: "Urinary Tract (Front)",
  48462. image: {
  48463. source: "./media/characters/jess/urinary-tract-front.svg"
  48464. }
  48465. },
  48466. urinaryTractSide: {
  48467. height: math.unit(1.20910039627, "feet"),
  48468. name: "Urinary Tract (Side)",
  48469. image: {
  48470. source: "./media/characters/jess/urinary-tract-side.svg"
  48471. }
  48472. },
  48473. reproductiveOrgansFront: {
  48474. height: math.unit(0.48422591566, "feet"),
  48475. name: "Reproductive Organs (Front)",
  48476. image: {
  48477. source: "./media/characters/jess/reproductive-organs-front.svg"
  48478. }
  48479. },
  48480. reproductiveOrgansSide: {
  48481. height: math.unit(0.61553314481, "feet"),
  48482. name: "Reproductive Organs (Side)",
  48483. image: {
  48484. source: "./media/characters/jess/reproductive-organs-side.svg"
  48485. }
  48486. },
  48487. breastsFront: {
  48488. height: math.unit(0.47690395121, "feet"),
  48489. name: "Breasts (Front)",
  48490. image: {
  48491. source: "./media/characters/jess/breasts-front.svg"
  48492. }
  48493. },
  48494. breastsSide: {
  48495. height: math.unit(0.30556998307, "feet"),
  48496. name: "Breasts (Side)",
  48497. image: {
  48498. source: "./media/characters/jess/breasts-side.svg"
  48499. }
  48500. },
  48501. heartFront: {
  48502. height: math.unit(0.53011022622, "feet"),
  48503. name: "Heart (Front)",
  48504. image: {
  48505. source: "./media/characters/jess/heart-front.svg"
  48506. }
  48507. },
  48508. heartSide: {
  48509. height: math.unit(0.51790695213, "feet"),
  48510. name: "Heart (Side)",
  48511. image: {
  48512. source: "./media/characters/jess/heart-side.svg"
  48513. }
  48514. },
  48515. earsAndNoseFront: {
  48516. height: math.unit(0.29385483995, "feet"),
  48517. name: "Ears and Nose (Front)",
  48518. image: {
  48519. source: "./media/characters/jess/ears-and-nose-front.svg"
  48520. }
  48521. },
  48522. earsAndNoseSide: {
  48523. height: math.unit(0.18109658741, "feet"),
  48524. name: "Ears and Nose (Side)",
  48525. image: {
  48526. source: "./media/characters/jess/ears-and-nose-side.svg"
  48527. }
  48528. },
  48529. },
  48530. [
  48531. {
  48532. name: "Normal",
  48533. height: math.unit(5 + 8/12, "feet"),
  48534. default: true
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(6, "feet"),
  48543. weight: math.unit(6.64467e-7, "grams"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/wimpering/front.svg",
  48547. extra: 597/587,
  48548. bottom: 34/631
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Micro",
  48555. height: math.unit(0.4, "mm"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(5 + 2/12, "feet"),
  48565. weight: math.unit(110, "lb"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/keltre/front.svg",
  48569. extra: 1099/1057,
  48570. bottom: 22/1121
  48571. }
  48572. },
  48573. back: {
  48574. height: math.unit(5 + 2/12, "feet"),
  48575. weight: math.unit(110, "lb"),
  48576. name: "Back",
  48577. image: {
  48578. source: "./media/characters/keltre/back.svg",
  48579. extra: 1095/1053,
  48580. bottom: 17/1112
  48581. }
  48582. },
  48583. dressed: {
  48584. height: math.unit(5 + 2/12, "feet"),
  48585. weight: math.unit(110, "lb"),
  48586. name: "Dressed",
  48587. image: {
  48588. source: "./media/characters/keltre/dressed.svg",
  48589. extra: 1099/1057,
  48590. bottom: 22/1121
  48591. }
  48592. },
  48593. winter: {
  48594. height: math.unit(5 + 2/12, "feet"),
  48595. weight: math.unit(110, "lb"),
  48596. name: "Winter",
  48597. image: {
  48598. source: "./media/characters/keltre/winter.svg",
  48599. extra: 1099/1057,
  48600. bottom: 22/1121
  48601. }
  48602. },
  48603. head: {
  48604. height: math.unit(1.61 * 0.86, "feet"),
  48605. name: "Head",
  48606. image: {
  48607. source: "./media/characters/keltre/head.svg",
  48608. extra: 534/421,
  48609. bottom: 0/534
  48610. }
  48611. },
  48612. hand: {
  48613. height: math.unit(1.3 * 0.86, "feet"),
  48614. name: "Hand",
  48615. image: {
  48616. source: "./media/characters/keltre/hand.svg"
  48617. }
  48618. },
  48619. foot: {
  48620. height: math.unit(1.8 * 0.86, "feet"),
  48621. name: "Foot",
  48622. image: {
  48623. source: "./media/characters/keltre/foot.svg"
  48624. }
  48625. },
  48626. },
  48627. [
  48628. {
  48629. name: "Fine",
  48630. height: math.unit(1, "inch")
  48631. },
  48632. {
  48633. name: "Dimnutive",
  48634. height: math.unit(4, "inches")
  48635. },
  48636. {
  48637. name: "Tiny",
  48638. height: math.unit(1, "foot")
  48639. },
  48640. {
  48641. name: "Small",
  48642. height: math.unit(3, "feet")
  48643. },
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(5 + 2/12, "feet"),
  48647. default: true
  48648. },
  48649. ]
  48650. ))
  48651. characterMakers.push(() => makeCharacter(
  48652. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48653. {
  48654. front: {
  48655. height: math.unit(6 + 2/12, "feet"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/nox/front.svg",
  48659. extra: 1917/1830,
  48660. bottom: 74/1991
  48661. }
  48662. },
  48663. back: {
  48664. height: math.unit(6 + 2/12, "feet"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/nox/back.svg",
  48668. extra: 1896/1815,
  48669. bottom: 21/1917
  48670. }
  48671. },
  48672. head: {
  48673. height: math.unit(1.1, "feet"),
  48674. name: "Head",
  48675. image: {
  48676. source: "./media/characters/nox/head.svg",
  48677. extra: 874/704,
  48678. bottom: 0/874
  48679. }
  48680. },
  48681. tattoo: {
  48682. height: math.unit(0.729, "feet"),
  48683. name: "Tattoo",
  48684. image: {
  48685. source: "./media/characters/nox/tattoo.svg"
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(6 + 2/12, "feet")
  48693. },
  48694. {
  48695. name: "Gigamacro",
  48696. height: math.unit(2, "earths"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Cosmic",
  48701. height: math.unit(867, "yottameters")
  48702. },
  48703. ]
  48704. ))
  48705. characterMakers.push(() => makeCharacter(
  48706. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48707. {
  48708. front: {
  48709. height: math.unit(6, "feet"),
  48710. weight: math.unit(150, "lb"),
  48711. name: "Front",
  48712. image: {
  48713. source: "./media/characters/caspian/front.svg",
  48714. extra: 1443/1359,
  48715. bottom: 0/1443
  48716. }
  48717. },
  48718. back: {
  48719. height: math.unit(6, "feet"),
  48720. weight: math.unit(150, "lb"),
  48721. name: "Back",
  48722. image: {
  48723. source: "./media/characters/caspian/back.svg",
  48724. extra: 1379/1309,
  48725. bottom: 0/1379
  48726. }
  48727. },
  48728. head: {
  48729. height: math.unit(0.9, "feet"),
  48730. name: "Head",
  48731. image: {
  48732. source: "./media/characters/caspian/head.svg",
  48733. extra: 692/492,
  48734. bottom: 0/692
  48735. }
  48736. },
  48737. headAlt: {
  48738. height: math.unit(0.95, "feet"),
  48739. name: "Head (Alt)",
  48740. image: {
  48741. source: "./media/characters/caspian/head-alt.svg",
  48742. extra: 668/508,
  48743. bottom: 0/668
  48744. }
  48745. },
  48746. hand: {
  48747. height: math.unit(0.8, "feet"),
  48748. name: "Hand",
  48749. image: {
  48750. source: "./media/characters/caspian/hand.svg"
  48751. }
  48752. },
  48753. paw: {
  48754. height: math.unit(0.95, "feet"),
  48755. name: "Paw",
  48756. image: {
  48757. source: "./media/characters/caspian/paw.svg"
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(162, "feet"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48771. {
  48772. front: {
  48773. height: math.unit(6, "feet"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/myra-aisling/front.svg",
  48777. extra: 1268/1166,
  48778. bottom: 73/1341
  48779. }
  48780. },
  48781. back: {
  48782. height: math.unit(6, "feet"),
  48783. name: "Back",
  48784. image: {
  48785. source: "./media/characters/myra-aisling/back.svg",
  48786. extra: 1249/1149,
  48787. bottom: 79/1328
  48788. }
  48789. },
  48790. dressed: {
  48791. height: math.unit(6, "feet"),
  48792. name: "Dressed",
  48793. image: {
  48794. source: "./media/characters/myra-aisling/dressed.svg",
  48795. extra: 1290/1189,
  48796. bottom: 47/1337
  48797. }
  48798. },
  48799. hand: {
  48800. height: math.unit(1.1, "feet"),
  48801. name: "Hand",
  48802. image: {
  48803. source: "./media/characters/myra-aisling/hand.svg"
  48804. }
  48805. },
  48806. paw: {
  48807. height: math.unit(1.23, "feet"),
  48808. name: "Paw",
  48809. image: {
  48810. source: "./media/characters/myra-aisling/paw.svg"
  48811. }
  48812. },
  48813. },
  48814. [
  48815. {
  48816. name: "Normal",
  48817. height: math.unit(160, "feet"),
  48818. default: true
  48819. },
  48820. ]
  48821. ))
  48822. characterMakers.push(() => makeCharacter(
  48823. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48824. {
  48825. front: {
  48826. height: math.unit(6, "feet"),
  48827. name: "Front",
  48828. image: {
  48829. source: "./media/characters/tenley-sidero/front.svg",
  48830. extra: 1365/1276,
  48831. bottom: 47/1412
  48832. }
  48833. },
  48834. back: {
  48835. height: math.unit(6, "feet"),
  48836. name: "Back",
  48837. image: {
  48838. source: "./media/characters/tenley-sidero/back.svg",
  48839. extra: 1383/1283,
  48840. bottom: 35/1418
  48841. }
  48842. },
  48843. dressed: {
  48844. height: math.unit(6, "feet"),
  48845. name: "Dressed",
  48846. image: {
  48847. source: "./media/characters/tenley-sidero/dressed.svg",
  48848. extra: 1364/1275,
  48849. bottom: 42/1406
  48850. }
  48851. },
  48852. head: {
  48853. height: math.unit(1.47, "feet"),
  48854. name: "Head",
  48855. image: {
  48856. source: "./media/characters/tenley-sidero/head.svg",
  48857. extra: 610/490,
  48858. bottom: 0/610
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(154, "feet"),
  48866. default: true
  48867. },
  48868. ]
  48869. ))
  48870. //characters
  48871. function makeCharacters() {
  48872. const results = [];
  48873. characterMakers.forEach(character => {
  48874. results.push(character());
  48875. });
  48876. return results;
  48877. }