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

50826 řádky
1.3 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. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. "cinderace": {
  1926. name: "Cinderace",
  1927. parents: ["pokemon", "rabbit"]
  1928. },
  1929. "caudin": {
  1930. name: "Caudin",
  1931. parents: ["dragon"]
  1932. },
  1933. "red-winged-blackbird": {
  1934. name: "Red-Winged Blackbird",
  1935. parents: ["avian"]
  1936. },
  1937. "hooded-wheater": {
  1938. name: "Hooded Wheater",
  1939. parents: ["passerine"]
  1940. },
  1941. "passerine": {
  1942. name: "Passerine",
  1943. parents: ["avian"]
  1944. },
  1945. }
  1946. //species
  1947. function getSpeciesInfo(speciesList) {
  1948. let result = new Set();
  1949. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1950. result.add(entry)
  1951. });
  1952. return Array.from(result);
  1953. };
  1954. function getSpeciesInfoHelper(species) {
  1955. if (!speciesData[species]) {
  1956. console.warn(species + " doesn't exist");
  1957. return [];
  1958. }
  1959. if (speciesData[species].parents) {
  1960. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1961. } else {
  1962. return [species];
  1963. }
  1964. }
  1965. characterMakers.push(() => makeCharacter(
  1966. {
  1967. name: "Fen",
  1968. species: ["crux"],
  1969. description: {
  1970. title: "Bio",
  1971. text: "Very furry. Sheds on everything."
  1972. },
  1973. tags: [
  1974. "anthro",
  1975. "goo"
  1976. ]
  1977. },
  1978. {
  1979. front: {
  1980. height: math.unit(12, "feet"),
  1981. weight: math.unit(2400, "lb"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/fen/front.svg",
  1985. extra: 1804/1562,
  1986. bottom: 205/2009
  1987. }
  1988. },
  1989. diving: {
  1990. height: math.unit(4.9, "meters"),
  1991. weight: math.unit(2400, "lb"),
  1992. name: "Diving",
  1993. image: {
  1994. source: "./media/characters/fen/diving.svg"
  1995. }
  1996. },
  1997. goo: {
  1998. height: math.unit(12, "feet"),
  1999. weight: math.unit(3600, "lb"),
  2000. volume: math.unit(1000, "liters"),
  2001. capacity: math.unit(6, "people"),
  2002. name: "Goo",
  2003. image: {
  2004. source: "./media/characters/fen/goo.svg",
  2005. extra: 1307/1071,
  2006. bottom: 134/1441
  2007. }
  2008. },
  2009. maw: {
  2010. height: math.unit(5.03, "feet"),
  2011. name: "Maw",
  2012. image: {
  2013. source: "./media/characters/fen/maw.svg"
  2014. }
  2015. },
  2016. gooCeiling: {
  2017. height: math.unit(6.6, "feet"),
  2018. weight: math.unit(3000, "lb"),
  2019. volume: math.unit(1000, "liters"),
  2020. capacity: math.unit(6, "people"),
  2021. name: "Goo (Ceiling)",
  2022. image: {
  2023. source: "./media/characters/fen/goo-ceiling.svg"
  2024. }
  2025. },
  2026. back: {
  2027. height: math.unit(12, "feet"),
  2028. weight: math.unit(2400, "lb"),
  2029. name: "Back",
  2030. image: {
  2031. source: "./media/characters/fen/back.svg",
  2032. },
  2033. info: {
  2034. description: {
  2035. mode: "append",
  2036. text: "\n\nHe is not currently looking at you."
  2037. }
  2038. }
  2039. },
  2040. full: {
  2041. height: math.unit(1.85, "meter"),
  2042. weight: math.unit(3200, "lb"),
  2043. name: "Full",
  2044. image: {
  2045. source: "./media/characters/fen/full.svg",
  2046. extra: 1133/859,
  2047. bottom: 145/1278
  2048. },
  2049. info: {
  2050. description: {
  2051. mode: "append",
  2052. text: "\n\nMunch."
  2053. }
  2054. }
  2055. },
  2056. gooLounging: {
  2057. height: math.unit(4.53, "feet"),
  2058. weight: math.unit(3000, "lb"),
  2059. capacity: math.unit(6, "people"),
  2060. name: "Goo (Lounging)",
  2061. image: {
  2062. source: "./media/characters/fen/goo-lounging.svg",
  2063. bottom: 116 / 613
  2064. }
  2065. },
  2066. lounging: {
  2067. height: math.unit(10.52, "feet"),
  2068. weight: math.unit(2400, "lb"),
  2069. name: "Lounging",
  2070. image: {
  2071. source: "./media/characters/fen/lounging.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Small",
  2078. height: math.unit(2.2428, "meter")
  2079. },
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(12, "feet"),
  2083. default: true,
  2084. },
  2085. {
  2086. name: "Big",
  2087. height: math.unit(20, "feet")
  2088. },
  2089. {
  2090. name: "Minimacro",
  2091. height: math.unit(40, "feet"),
  2092. info: {
  2093. description: {
  2094. mode: "append",
  2095. text: "\n\nTOO DAMN BIG"
  2096. }
  2097. }
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(100, "feet"),
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nTOO DAMN BIG"
  2106. }
  2107. }
  2108. },
  2109. {
  2110. name: "Megamacro",
  2111. height: math.unit(2, "miles")
  2112. },
  2113. {
  2114. name: "Gigamacro",
  2115. height: math.unit(10, "earths")
  2116. },
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2121. {
  2122. front: {
  2123. height: math.unit(183, "cm"),
  2124. weight: math.unit(80, "kg"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/sofia-fluttertail/front.svg",
  2128. bottom: 0.01,
  2129. extra: 2154 / 2081
  2130. }
  2131. },
  2132. frontAlt: {
  2133. height: math.unit(183, "cm"),
  2134. weight: math.unit(80, "kg"),
  2135. name: "Front (alt)",
  2136. image: {
  2137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2138. }
  2139. },
  2140. back: {
  2141. height: math.unit(183, "cm"),
  2142. weight: math.unit(80, "kg"),
  2143. name: "Back",
  2144. image: {
  2145. source: "./media/characters/sofia-fluttertail/back.svg"
  2146. }
  2147. },
  2148. kneeling: {
  2149. height: math.unit(125, "cm"),
  2150. weight: math.unit(80, "kg"),
  2151. name: "Kneeling",
  2152. image: {
  2153. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2154. extra: 1033 / 977,
  2155. bottom: 23.7 / 1057
  2156. }
  2157. },
  2158. maw: {
  2159. height: math.unit(183 / 5, "cm"),
  2160. name: "Maw",
  2161. image: {
  2162. source: "./media/characters/sofia-fluttertail/maw.svg"
  2163. }
  2164. },
  2165. mawcloseup: {
  2166. height: math.unit(183 / 5 * 0.41, "cm"),
  2167. name: "Maw (Closeup)",
  2168. image: {
  2169. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2170. }
  2171. },
  2172. paws: {
  2173. height: math.unit(1.17, "feet"),
  2174. name: "Paws",
  2175. image: {
  2176. source: "./media/characters/sofia-fluttertail/paws.svg",
  2177. extra: 851 / 851,
  2178. bottom: 17 / 868
  2179. }
  2180. },
  2181. },
  2182. [
  2183. {
  2184. name: "Normal",
  2185. height: math.unit(1.83, "meter")
  2186. },
  2187. {
  2188. name: "Size Thief",
  2189. height: math.unit(18, "feet")
  2190. },
  2191. {
  2192. name: "50 Foot Collie",
  2193. height: math.unit(50, "feet")
  2194. },
  2195. {
  2196. name: "Macro",
  2197. height: math.unit(96, "feet"),
  2198. default: true
  2199. },
  2200. {
  2201. name: "Megamerger",
  2202. height: math.unit(650, "feet")
  2203. },
  2204. ]
  2205. ))
  2206. characterMakers.push(() => makeCharacter(
  2207. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2208. {
  2209. front: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Front",
  2213. image: {
  2214. source: "./media/characters/march/front.svg",
  2215. extra: 1992/1851,
  2216. bottom: 39/2031
  2217. }
  2218. },
  2219. foot: {
  2220. height: math.unit(0.9, "feet"),
  2221. name: "Foot",
  2222. image: {
  2223. source: "./media/characters/march/foot.svg"
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7.9, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(220, "meters")
  2235. },
  2236. {
  2237. name: "Megamacro",
  2238. height: math.unit(2.98, "km"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(15963, "km")
  2244. },
  2245. {
  2246. name: "Teramacro",
  2247. height: math.unit(2980000000, "km")
  2248. },
  2249. {
  2250. name: "Examacro",
  2251. height: math.unit(250, "parsecs")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(6, "feet"),
  2260. weight: math.unit(60, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/noir/front.svg",
  2264. extra: 1,
  2265. bottom: 0.032
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Normal",
  2272. height: math.unit(6.6, "feet")
  2273. },
  2274. {
  2275. name: "Macro",
  2276. height: math.unit(500, "feet")
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(2.5, "km"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Gigamacro",
  2285. height: math.unit(22500, "km")
  2286. },
  2287. {
  2288. name: "Teramacro",
  2289. height: math.unit(2500000000, "km")
  2290. },
  2291. {
  2292. name: "Examacro",
  2293. height: math.unit(200, "parsecs")
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(7, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/okuri/front.svg",
  2306. extra: 739/665,
  2307. bottom: 39/778
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(7, "feet"),
  2312. weight: math.unit(100, "kg"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/okuri/back.svg",
  2316. extra: 734/653,
  2317. bottom: 13/747
  2318. }
  2319. },
  2320. sitting: {
  2321. height: math.unit(2.95, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Sitting",
  2324. image: {
  2325. source: "./media/characters/okuri/sitting.svg",
  2326. extra: 370/318,
  2327. bottom: 99/469
  2328. }
  2329. },
  2330. },
  2331. [
  2332. {
  2333. name: "Smallest",
  2334. height: math.unit(5 + 2/12, "feet")
  2335. },
  2336. {
  2337. name: "Smaller",
  2338. height: math.unit(300, "feet")
  2339. },
  2340. {
  2341. name: "Small",
  2342. height: math.unit(1000, "feet")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(1, "mile")
  2347. },
  2348. {
  2349. name: "Mega Macro (Small)",
  2350. height: math.unit(20, "km")
  2351. },
  2352. {
  2353. name: "Mega Macro (Large)",
  2354. height: math.unit(600, "km")
  2355. },
  2356. {
  2357. name: "Giga Macro",
  2358. height: math.unit(10000, "km")
  2359. },
  2360. {
  2361. name: "Normal",
  2362. height: math.unit(577560, "km"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Large",
  2367. height: math.unit(4, "galaxies")
  2368. },
  2369. {
  2370. name: "Largest",
  2371. height: math.unit(15, "multiverses")
  2372. },
  2373. ]
  2374. ))
  2375. characterMakers.push(() => makeCharacter(
  2376. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2377. {
  2378. front: {
  2379. height: math.unit(7, "feet"),
  2380. weight: math.unit(100, "kg"),
  2381. name: "Front",
  2382. image: {
  2383. source: "./media/characters/manny/front.svg",
  2384. extra: 1,
  2385. bottom: 0.06
  2386. }
  2387. },
  2388. back: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(100, "kg"),
  2391. name: "Back",
  2392. image: {
  2393. source: "./media/characters/manny/back.svg",
  2394. extra: 1,
  2395. bottom: 0.014
  2396. }
  2397. },
  2398. },
  2399. [
  2400. {
  2401. name: "Normal",
  2402. height: math.unit(7, "feet"),
  2403. },
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(78, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Macro+",
  2411. height: math.unit(300, "meters")
  2412. },
  2413. {
  2414. name: "Macro++",
  2415. height: math.unit(2400, "meters")
  2416. },
  2417. {
  2418. name: "Megamacro",
  2419. height: math.unit(5167, "meters")
  2420. },
  2421. {
  2422. name: "Gigamacro",
  2423. height: math.unit(41769, "miles")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/adake/front-1.svg"
  2436. }
  2437. },
  2438. frontAlt: {
  2439. height: math.unit(7, "feet"),
  2440. weight: math.unit(100, "kg"),
  2441. name: "Front (Alt)",
  2442. image: {
  2443. source: "./media/characters/adake/front-2.svg",
  2444. extra: 1,
  2445. bottom: 0.01
  2446. }
  2447. },
  2448. back: {
  2449. height: math.unit(7, "feet"),
  2450. weight: math.unit(100, "kg"),
  2451. name: "Back",
  2452. image: {
  2453. source: "./media/characters/adake/back.svg",
  2454. }
  2455. },
  2456. kneel: {
  2457. height: math.unit(5.385, "feet"),
  2458. weight: math.unit(100, "kg"),
  2459. name: "Kneeling",
  2460. image: {
  2461. source: "./media/characters/adake/kneel.svg",
  2462. bottom: 0.052
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(7, "feet"),
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(78, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Macro+",
  2478. height: math.unit(300, "meters")
  2479. },
  2480. {
  2481. name: "Macro++",
  2482. height: math.unit(2400, "meters")
  2483. },
  2484. {
  2485. name: "Megamacro",
  2486. height: math.unit(5167, "meters")
  2487. },
  2488. {
  2489. name: "Gigamacro",
  2490. height: math.unit(41769, "miles")
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/elijah/front.svg",
  2503. extra: 858 / 830,
  2504. bottom: 95.5 / 953.8559
  2505. }
  2506. },
  2507. back: {
  2508. height: math.unit(1.65, "meters"),
  2509. weight: math.unit(50, "kg"),
  2510. name: "Back",
  2511. image: {
  2512. source: "./media/characters/elijah/back.svg",
  2513. extra: 895 / 850,
  2514. bottom: 5.3 / 897.956
  2515. }
  2516. },
  2517. frontNsfw: {
  2518. height: math.unit(1.65, "meters"),
  2519. weight: math.unit(50, "kg"),
  2520. name: "Front (NSFW)",
  2521. image: {
  2522. source: "./media/characters/elijah/front-nsfw.svg",
  2523. extra: 858 / 830,
  2524. bottom: 95.5 / 953.8559
  2525. }
  2526. },
  2527. backNsfw: {
  2528. height: math.unit(1.65, "meters"),
  2529. weight: math.unit(50, "kg"),
  2530. name: "Back (NSFW)",
  2531. image: {
  2532. source: "./media/characters/elijah/back-nsfw.svg",
  2533. extra: 895 / 850,
  2534. bottom: 5.3 / 897.956
  2535. }
  2536. },
  2537. dick: {
  2538. height: math.unit(1, "feet"),
  2539. name: "Dick",
  2540. image: {
  2541. source: "./media/characters/elijah/dick.svg"
  2542. }
  2543. },
  2544. beakOpen: {
  2545. height: math.unit(1.25, "feet"),
  2546. name: "Beak (Open)",
  2547. image: {
  2548. source: "./media/characters/elijah/beak-open.svg"
  2549. }
  2550. },
  2551. beakShut: {
  2552. height: math.unit(1.25, "feet"),
  2553. name: "Beak (Shut)",
  2554. image: {
  2555. source: "./media/characters/elijah/beak-shut.svg"
  2556. }
  2557. },
  2558. footFlexing: {
  2559. height: math.unit(1.61, "feet"),
  2560. name: "Foot (Flexing)",
  2561. image: {
  2562. source: "./media/characters/elijah/foot-flexing.svg"
  2563. }
  2564. },
  2565. footStepping: {
  2566. height: math.unit(1.44, "feet"),
  2567. name: "Foot (Stepping)",
  2568. image: {
  2569. source: "./media/characters/elijah/foot-stepping.svg"
  2570. }
  2571. },
  2572. plantigradeLeg: {
  2573. height: math.unit(2.34, "feet"),
  2574. name: "Plantigrade Leg",
  2575. image: {
  2576. source: "./media/characters/elijah/plantigrade-leg.svg"
  2577. }
  2578. },
  2579. plantigradeFootLeft: {
  2580. height: math.unit(0.9, "feet"),
  2581. name: "Plantigrade Foot (Left)",
  2582. image: {
  2583. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2584. }
  2585. },
  2586. plantigradeFootRight: {
  2587. height: math.unit(0.9, "feet"),
  2588. name: "Plantigrade Foot (Right)",
  2589. image: {
  2590. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(1.65, "meters")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(55, "meters"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Macro+",
  2606. height: math.unit(105, "meters")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/rai/front.svg",
  2619. extra: 1802/1696,
  2620. bottom: 68/1870
  2621. }
  2622. },
  2623. frontDressed: {
  2624. height: math.unit(7 + 2/12, "feet"),
  2625. weight: math.unit(320, "kg"),
  2626. name: "Front (Dressed)",
  2627. image: {
  2628. source: "./media/characters/rai/front-dressed.svg",
  2629. extra: 1802/1696,
  2630. bottom: 68/1870
  2631. }
  2632. },
  2633. side: {
  2634. height: math.unit(7 + 2/12, "feet"),
  2635. weight: math.unit(320, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/rai/side.svg",
  2639. extra: 1789/1710,
  2640. bottom: 115/1904
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(7 + 2/12, "feet"),
  2645. weight: math.unit(320, "kg"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/rai/back.svg",
  2649. extra: 1770/1707,
  2650. bottom: 28/1798
  2651. }
  2652. },
  2653. feral: {
  2654. height: math.unit(9.5, "feet"),
  2655. weight: math.unit(640, "kg"),
  2656. name: "Feral",
  2657. image: {
  2658. source: "./media/characters/rai/feral.svg",
  2659. extra: 945/553,
  2660. bottom: 176/1121
  2661. }
  2662. },
  2663. dragon: {
  2664. height: math.unit(23, "feet"),
  2665. weight: math.unit(50000, "lb"),
  2666. name: "Dragon",
  2667. image: {
  2668. source: "./media/characters/rai/dragon.svg",
  2669. extra: 2498 / 2030,
  2670. bottom: 85.2 / 2584
  2671. }
  2672. },
  2673. maw: {
  2674. height: math.unit(1.69, "feet"),
  2675. name: "Maw",
  2676. image: {
  2677. source: "./media/characters/rai/maw.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(7 + 2/12, "feet")
  2685. },
  2686. {
  2687. name: "Big",
  2688. height: math.unit(11, "feet")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(302, "feet"),
  2693. default: true
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2699. {
  2700. frontDressed: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Front (Dressed)",
  2704. image: {
  2705. source: "./media/characters/jazzy/front-dressed.svg",
  2706. extra: 2738 / 2651,
  2707. bottom: 41.8 / 2786
  2708. }
  2709. },
  2710. backDressed: {
  2711. height: math.unit(216, "feet"),
  2712. weight: math.unit(7000000, "lb"),
  2713. name: "Back (Dressed)",
  2714. image: {
  2715. source: "./media/characters/jazzy/back-dressed.svg",
  2716. extra: 2775 / 2673,
  2717. bottom: 36.8 / 2817
  2718. }
  2719. },
  2720. front: {
  2721. height: math.unit(216, "feet"),
  2722. weight: math.unit(7000000, "lb"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/jazzy/front.svg",
  2726. extra: 2738 / 2651,
  2727. bottom: 41.8 / 2786
  2728. }
  2729. },
  2730. back: {
  2731. height: math.unit(216, "feet"),
  2732. weight: math.unit(7000000, "lb"),
  2733. name: "Back",
  2734. image: {
  2735. source: "./media/characters/jazzy/back.svg",
  2736. extra: 2775 / 2673,
  2737. bottom: 36.8 / 2817
  2738. }
  2739. },
  2740. maw: {
  2741. height: math.unit(20, "feet"),
  2742. name: "Maw",
  2743. image: {
  2744. source: "./media/characters/jazzy/maw.svg"
  2745. }
  2746. },
  2747. paws: {
  2748. height: math.unit(27.5, "feet"),
  2749. name: "Paws",
  2750. image: {
  2751. source: "./media/characters/jazzy/paws.svg"
  2752. }
  2753. },
  2754. eye: {
  2755. height: math.unit(4.4, "feet"),
  2756. name: "Eye",
  2757. image: {
  2758. source: "./media/characters/jazzy/eye.svg"
  2759. }
  2760. },
  2761. droneOffense: {
  2762. height: math.unit(9.5, "inches"),
  2763. name: "Drone (Offense)",
  2764. image: {
  2765. source: "./media/characters/jazzy/drone-offense.svg"
  2766. }
  2767. },
  2768. droneRecon: {
  2769. height: math.unit(9.5, "inches"),
  2770. name: "Drone (Recon)",
  2771. image: {
  2772. source: "./media/characters/jazzy/drone-recon.svg"
  2773. }
  2774. },
  2775. droneDefense: {
  2776. height: math.unit(9.5, "inches"),
  2777. name: "Drone (Defense)",
  2778. image: {
  2779. source: "./media/characters/jazzy/drone-defense.svg"
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(216, "feet"),
  2787. default: true
  2788. },
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2793. {
  2794. front: {
  2795. height: math.unit(9 + 6/12, "feet"),
  2796. weight: math.unit(700, "lb"),
  2797. name: "Front",
  2798. image: {
  2799. source: "./media/characters/flamm/front.svg",
  2800. extra: 1751/1632,
  2801. bottom: 46/1797
  2802. }
  2803. },
  2804. buff: {
  2805. height: math.unit(9 + 6/12, "feet"),
  2806. weight: math.unit(950, "lb"),
  2807. name: "Buff",
  2808. image: {
  2809. source: "./media/characters/flamm/buff.svg",
  2810. extra: 3018/2874,
  2811. bottom: 221/3239
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(9.5, "feet")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(200, "feet"),
  2823. default: true
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(5 + 3/12, "feet"),
  2832. weight: math.unit(60, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/zephiro/front.svg",
  2836. extra: 2309 / 2162,
  2837. bottom: 0.069
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(5 + 3/12, "feet"),
  2842. weight: math.unit(60, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/zephiro/side.svg",
  2846. extra: 2403 / 2279,
  2847. bottom: 0.015
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(5 + 3/12, "feet"),
  2852. weight: math.unit(60, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/zephiro/back.svg",
  2856. extra: 2373 / 2244,
  2857. bottom: 0.013
  2858. }
  2859. },
  2860. hand: {
  2861. height: math.unit(0.68, "feet"),
  2862. name: "Hand",
  2863. image: {
  2864. source: "./media/characters/zephiro/hand.svg"
  2865. }
  2866. },
  2867. paw: {
  2868. height: math.unit(1, "feet"),
  2869. name: "Paw",
  2870. image: {
  2871. source: "./media/characters/zephiro/paw.svg"
  2872. }
  2873. },
  2874. beans: {
  2875. height: math.unit(0.93, "feet"),
  2876. name: "Beans",
  2877. image: {
  2878. source: "./media/characters/zephiro/beans.svg"
  2879. }
  2880. },
  2881. },
  2882. [
  2883. {
  2884. name: "Micro",
  2885. height: math.unit(3, "inches")
  2886. },
  2887. {
  2888. name: "Normal",
  2889. height: math.unit(5 + 3 / 12, "feet"),
  2890. default: true
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(118, "feet")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2900. {
  2901. front: {
  2902. height: math.unit(5, "feet"),
  2903. weight: math.unit(90, "kg"),
  2904. name: "Front",
  2905. image: {
  2906. source: "./media/characters/fory/front.svg",
  2907. extra: 2862 / 2674,
  2908. bottom: 180 / 3043.8
  2909. }
  2910. },
  2911. back: {
  2912. height: math.unit(5, "feet"),
  2913. weight: math.unit(90, "kg"),
  2914. name: "Back",
  2915. image: {
  2916. source: "./media/characters/fory/back.svg",
  2917. extra: 2962 / 2791,
  2918. bottom: 106 / 3071.8
  2919. }
  2920. },
  2921. foot: {
  2922. height: math.unit(2.14, "feet"),
  2923. name: "Foot",
  2924. image: {
  2925. source: "./media/characters/fory/foot.svg"
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(5, "feet")
  2933. },
  2934. {
  2935. name: "Macro",
  2936. height: math.unit(50, "feet"),
  2937. default: true
  2938. },
  2939. {
  2940. name: "Megamacro",
  2941. height: math.unit(10, "miles")
  2942. },
  2943. {
  2944. name: "Gigamacro",
  2945. height: math.unit(5, "earths")
  2946. },
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2951. {
  2952. front: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(90, "kg"),
  2955. name: "Front",
  2956. image: {
  2957. source: "./media/characters/kurrikage/front.svg",
  2958. extra: 1845/1733,
  2959. bottom: 119/1964
  2960. }
  2961. },
  2962. back: {
  2963. height: math.unit(7, "feet"),
  2964. weight: math.unit(90, "kg"),
  2965. name: "Back",
  2966. image: {
  2967. source: "./media/characters/kurrikage/back.svg",
  2968. extra: 1790/1677,
  2969. bottom: 61/1851
  2970. }
  2971. },
  2972. dressed: {
  2973. height: math.unit(7, "feet"),
  2974. weight: math.unit(90, "kg"),
  2975. name: "Dressed",
  2976. image: {
  2977. source: "./media/characters/kurrikage/dressed.svg",
  2978. extra: 1845/1733,
  2979. bottom: 119/1964
  2980. }
  2981. },
  2982. foot: {
  2983. height: math.unit(1.5, "feet"),
  2984. name: "Foot",
  2985. image: {
  2986. source: "./media/characters/kurrikage/foot.svg"
  2987. }
  2988. },
  2989. staff: {
  2990. height: math.unit(6.7, "feet"),
  2991. name: "Staff",
  2992. image: {
  2993. source: "./media/characters/kurrikage/staff.svg"
  2994. }
  2995. },
  2996. peek: {
  2997. height: math.unit(1.05, "feet"),
  2998. name: "Peeking",
  2999. image: {
  3000. source: "./media/characters/kurrikage/peek.svg",
  3001. bottom: 0.08
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(12, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Big",
  3013. height: math.unit(20, "feet")
  3014. },
  3015. {
  3016. name: "Macro",
  3017. height: math.unit(500, "feet")
  3018. },
  3019. {
  3020. name: "Megamacro",
  3021. height: math.unit(20, "miles")
  3022. },
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/shingo/front.svg",
  3034. extra: 1900/1825,
  3035. bottom: 82/1982
  3036. }
  3037. },
  3038. side: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Side",
  3042. image: {
  3043. source: "./media/characters/shingo/side.svg",
  3044. extra: 1930/1865,
  3045. bottom: 16/1946
  3046. }
  3047. },
  3048. back: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Back",
  3052. image: {
  3053. source: "./media/characters/shingo/back.svg",
  3054. extra: 1922/1852,
  3055. bottom: 16/1938
  3056. }
  3057. },
  3058. frontDressed: {
  3059. height: math.unit(6, "feet"),
  3060. weight: math.unit(150, "lb"),
  3061. name: "Front-dressed",
  3062. image: {
  3063. source: "./media/characters/shingo/front-dressed.svg",
  3064. extra: 1900/1825,
  3065. bottom: 82/1982
  3066. }
  3067. },
  3068. paw: {
  3069. height: math.unit(1.29, "feet"),
  3070. name: "Paw",
  3071. image: {
  3072. source: "./media/characters/shingo/paw.svg"
  3073. }
  3074. },
  3075. hand: {
  3076. height: math.unit(1.07, "feet"),
  3077. name: "Hand",
  3078. image: {
  3079. source: "./media/characters/shingo/hand.svg"
  3080. }
  3081. },
  3082. frontAlt: {
  3083. height: math.unit(6, "feet"),
  3084. weight: math.unit(75, "kg"),
  3085. name: "Front (Alt)",
  3086. image: {
  3087. source: "./media/characters/shingo/front-alt.svg",
  3088. extra: 3511 / 3338,
  3089. bottom: 0.005
  3090. }
  3091. },
  3092. frontAlt2: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(75, "kg"),
  3095. name: "Front (Alt 2)",
  3096. image: {
  3097. source: "./media/characters/shingo/front-alt-2.svg",
  3098. extra: 706/681,
  3099. bottom: 11/717
  3100. }
  3101. },
  3102. pawAlt: {
  3103. height: math.unit(1, "feet"),
  3104. name: "Paw (Alt)",
  3105. image: {
  3106. source: "./media/characters/shingo/paw-alt.svg"
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Micro",
  3113. height: math.unit(4, "inches")
  3114. },
  3115. {
  3116. name: "Normal",
  3117. height: math.unit(6, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(108, "feet")
  3123. },
  3124. {
  3125. name: "Macro+",
  3126. height: math.unit(1500, "feet")
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3132. {
  3133. side: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(75, "kg"),
  3136. name: "Side",
  3137. image: {
  3138. source: "./media/characters/aigey/side.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(200, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Megamacro",
  3150. height: math.unit(100, "miles")
  3151. },
  3152. ]
  3153. )
  3154. )
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/natasha/front.svg",
  3164. extra: 859 / 824,
  3165. bottom: 23 / 879.6
  3166. }
  3167. },
  3168. frontNsfw: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Front (NSFW)",
  3172. image: {
  3173. source: "./media/characters/natasha/front-nsfw.svg",
  3174. extra: 859 / 824,
  3175. bottom: 23 / 879.6
  3176. }
  3177. },
  3178. frontErect: {
  3179. height: math.unit(5 + 5 / 12, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Front (Erect)",
  3182. image: {
  3183. source: "./media/characters/natasha/front-erect.svg",
  3184. extra: 859 / 824,
  3185. bottom: 23 / 879.6
  3186. }
  3187. },
  3188. back: {
  3189. height: math.unit(5 + 5 / 12, "feet"),
  3190. weight: math.unit(75, "kg"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/natasha/back.svg",
  3194. extra: 887.9 / 852.6,
  3195. bottom: 9.7 / 896.4
  3196. }
  3197. },
  3198. backAlt: {
  3199. height: math.unit(5 + 5 / 12, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Back (Alt)",
  3202. image: {
  3203. source: "./media/characters/natasha/back-alt.svg",
  3204. extra: 1236.7 / 1192,
  3205. bottom: 22.3 / 1258.2
  3206. }
  3207. },
  3208. dick: {
  3209. height: math.unit(1.772, "feet"),
  3210. name: "Dick",
  3211. image: {
  3212. source: "./media/characters/natasha/dick.svg"
  3213. }
  3214. },
  3215. paw: {
  3216. height: math.unit(0.250, "meters"),
  3217. name: "Paw",
  3218. image: {
  3219. source: "./media/characters/natasha/paw.svg"
  3220. }
  3221. },
  3222. },
  3223. [
  3224. {
  3225. name: "Normal",
  3226. height: math.unit(5 + 5 / 12, "feet")
  3227. },
  3228. {
  3229. name: "Large",
  3230. height: math.unit(12, "feet")
  3231. },
  3232. {
  3233. name: "Macro",
  3234. height: math.unit(100, "feet"),
  3235. default: true
  3236. },
  3237. {
  3238. name: "Macro+",
  3239. height: math.unit(260, "feet")
  3240. },
  3241. {
  3242. name: "Macro++",
  3243. height: math.unit(1, "mile")
  3244. },
  3245. ]
  3246. ))
  3247. characterMakers.push(() => makeCharacter(
  3248. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3249. {
  3250. front: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(75, "kg"),
  3253. name: "Front",
  3254. image: {
  3255. source: "./media/characters/malik/front.svg"
  3256. }
  3257. },
  3258. side: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(75, "kg"),
  3261. name: "Side",
  3262. image: {
  3263. source: "./media/characters/malik/side.svg",
  3264. extra: 1.1539
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/malik/back.svg"
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(156, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro+",
  3284. height: math.unit(1188, "feet")
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3290. {
  3291. front: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Front",
  3295. image: {
  3296. source: "./media/characters/sefer/front.svg",
  3297. extra: 848 / 659,
  3298. bottom: 28.3 / 876.442
  3299. }
  3300. },
  3301. back: {
  3302. height: math.unit(6, "feet"),
  3303. weight: math.unit(75, "kg"),
  3304. name: "Back",
  3305. image: {
  3306. source: "./media/characters/sefer/back.svg",
  3307. extra: 864 / 695,
  3308. bottom: 10 / 871
  3309. }
  3310. },
  3311. frontDressed: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(75, "kg"),
  3314. name: "Front (Dressed)",
  3315. image: {
  3316. source: "./media/characters/sefer/front-dressed.svg",
  3317. extra: 839 / 653,
  3318. bottom: 37.6 / 878
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(6, "feet"),
  3326. default: true
  3327. },
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3332. {
  3333. body: {
  3334. height: math.unit(2.2428, "meter"),
  3335. weight: math.unit(124.738, "kg"),
  3336. name: "Body",
  3337. image: {
  3338. extra: 1225 / 1050,
  3339. source: "./media/characters/north/front.svg"
  3340. }
  3341. }
  3342. },
  3343. [
  3344. {
  3345. name: "Micro",
  3346. height: math.unit(4, "inches")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(63, "meters")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(101, "miles"),
  3355. default: true
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3361. {
  3362. angled: {
  3363. height: math.unit(4, "meter"),
  3364. weight: math.unit(150, "kg"),
  3365. name: "Angled",
  3366. image: {
  3367. source: "./media/characters/talan/angled-sfw.svg",
  3368. bottom: 29 / 3734
  3369. }
  3370. },
  3371. angledNsfw: {
  3372. height: math.unit(4, "meter"),
  3373. weight: math.unit(150, "kg"),
  3374. name: "Angled (NSFW)",
  3375. image: {
  3376. source: "./media/characters/talan/angled-nsfw.svg",
  3377. bottom: 29 / 3734
  3378. }
  3379. },
  3380. frontNsfw: {
  3381. height: math.unit(4, "meter"),
  3382. weight: math.unit(150, "kg"),
  3383. name: "Front (NSFW)",
  3384. image: {
  3385. source: "./media/characters/talan/front-nsfw.svg",
  3386. bottom: 29 / 3734
  3387. }
  3388. },
  3389. sideNsfw: {
  3390. height: math.unit(4, "meter"),
  3391. weight: math.unit(150, "kg"),
  3392. name: "Side (NSFW)",
  3393. image: {
  3394. source: "./media/characters/talan/side-nsfw.svg",
  3395. bottom: 29 / 3734
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(4, "meter"),
  3400. weight: math.unit(150, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/talan/back.svg"
  3404. }
  3405. },
  3406. dickBottom: {
  3407. height: math.unit(0.621, "meter"),
  3408. name: "Dick (Bottom)",
  3409. image: {
  3410. source: "./media/characters/talan/dick-bottom.svg"
  3411. }
  3412. },
  3413. dickTop: {
  3414. height: math.unit(0.621, "meter"),
  3415. name: "Dick (Top)",
  3416. image: {
  3417. source: "./media/characters/talan/dick-top.svg"
  3418. }
  3419. },
  3420. dickSide: {
  3421. height: math.unit(0.305, "meter"),
  3422. name: "Dick (Side)",
  3423. image: {
  3424. source: "./media/characters/talan/dick-side.svg"
  3425. }
  3426. },
  3427. dickFront: {
  3428. height: math.unit(0.305, "meter"),
  3429. name: "Dick (Front)",
  3430. image: {
  3431. source: "./media/characters/talan/dick-front.svg"
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(4, "meters")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(100, "meters")
  3443. },
  3444. {
  3445. name: "Megamacro",
  3446. height: math.unit(2, "miles"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Gigamacro",
  3451. height: math.unit(5000, "miles")
  3452. },
  3453. {
  3454. name: "Teramacro",
  3455. height: math.unit(100, "parsecs")
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(90, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/gael'rathus/front.svg"
  3468. }
  3469. },
  3470. frontAlt: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(90, "kg"),
  3473. name: "Front (alt)",
  3474. image: {
  3475. source: "./media/characters/gael'rathus/front-alt.svg"
  3476. }
  3477. },
  3478. frontAlt2: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(90, "kg"),
  3481. name: "Front (alt 2)",
  3482. image: {
  3483. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(9, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Large",
  3495. height: math.unit(25, "feet")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(0.25, "miles")
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(10, "miles")
  3504. }
  3505. ]
  3506. ))
  3507. characterMakers.push(() => makeCharacter(
  3508. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3509. {
  3510. side: {
  3511. height: math.unit(2, "meter"),
  3512. weight: math.unit(140, "kg"),
  3513. name: "Side",
  3514. image: {
  3515. source: "./media/characters/sosha/side.svg",
  3516. bottom: 0.042
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(12, "feet"),
  3524. default: true
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3530. {
  3531. side: {
  3532. height: math.unit(5 + 5 / 12, "feet"),
  3533. weight: math.unit(170, "kg"),
  3534. name: "Side",
  3535. image: {
  3536. source: "./media/characters/runnola/side.svg",
  3537. extra: 741 / 448,
  3538. bottom: 0.05
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Small",
  3545. height: math.unit(3, "feet")
  3546. },
  3547. {
  3548. name: "Normal",
  3549. height: math.unit(5 + 5 / 12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Big",
  3554. height: math.unit(10, "feet")
  3555. },
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(50, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/kurribird/front.svg",
  3567. bottom: 0.015
  3568. }
  3569. },
  3570. frontAlt: {
  3571. height: math.unit(1.5, "meter"),
  3572. weight: math.unit(50, "kg"),
  3573. name: "Front (Alt)",
  3574. image: {
  3575. source: "./media/characters/kurribird/front-alt.svg",
  3576. extra: 1.45
  3577. }
  3578. },
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(7, "feet")
  3584. },
  3585. {
  3586. name: "Big",
  3587. height: math.unit(12, "feet"),
  3588. default: true
  3589. },
  3590. {
  3591. name: "Macro",
  3592. height: math.unit(1500, "feet")
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(2, "miles")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/elbial/front.svg",
  3609. extra: 1643 / 1556,
  3610. bottom: 60.2 / 1696
  3611. }
  3612. },
  3613. side: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(80, "kg"),
  3616. name: "Side",
  3617. image: {
  3618. source: "./media/characters/elbial/side.svg",
  3619. extra: 1601/1528,
  3620. bottom: 97/1698
  3621. }
  3622. },
  3623. back: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Back",
  3627. image: {
  3628. source: "./media/characters/elbial/back.svg",
  3629. extra: 1653/1569,
  3630. bottom: 20/1673
  3631. }
  3632. },
  3633. frontDressed: {
  3634. height: math.unit(2, "meter"),
  3635. weight: math.unit(80, "kg"),
  3636. name: "Front (Dressed)",
  3637. image: {
  3638. source: "./media/characters/elbial/front-dressed.svg",
  3639. extra: 1638/1569,
  3640. bottom: 70/1708
  3641. }
  3642. },
  3643. genitals: {
  3644. height: math.unit(2 / 3.367, "meter"),
  3645. name: "Genitals",
  3646. image: {
  3647. source: "./media/characters/elbial/genitals.svg"
  3648. }
  3649. },
  3650. },
  3651. [
  3652. {
  3653. name: "Large",
  3654. height: math.unit(100, "feet")
  3655. },
  3656. {
  3657. name: "Macro",
  3658. height: math.unit(500, "feet"),
  3659. default: true
  3660. },
  3661. {
  3662. name: "Megamacro",
  3663. height: math.unit(10, "miles")
  3664. },
  3665. {
  3666. name: "Gigamacro",
  3667. height: math.unit(25000, "miles")
  3668. },
  3669. {
  3670. name: "Full-Size",
  3671. height: math.unit(8000000, "gigaparsecs")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(60, "kg"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/noah/front.svg"
  3684. }
  3685. },
  3686. talons: {
  3687. height: math.unit(0.315, "meter"),
  3688. name: "Talons",
  3689. image: {
  3690. source: "./media/characters/noah/talons.svg"
  3691. }
  3692. }
  3693. },
  3694. [
  3695. {
  3696. name: "Large",
  3697. height: math.unit(50, "feet")
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(750, "feet"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(50, "miles")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(100000, "miles")
  3711. },
  3712. {
  3713. name: "Full-Size",
  3714. height: math.unit(3000000000, "miles")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(80, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natalya/front.svg"
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(80, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/natalya/back.svg"
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(150, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(5, "miles")
  3747. },
  3748. {
  3749. name: "Full-Size",
  3750. height: math.unit(600, "kiloparsecs")
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/erestrebah/front.svg",
  3763. extra: 1262/1162,
  3764. bottom: 96/1358
  3765. }
  3766. },
  3767. back: {
  3768. height: math.unit(2, "meter"),
  3769. weight: math.unit(50, "kg"),
  3770. name: "Back",
  3771. image: {
  3772. source: "./media/characters/erestrebah/back.svg",
  3773. extra: 1257/1139,
  3774. bottom: 13/1270
  3775. }
  3776. },
  3777. wing: {
  3778. height: math.unit(2, "meter"),
  3779. weight: math.unit(50, "kg"),
  3780. name: "Wing",
  3781. image: {
  3782. source: "./media/characters/erestrebah/wing.svg",
  3783. extra: 1262/1162,
  3784. bottom: 96/1358
  3785. }
  3786. },
  3787. mouth: {
  3788. height: math.unit(0.39, "feet"),
  3789. name: "Mouth",
  3790. image: {
  3791. source: "./media/characters/erestrebah/mouth.svg"
  3792. }
  3793. }
  3794. },
  3795. [
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(10, "feet")
  3799. },
  3800. {
  3801. name: "Large",
  3802. height: math.unit(50, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(300, "feet")
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(750, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(3, "miles")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(80, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/jennifer/front.svg",
  3828. bottom: 0.11,
  3829. extra: 1.16
  3830. }
  3831. },
  3832. frontAlt: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(80, "kg"),
  3835. name: "Front (Alt)",
  3836. image: {
  3837. source: "./media/characters/jennifer/front-alt.svg"
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Canon Height",
  3844. height: math.unit(120, "feet"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Macro+",
  3849. height: math.unit(300, "feet")
  3850. },
  3851. {
  3852. name: "Megamacro",
  3853. height: math.unit(20000, "feet")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(50, "kg"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/kalista/front.svg",
  3866. extra: 1314/1145,
  3867. bottom: 101/1415
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(50, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/kalista/back.svg",
  3876. extra: 1366 / 1156,
  3877. bottom: 33.9 / 1362.78
  3878. }
  3879. }
  3880. },
  3881. [
  3882. {
  3883. name: "Uncomfortably Small",
  3884. height: math.unit(10, "feet")
  3885. },
  3886. {
  3887. name: "Small",
  3888. height: math.unit(30, "feet")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(100, "feet"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Macro+",
  3897. height: math.unit(2000, "feet")
  3898. },
  3899. {
  3900. name: "True Form",
  3901. height: math.unit(8924, "miles")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(2, "meter"),
  3910. weight: math.unit(120, "kg"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/ggv/front.svg"
  3914. }
  3915. },
  3916. side: {
  3917. height: math.unit(2, "meter"),
  3918. weight: math.unit(120, "kg"),
  3919. name: "Side",
  3920. image: {
  3921. source: "./media/characters/ggv/side.svg"
  3922. }
  3923. }
  3924. },
  3925. [
  3926. {
  3927. name: "Extremely Puny",
  3928. height: math.unit(9 + 5 / 12, "feet")
  3929. },
  3930. {
  3931. name: "Horribly Small",
  3932. height: math.unit(47.7, "miles"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Reasonably Sized",
  3937. height: math.unit(25000, "parsecs")
  3938. },
  3939. {
  3940. name: "Slightly Uncompressed",
  3941. height: math.unit(7.77e31, "parsecs")
  3942. },
  3943. {
  3944. name: "Omniversal",
  3945. height: math.unit(1e300, "meters")
  3946. },
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(75, "lb"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/napalm/front.svg"
  3958. }
  3959. },
  3960. back: {
  3961. height: math.unit(2, "meter"),
  3962. weight: math.unit(75, "lb"),
  3963. name: "Back",
  3964. image: {
  3965. source: "./media/characters/napalm/back.svg"
  3966. }
  3967. }
  3968. },
  3969. [
  3970. {
  3971. name: "Standard",
  3972. height: math.unit(55, "feet"),
  3973. default: true
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/asana/front.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(7 + 5 / 6, "feet"),
  3992. weight: math.unit(325, "lb"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/asana/back.svg",
  3996. extra: 1114 / 1043,
  3997. bottom: 5 / 1120
  3998. }
  3999. },
  4000. dressedDark: {
  4001. height: math.unit(7 + 5 / 6, "feet"),
  4002. weight: math.unit(325, "lb"),
  4003. name: "Dressed (Dark)",
  4004. image: {
  4005. source: "./media/characters/asana/dressed-dark.svg",
  4006. extra: 1133 / 1060,
  4007. bottom: 15.2 / 1148.6
  4008. }
  4009. },
  4010. dressedLight: {
  4011. height: math.unit(7 + 5 / 6, "feet"),
  4012. weight: math.unit(325, "lb"),
  4013. name: "Dressed (Light)",
  4014. image: {
  4015. source: "./media/characters/asana/dressed-light.svg",
  4016. extra: 1133 / 1060,
  4017. bottom: 15.2 / 1148.6
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Standard",
  4024. height: math.unit(7 + 5 / 6, "feet"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Large",
  4029. height: math.unit(10, "meters")
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(2500, "meters")
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(5e6, "meters")
  4038. },
  4039. {
  4040. name: "Examacro",
  4041. height: math.unit(5e12, "lightyears")
  4042. },
  4043. {
  4044. name: "Max Size",
  4045. height: math.unit(1e31, "lightyears")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(60, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/ebony/front.svg",
  4058. bottom: 0.03,
  4059. extra: 1045 / 810 + 0.03
  4060. }
  4061. },
  4062. side: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(60, "kg"),
  4065. name: "Side",
  4066. image: {
  4067. source: "./media/characters/ebony/side.svg",
  4068. bottom: 0.03,
  4069. extra: 1045 / 810 + 0.03
  4070. }
  4071. },
  4072. back: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(60, "kg"),
  4075. name: "Back",
  4076. image: {
  4077. source: "./media/characters/ebony/back.svg",
  4078. bottom: 0.01,
  4079. extra: 1045 / 810 + 0.01
  4080. }
  4081. },
  4082. },
  4083. [
  4084. // TODO check why I did this lol
  4085. {
  4086. name: "Standard",
  4087. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Macro",
  4092. height: math.unit(200, "feet")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(13000, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/mountain/front.svg",
  4109. extra: 972 / 955,
  4110. bottom: 64 / 1036.6
  4111. }
  4112. },
  4113. back: {
  4114. height: math.unit(6, "feet"),
  4115. weight: math.unit(175, "lb"),
  4116. name: "Back",
  4117. image: {
  4118. source: "./media/characters/mountain/back.svg",
  4119. extra: 970 / 950,
  4120. bottom: 28.25 / 999
  4121. }
  4122. },
  4123. },
  4124. [
  4125. {
  4126. name: "Large",
  4127. height: math.unit(20, "meters")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(300, "meters")
  4132. },
  4133. {
  4134. name: "Gigamacro",
  4135. height: math.unit(10000, "km"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Examacro",
  4140. height: math.unit(10e9, "lightyears")
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(8, "feet"),
  4149. weight: math.unit(500, "lb"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/rick/front.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(8, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(5, "km")
  4165. }
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4170. {
  4171. front: {
  4172. height: math.unit(8, "feet"),
  4173. weight: math.unit(120, "lb"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/ona/front.svg"
  4177. }
  4178. },
  4179. frontAlt: {
  4180. height: math.unit(8, "feet"),
  4181. weight: math.unit(120, "lb"),
  4182. name: "Front (Alt)",
  4183. image: {
  4184. source: "./media/characters/ona/front-alt.svg"
  4185. }
  4186. },
  4187. back: {
  4188. height: math.unit(8, "feet"),
  4189. weight: math.unit(120, "lb"),
  4190. name: "Back",
  4191. image: {
  4192. source: "./media/characters/ona/back.svg"
  4193. }
  4194. },
  4195. foot: {
  4196. height: math.unit(1.1, "feet"),
  4197. name: "Foot",
  4198. image: {
  4199. source: "./media/characters/ona/foot.svg"
  4200. }
  4201. }
  4202. },
  4203. [
  4204. {
  4205. name: "Megamacro",
  4206. height: math.unit(70, "km"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Gigamacro",
  4211. height: math.unit(681818, "miles")
  4212. },
  4213. {
  4214. name: "Examacro",
  4215. height: math.unit(3800000, "lightyears")
  4216. },
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(12, "feet"),
  4224. weight: math.unit(3000, "lb"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/mech/front.svg",
  4228. extra: 2900 / 2770,
  4229. bottom: 110 / 3010
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(12, "feet"),
  4234. weight: math.unit(3000, "lb"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/mech/back.svg",
  4238. extra: 3011 / 2890,
  4239. bottom: 94 / 3105
  4240. }
  4241. },
  4242. maw: {
  4243. height: math.unit(3.07, "feet"),
  4244. name: "Maw",
  4245. image: {
  4246. source: "./media/characters/mech/maw.svg"
  4247. }
  4248. },
  4249. head: {
  4250. height: math.unit(2.82, "feet"),
  4251. name: "Head",
  4252. image: {
  4253. source: "./media/characters/mech/head.svg"
  4254. }
  4255. },
  4256. dick: {
  4257. height: math.unit(1.43, "feet"),
  4258. name: "Dick",
  4259. image: {
  4260. source: "./media/characters/mech/dick.svg"
  4261. }
  4262. },
  4263. },
  4264. [
  4265. {
  4266. name: "Normal",
  4267. height: math.unit(12, "feet")
  4268. },
  4269. {
  4270. name: "Macro",
  4271. height: math.unit(300, "feet"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Macro+",
  4276. height: math.unit(1500, "feet")
  4277. },
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(1.3, "meter"),
  4285. weight: math.unit(30, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/gregory/front.svg",
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(1.3, "meter"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(20, "meter")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(2.8, "meter"),
  4309. weight: math.unit(200, "kg"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/elory/front.svg",
  4313. }
  4314. }
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(2.8, "meter"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(38, "meter")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(470, "feet"),
  4333. weight: math.unit(924, "tons"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/angelpatamon/front.svg",
  4337. }
  4338. }
  4339. },
  4340. [
  4341. {
  4342. name: "Normal",
  4343. height: math.unit(470, "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Deity Size I",
  4348. height: math.unit(28651.2, "km")
  4349. },
  4350. {
  4351. name: "Deity Size II",
  4352. height: math.unit(171907.2, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4358. {
  4359. side: {
  4360. height: math.unit(7.2, "meter"),
  4361. weight: math.unit(8.2, "tons"),
  4362. name: "Side",
  4363. image: {
  4364. source: "./media/characters/cryae/side.svg",
  4365. extra: 3500 / 1500
  4366. }
  4367. }
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(7.2, "meter"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(175, "lb"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/xera/front.svg",
  4386. extra: 2377 / 1972,
  4387. bottom: 75.5 / 2452
  4388. }
  4389. },
  4390. side: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(175, "lb"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/xera/side.svg",
  4396. extra: 2345 / 2019,
  4397. bottom: 39.7 / 2384
  4398. }
  4399. },
  4400. back: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Back",
  4404. image: {
  4405. source: "./media/characters/xera/back.svg",
  4406. extra: 2095 / 1984,
  4407. bottom: 67 / 2166
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(10, "feet")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Macro+",
  4423. height: math.unit(10, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(25000, "km")
  4428. },
  4429. {
  4430. name: "Teramacro",
  4431. height: math.unit(3e6, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(175, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/nebula/front.svg",
  4444. extra: 2566 / 2362,
  4445. bottom: 81 / 2644
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Small",
  4452. height: math.unit(4.5, "meters")
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(1500, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(150, "km")
  4462. },
  4463. {
  4464. name: "Gigamacro",
  4465. height: math.unit(27000, "km")
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(225, "lb"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/abysgar/front.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Small",
  4484. height: math.unit(4.5, "meters")
  4485. },
  4486. {
  4487. name: "Macro",
  4488. height: math.unit(1250, "meters"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Megamacro",
  4493. height: math.unit(125, "km")
  4494. },
  4495. {
  4496. name: "Gigamacro",
  4497. height: math.unit(26000, "km")
  4498. }
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(180, "lb"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/yakuz/front.svg"
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Small",
  4516. height: math.unit(5, "meters")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(1500, "meters"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(200, "km")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(100000, "km")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(175, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/mirova/front.svg",
  4542. extra: 3334 / 3071,
  4543. bottom: 42 / 3375.6
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Small",
  4550. height: math.unit(5, "meters")
  4551. },
  4552. {
  4553. name: "Macro",
  4554. height: math.unit(900, "meters"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Megamacro",
  4559. height: math.unit(135, "km")
  4560. },
  4561. {
  4562. name: "Gigamacro",
  4563. height: math.unit(20000, "km")
  4564. }
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4569. {
  4570. side: {
  4571. height: math.unit(28.35, "feet"),
  4572. weight: math.unit(99.75, "tons"),
  4573. name: "Side",
  4574. image: {
  4575. source: "./media/characters/asana-mech/side.svg",
  4576. extra: 923 / 699,
  4577. bottom: 50 / 975
  4578. }
  4579. },
  4580. chaingun: {
  4581. height: math.unit(7, "feet"),
  4582. weight: math.unit(2400, "lb"),
  4583. name: "Chaingun",
  4584. image: {
  4585. source: "./media/characters/asana-mech/chaingun.svg"
  4586. }
  4587. },
  4588. laser: {
  4589. height: math.unit(7.12, "feet"),
  4590. weight: math.unit(2000, "lb"),
  4591. name: "Laser",
  4592. image: {
  4593. source: "./media/characters/asana-mech/laser.svg"
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(28.35, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Macro",
  4605. height: math.unit(2500, "feet")
  4606. },
  4607. {
  4608. name: "Megamacro",
  4609. height: math.unit(25, "miles")
  4610. },
  4611. {
  4612. name: "Examacro",
  4613. height: math.unit(6e8, "lightyears")
  4614. },
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/asche/front.svg",
  4626. extra: 1258 / 1190,
  4627. bottom: 47 / 1305
  4628. }
  4629. },
  4630. frontUnderwear: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Front (Underwear)",
  4634. image: {
  4635. source: "./media/characters/asche/front-underwear.svg",
  4636. extra: 1258 / 1190,
  4637. bottom: 47 / 1305
  4638. }
  4639. },
  4640. frontDressed: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Front (Dressed)",
  4644. image: {
  4645. source: "./media/characters/asche/front-dressed.svg",
  4646. extra: 1258 / 1190,
  4647. bottom: 47 / 1305
  4648. }
  4649. },
  4650. frontArmor: {
  4651. height: math.unit(5, "meters"),
  4652. weight: math.unit(1000, "kg"),
  4653. name: "Front (Armored)",
  4654. image: {
  4655. source: "./media/characters/asche/front-armored.svg",
  4656. extra: 1374 / 1308,
  4657. bottom: 23 / 1397
  4658. }
  4659. },
  4660. mp724: {
  4661. height: math.unit(0.96, "meters"),
  4662. weight: math.unit(38, "kg"),
  4663. name: "H&K MP724",
  4664. image: {
  4665. source: "./media/characters/asche/h&k-mp724.svg"
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(5, "meters"),
  4670. weight: math.unit(1000, "kg"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/asche/side.svg",
  4674. extra: 1717 / 1609,
  4675. bottom: 0.005
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(5, "meters"),
  4680. weight: math.unit(1000, "kg"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/asche/back.svg",
  4684. extra: 1570 / 1501
  4685. }
  4686. },
  4687. },
  4688. [
  4689. {
  4690. name: "DEFCON 5",
  4691. height: math.unit(5, "meters")
  4692. },
  4693. {
  4694. name: "DEFCON 4",
  4695. height: math.unit(500, "meters"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "DEFCON 3",
  4700. height: math.unit(5, "km")
  4701. },
  4702. {
  4703. name: "DEFCON 2",
  4704. height: math.unit(500, "km")
  4705. },
  4706. {
  4707. name: "DEFCON 1",
  4708. height: math.unit(500000, "km")
  4709. },
  4710. {
  4711. name: "DEFCON 0",
  4712. height: math.unit(3, "gigaparsecs")
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(76, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/gale/front.svg"
  4725. }
  4726. },
  4727. frontAlt1: {
  4728. height: math.unit(2, "meters"),
  4729. weight: math.unit(76, "kg"),
  4730. name: "Front (Alt 1)",
  4731. image: {
  4732. source: "./media/characters/gale/front-alt-1.svg"
  4733. }
  4734. },
  4735. frontAlt2: {
  4736. height: math.unit(2, "meters"),
  4737. weight: math.unit(76, "kg"),
  4738. name: "Front (Alt 2)",
  4739. image: {
  4740. source: "./media/characters/gale/front-alt-2.svg"
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(7, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(150, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(300, "feet")
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(5 + 10/12, "feet"),
  4765. weight: math.unit(67, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/draylen/front.svg",
  4769. extra: 832/777,
  4770. bottom: 85/917
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(5 + 10/12, "feet")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(150, "feet"),
  4782. default: true
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4788. {
  4789. front: {
  4790. height: math.unit(7 + 9 / 12, "feet"),
  4791. weight: math.unit(379, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/chez/front.svg"
  4795. }
  4796. },
  4797. side: {
  4798. height: math.unit(7 + 9 / 12, "feet"),
  4799. weight: math.unit(379, "lbs"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/chez/side.svg"
  4803. }
  4804. }
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(7 + 9 / 12, "feet"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "God King",
  4814. height: math.unit(9750000, "meters")
  4815. }
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4820. {
  4821. front: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(275, "lbs"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/kaylum/front.svg",
  4827. bottom: 0.01,
  4828. extra: 1166 / 1031
  4829. }
  4830. },
  4831. frontWingless: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(275, "lbs"),
  4834. name: "Front (Wingless)",
  4835. image: {
  4836. source: "./media/characters/kaylum/front-wingless.svg",
  4837. bottom: 0.01,
  4838. extra: 1117 / 1031
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(3.05, "meters")
  4846. },
  4847. {
  4848. name: "Master",
  4849. height: math.unit(5.5, "meters")
  4850. },
  4851. {
  4852. name: "Rampage",
  4853. height: math.unit(19, "meters")
  4854. },
  4855. {
  4856. name: "Macro Lite",
  4857. height: math.unit(37, "meters")
  4858. },
  4859. {
  4860. name: "Hyper Predator",
  4861. height: math.unit(61, "meters")
  4862. },
  4863. {
  4864. name: "Macro",
  4865. height: math.unit(138, "meters"),
  4866. default: true
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4872. {
  4873. front: {
  4874. height: math.unit(5 + 5 / 12, "feet"),
  4875. weight: math.unit(120, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/geta/front.svg",
  4879. extra: 1003/933,
  4880. bottom: 21/1024
  4881. }
  4882. },
  4883. paw: {
  4884. height: math.unit(0.35, "feet"),
  4885. name: "Paw",
  4886. image: {
  4887. source: "./media/characters/geta/paw.svg"
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Micro",
  4894. height: math.unit(3, "inches"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(5 + 5 / 12, "feet")
  4900. }
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(6, "feet"),
  4908. weight: math.unit(300, "lbs"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/tyrnn/front.svg"
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Main Height",
  4918. height: math.unit(355, "feet"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Fave. Height",
  4923. height: math.unit(2400, "feet")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(300, "lbs"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/appledectomy/front.svg"
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(2500, "feet")
  4943. },
  4944. {
  4945. name: "Megamacro",
  4946. height: math.unit(50, "miles"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Gigamacro",
  4951. height: math.unit(5000, "miles")
  4952. },
  4953. {
  4954. name: "Teramacro",
  4955. height: math.unit(250000, "miles")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(200, "lbs"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/vulpes/front.svg",
  4968. extra: 573 / 543,
  4969. bottom: 0.033
  4970. }
  4971. },
  4972. side: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(200, "lbs"),
  4975. name: "Side",
  4976. image: {
  4977. source: "./media/characters/vulpes/side.svg",
  4978. extra: 577 / 549,
  4979. bottom: 11 / 588
  4980. }
  4981. },
  4982. back: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(200, "lbs"),
  4985. name: "Back",
  4986. image: {
  4987. source: "./media/characters/vulpes/back.svg",
  4988. extra: 573 / 549,
  4989. bottom: 20 / 593
  4990. }
  4991. },
  4992. feet: {
  4993. height: math.unit(1.276, "feet"),
  4994. name: "Feet",
  4995. image: {
  4996. source: "./media/characters/vulpes/feet.svg"
  4997. }
  4998. },
  4999. maw: {
  5000. height: math.unit(1.18, "feet"),
  5001. name: "Maw",
  5002. image: {
  5003. source: "./media/characters/vulpes/maw.svg"
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Micro",
  5010. height: math.unit(2, "inches")
  5011. },
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(6.3, "feet")
  5015. },
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(850, "feet")
  5019. },
  5020. {
  5021. name: "Megamacro",
  5022. height: math.unit(7500, "feet"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Gigamacro",
  5027. height: math.unit(570000, "miles")
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(210, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rain-fallen/front.svg"
  5040. }
  5041. },
  5042. side: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(210, "lbs"),
  5045. name: "Side",
  5046. image: {
  5047. source: "./media/characters/rain-fallen/side.svg"
  5048. }
  5049. },
  5050. back: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(210, "lbs"),
  5053. name: "Back",
  5054. image: {
  5055. source: "./media/characters/rain-fallen/back.svg"
  5056. }
  5057. },
  5058. feral: {
  5059. height: math.unit(9, "feet"),
  5060. weight: math.unit(700, "lbs"),
  5061. name: "Feral",
  5062. image: {
  5063. source: "./media/characters/rain-fallen/feral.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Meddling with Mortals",
  5070. height: math.unit(8 + 8/12, "feet")
  5071. },
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(5, "meter")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(150, "meter"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(278e6, "meter")
  5084. },
  5085. {
  5086. name: "Gigamacro",
  5087. height: math.unit(2e9, "meter")
  5088. },
  5089. {
  5090. name: "Teramacro",
  5091. height: math.unit(8e12, "meter")
  5092. },
  5093. {
  5094. name: "Devourer",
  5095. height: math.unit(14, "zettameters")
  5096. },
  5097. {
  5098. name: "Scarlet King",
  5099. height: math.unit(18, "yottameters")
  5100. },
  5101. {
  5102. name: "Void",
  5103. height: math.unit(1e88, "yottameters")
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5109. {
  5110. standing: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Standing",
  5114. image: {
  5115. source: "./media/characters/zaakira/standing.svg",
  5116. extra: 1599/1504,
  5117. bottom: 39/1638
  5118. }
  5119. },
  5120. laying: {
  5121. height: math.unit(3, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Laying",
  5124. image: {
  5125. source: "./media/characters/zaakira/laying.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(12, "feet")
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(279, "feet"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5143. {
  5144. femSfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Fem",
  5148. image: {
  5149. source: "./media/characters/sigvald/fem-sfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. femNsfw: {
  5155. height: math.unit(8, "feet"),
  5156. weight: math.unit(350, "lb"),
  5157. name: "Fem (NSFW)",
  5158. image: {
  5159. source: "./media/characters/sigvald/fem-nsfw.svg",
  5160. extra: 182 / 164,
  5161. bottom: 8.7 / 190.5
  5162. }
  5163. },
  5164. maleNsfw: {
  5165. height: math.unit(8, "feet"),
  5166. weight: math.unit(350, "lb"),
  5167. name: "Male (NSFW)",
  5168. image: {
  5169. source: "./media/characters/sigvald/male-nsfw.svg",
  5170. extra: 182 / 164,
  5171. bottom: 8.7 / 190.5
  5172. }
  5173. },
  5174. hermNsfw: {
  5175. height: math.unit(8, "feet"),
  5176. weight: math.unit(350, "lb"),
  5177. name: "Herm (NSFW)",
  5178. image: {
  5179. source: "./media/characters/sigvald/herm-nsfw.svg",
  5180. extra: 182 / 164,
  5181. bottom: 8.7 / 190.5
  5182. }
  5183. },
  5184. dick: {
  5185. height: math.unit(2.36, "feet"),
  5186. name: "Dick",
  5187. image: {
  5188. source: "./media/characters/sigvald/dick.svg"
  5189. }
  5190. },
  5191. eye: {
  5192. height: math.unit(0.31, "feet"),
  5193. name: "Eye",
  5194. image: {
  5195. source: "./media/characters/sigvald/eye.svg"
  5196. }
  5197. },
  5198. mouth: {
  5199. height: math.unit(0.92, "feet"),
  5200. name: "Mouth",
  5201. image: {
  5202. source: "./media/characters/sigvald/mouth.svg"
  5203. }
  5204. },
  5205. paws: {
  5206. height: math.unit(2.2, "feet"),
  5207. name: "Paws",
  5208. image: {
  5209. source: "./media/characters/sigvald/paws.svg"
  5210. }
  5211. }
  5212. },
  5213. [
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(8, "feet")
  5217. },
  5218. {
  5219. name: "Large",
  5220. height: math.unit(12, "feet")
  5221. },
  5222. {
  5223. name: "Larger",
  5224. height: math.unit(20, "feet")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(150, "feet")
  5229. },
  5230. {
  5231. name: "Macro+",
  5232. height: math.unit(200, "feet"),
  5233. default: true
  5234. },
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5239. {
  5240. side: {
  5241. height: math.unit(12, "feet"),
  5242. weight: math.unit(2000, "kg"),
  5243. name: "Side",
  5244. image: {
  5245. source: "./media/characters/scott/side.svg",
  5246. extra: 754 / 724,
  5247. bottom: 0.069
  5248. }
  5249. },
  5250. upright: {
  5251. height: math.unit(12, "feet"),
  5252. weight: math.unit(2000, "kg"),
  5253. name: "Upright",
  5254. image: {
  5255. source: "./media/characters/scott/upright.svg",
  5256. extra: 3881 / 3722,
  5257. bottom: 0.05
  5258. }
  5259. },
  5260. },
  5261. [
  5262. {
  5263. name: "Normal",
  5264. height: math.unit(12, "feet"),
  5265. default: true
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5271. {
  5272. side: {
  5273. height: math.unit(8, "meters"),
  5274. weight: math.unit(84755, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/tobias/side.svg",
  5278. extra: 1474 / 1096,
  5279. bottom: 38.9 / 1513.1235
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(8, "meters"),
  5287. default: true
  5288. },
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5293. {
  5294. front: {
  5295. height: math.unit(5.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/kieran/front.svg",
  5300. extra: 2694 / 2364,
  5301. bottom: 217 / 2908
  5302. }
  5303. },
  5304. side: {
  5305. height: math.unit(5.5, "feet"),
  5306. weight: math.unit(400, "lbs"),
  5307. name: "Side",
  5308. image: {
  5309. source: "./media/characters/kieran/side.svg",
  5310. extra: 875 / 777,
  5311. bottom: 84.6 / 959
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(5.5, "feet"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5325. {
  5326. side: {
  5327. height: math.unit(2, "meters"),
  5328. weight: math.unit(70, "kg"),
  5329. name: "Side",
  5330. image: {
  5331. source: "./media/characters/sanya/side.svg",
  5332. bottom: 0.02,
  5333. extra: 1.02
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Small",
  5340. height: math.unit(2, "meters")
  5341. },
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(3, "meters")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(16, "meters"),
  5349. default: true
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(2, "meters"),
  5358. weight: math.unit(120, "kg"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/miranda/front.svg",
  5362. extra: 195 / 185,
  5363. bottom: 10.9 / 206.5
  5364. }
  5365. },
  5366. back: {
  5367. height: math.unit(2, "meters"),
  5368. weight: math.unit(120, "kg"),
  5369. name: "Back",
  5370. image: {
  5371. source: "./media/characters/miranda/back.svg",
  5372. extra: 201 / 193,
  5373. bottom: 2.3 / 203.7
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(10, "feet"),
  5381. default: true
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "James", species: ["deer"], tags: ["anthro"] },
  5387. {
  5388. side: {
  5389. height: math.unit(2, "meters"),
  5390. weight: math.unit(100, "kg"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/james/front.svg",
  5394. extra: 10 / 8.5
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(8.5, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5408. {
  5409. side: {
  5410. height: math.unit(9.5, "feet"),
  5411. weight: math.unit(2500, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/heather/side.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(9.5, "feet"),
  5422. default: true
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5428. {
  5429. side: {
  5430. height: math.unit(6.5, "feet"),
  5431. weight: math.unit(400, "lbs"),
  5432. name: "Side",
  5433. image: {
  5434. source: "./media/characters/lukas/side.svg",
  5435. extra: 7.25 / 6.5
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(6.5, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5449. {
  5450. side: {
  5451. height: math.unit(5, "feet"),
  5452. weight: math.unit(3000, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/louise/side.svg"
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(5, "feet"),
  5463. default: true
  5464. }
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5469. {
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(150, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/ramona/side.svg",
  5476. extra: 871/854,
  5477. bottom: 41/912
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5.3, "meters"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(20, "stories")
  5490. },
  5491. {
  5492. name: "Macro+",
  5493. height: math.unit(50, "stories")
  5494. },
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5499. {
  5500. standing: {
  5501. height: math.unit(5.75, "feet"),
  5502. weight: math.unit(160, "lbs"),
  5503. name: "Standing",
  5504. image: {
  5505. source: "./media/characters/deerpuff/standing.svg",
  5506. extra: 682 / 624
  5507. }
  5508. },
  5509. sitting: {
  5510. height: math.unit(5.75 / 1.79, "feet"),
  5511. weight: math.unit(160, "lbs"),
  5512. name: "Sitting",
  5513. image: {
  5514. source: "./media/characters/deerpuff/sitting.svg",
  5515. bottom: 44 / 400,
  5516. extra: 1
  5517. }
  5518. },
  5519. taurLaying: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(400, "lbs"),
  5522. name: "Taur (Laying)",
  5523. image: {
  5524. source: "./media/characters/deerpuff/taur-laying.svg"
  5525. }
  5526. },
  5527. },
  5528. [
  5529. {
  5530. name: "Puffball",
  5531. height: math.unit(6, "inches")
  5532. },
  5533. {
  5534. name: "Normalpuff",
  5535. height: math.unit(5.75, "feet")
  5536. },
  5537. {
  5538. name: "Macropuff",
  5539. height: math.unit(1500, "feet"),
  5540. default: true
  5541. },
  5542. {
  5543. name: "Megapuff",
  5544. height: math.unit(500, "miles")
  5545. },
  5546. {
  5547. name: "Gigapuff",
  5548. height: math.unit(250000, "miles")
  5549. },
  5550. {
  5551. name: "Omegapuff",
  5552. height: math.unit(1000, "lightyears")
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5558. {
  5559. stomping: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(170, "lbs"),
  5562. name: "Stomping",
  5563. image: {
  5564. source: "./media/characters/vivian/stomping.svg"
  5565. }
  5566. },
  5567. sitting: {
  5568. height: math.unit(6 / 1.75, "feet"),
  5569. weight: math.unit(170, "lbs"),
  5570. name: "Sitting",
  5571. image: {
  5572. source: "./media/characters/vivian/sitting.svg",
  5573. bottom: 1 / 6.4,
  5574. extra: 1,
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(7, "feet"),
  5582. default: true
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(10, "stories")
  5587. },
  5588. {
  5589. name: "Macro+",
  5590. height: math.unit(30, "stories")
  5591. },
  5592. {
  5593. name: "Megamacro",
  5594. height: math.unit(10, "miles")
  5595. },
  5596. {
  5597. name: "Megamacro+",
  5598. height: math.unit(2750000, "meters")
  5599. },
  5600. ]
  5601. ))
  5602. characterMakers.push(() => makeCharacter(
  5603. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5604. {
  5605. front: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(160, "lbs"),
  5608. name: "Front",
  5609. image: {
  5610. source: "./media/characters/prince/front.svg",
  5611. extra: 3400 / 3000
  5612. }
  5613. },
  5614. jumping: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(160, "lbs"),
  5617. name: "Jumping",
  5618. image: {
  5619. source: "./media/characters/prince/jump.svg",
  5620. extra: 2555 / 2134
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(7.75, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Not cute",
  5632. height: math.unit(17, "feet")
  5633. },
  5634. {
  5635. name: "I said NOT",
  5636. height: math.unit(91, "feet")
  5637. },
  5638. {
  5639. name: "Please stop",
  5640. height: math.unit(560, "feet")
  5641. },
  5642. {
  5643. name: "What have you done",
  5644. height: math.unit(2200, "feet")
  5645. },
  5646. {
  5647. name: "Deer God",
  5648. height: math.unit(3.6, "miles")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5654. {
  5655. standing: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(300, "lbs"),
  5658. name: "Standing",
  5659. image: {
  5660. source: "./media/characters/psymon/standing.svg",
  5661. extra: 1888 / 1810,
  5662. bottom: 0.05
  5663. }
  5664. },
  5665. slithering: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(300, "lbs"),
  5668. name: "Slithering",
  5669. image: {
  5670. source: "./media/characters/psymon/slithering.svg",
  5671. extra: 1330 / 1224
  5672. }
  5673. },
  5674. slitheringAlt: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(300, "lbs"),
  5677. name: "Slithering (Alt)",
  5678. image: {
  5679. source: "./media/characters/psymon/slithering-alt.svg",
  5680. extra: 1330 / 1224
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(11.25, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Large",
  5692. height: math.unit(27, "feet")
  5693. },
  5694. {
  5695. name: "Giant",
  5696. height: math.unit(87, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(365, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3, "miles")
  5705. },
  5706. {
  5707. name: "World Serpent",
  5708. height: math.unit(8000, "miles")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/daimos/front.svg",
  5721. extra: 4160 / 3897,
  5722. bottom: 0.021
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(8, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Big Dog",
  5734. height: math.unit(22, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(127, "feet")
  5739. },
  5740. {
  5741. name: "Megamacro",
  5742. height: math.unit(3600, "feet")
  5743. },
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5748. {
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(180, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/blake/side.svg",
  5755. extra: 1212 / 1120,
  5756. bottom: 0.05
  5757. }
  5758. },
  5759. crouched: {
  5760. height: math.unit(6 * 0.57, "feet"),
  5761. weight: math.unit(180, "lbs"),
  5762. name: "Crouched",
  5763. image: {
  5764. source: "./media/characters/blake/crouched.svg",
  5765. extra: 840 / 587,
  5766. bottom: 0.04
  5767. }
  5768. },
  5769. bent: {
  5770. height: math.unit(6 * 0.75, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Bent",
  5773. image: {
  5774. source: "./media/characters/blake/bent.svg",
  5775. extra: 592 / 544,
  5776. bottom: 0.035
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(8 + 1 / 6, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Big Backside",
  5788. height: math.unit(37, "feet")
  5789. },
  5790. {
  5791. name: "Subway Shredder",
  5792. height: math.unit(72, "feet")
  5793. },
  5794. {
  5795. name: "City Carver",
  5796. height: math.unit(1675, "feet")
  5797. },
  5798. {
  5799. name: "Tectonic Tweaker",
  5800. height: math.unit(2300, "miles")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(180, "lbs"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/guisetto/front.svg",
  5813. extra: 856 / 817,
  5814. bottom: 0.06
  5815. }
  5816. },
  5817. airborne: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Airborne",
  5821. image: {
  5822. source: "./media/characters/guisetto/airborne.svg",
  5823. extra: 584 / 525
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(10 + 11 / 12, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Large",
  5835. height: math.unit(35, "feet")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(475, "feet")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(180, "lbs"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/luxor/front.svg",
  5852. extra: 2940 / 2152
  5853. }
  5854. },
  5855. back: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(180, "lbs"),
  5858. name: "Back",
  5859. image: {
  5860. source: "./media/characters/luxor/back.svg",
  5861. extra: 1083 / 960
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(5 + 5 / 6, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Lamp",
  5873. height: math.unit(50, "feet")
  5874. },
  5875. {
  5876. name: "Lämp",
  5877. height: math.unit(300, "feet")
  5878. },
  5879. {
  5880. name: "The sun is a lamp",
  5881. height: math.unit(250000, "miles")
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(50, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/huoyan/front.svg"
  5894. }
  5895. },
  5896. side: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(180, "lbs"),
  5899. name: "Side",
  5900. image: {
  5901. source: "./media/characters/huoyan/side.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Chef",
  5908. height: math.unit(9, "feet")
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(65, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(780, "feet")
  5918. },
  5919. {
  5920. name: "Flaming Mountain",
  5921. height: math.unit(4.8, "miles")
  5922. },
  5923. {
  5924. name: "Celestial",
  5925. height: math.unit(765000, "miles")
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(5 + 3 / 4, "feet"),
  5934. weight: math.unit(120, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/tails/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 3 / 4, "feet"),
  5945. default: true
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(4, "feet"),
  5954. weight: math.unit(50, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rainy/front.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Macro",
  5964. height: math.unit(800, "feet"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(150, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/rainier/front.svg"
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(2, "mm"),
  5985. default: true
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(8 + 4/12, "feet"),
  5994. weight: math.unit(450, "kilograms"),
  5995. volume: math.unit(5, "cups"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/andy-renard/front.svg",
  5999. extra: 1839/1726,
  6000. bottom: 134/1973
  6001. }
  6002. },
  6003. back: {
  6004. height: math.unit(8 + 4/12, "feet"),
  6005. weight: math.unit(450, "kilograms"),
  6006. volume: math.unit(5, "cups"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/andy-renard/back.svg",
  6010. extra: 1838/1710,
  6011. bottom: 105/1943
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Tall",
  6018. height: math.unit(8 + 4/12, "feet")
  6019. },
  6020. {
  6021. name: "Mini Macro",
  6022. height: math.unit(15, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(100, "feet")
  6028. },
  6029. {
  6030. name: "Mega Macro",
  6031. height: math.unit(1000, "feet")
  6032. },
  6033. {
  6034. name: "Giga Macro",
  6035. height: math.unit(10, "miles")
  6036. },
  6037. {
  6038. name: "God Macro",
  6039. height: math.unit(1, "multiverse")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(210, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/cimmaron/front-sfw.svg",
  6052. extra: 701 / 676,
  6053. bottom: 0.046
  6054. }
  6055. },
  6056. back: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(210, "lbs"),
  6059. name: "Back",
  6060. image: {
  6061. source: "./media/characters/cimmaron/back-sfw.svg",
  6062. extra: 701 / 676,
  6063. bottom: 0.046
  6064. }
  6065. },
  6066. frontNsfw: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(210, "lbs"),
  6069. name: "Front (NSFW)",
  6070. image: {
  6071. source: "./media/characters/cimmaron/front-nsfw.svg",
  6072. extra: 701 / 676,
  6073. bottom: 0.046
  6074. }
  6075. },
  6076. backNsfw: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(210, "lbs"),
  6079. name: "Back (NSFW)",
  6080. image: {
  6081. source: "./media/characters/cimmaron/back-nsfw.svg",
  6082. extra: 701 / 676,
  6083. bottom: 0.046
  6084. }
  6085. },
  6086. dick: {
  6087. height: math.unit(1.714, "feet"),
  6088. name: "Dick",
  6089. image: {
  6090. source: "./media/characters/cimmaron/dick.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(6, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Macro Mayor",
  6102. height: math.unit(350, "meters")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(200, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/akari/front.svg",
  6115. extra: 962 / 901,
  6116. bottom: 0.04
  6117. }
  6118. }
  6119. },
  6120. [
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(5, "inches"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(7, "feet")
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(140, "lbs"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/cynosura/front.svg",
  6141. extra: 896 / 847
  6142. }
  6143. },
  6144. back: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(140, "lbs"),
  6147. name: "Back",
  6148. image: {
  6149. source: "./media/characters/cynosura/back.svg",
  6150. extra: 1365 / 1250
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Micro",
  6157. height: math.unit(4, "inches")
  6158. },
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(5.75, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Tall",
  6166. height: math.unit(10, "feet")
  6167. },
  6168. {
  6169. name: "Big",
  6170. height: math.unit(20, "feet")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(50, "feet")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(13 + 2/12, "feet"),
  6183. weight: math.unit(800, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/gin/front.svg",
  6187. extra: 1312/1191,
  6188. bottom: 45/1357
  6189. }
  6190. },
  6191. mouth: {
  6192. height: math.unit(2.39 * 1.8, "feet"),
  6193. name: "Mouth",
  6194. image: {
  6195. source: "./media/characters/gin/mouth.svg"
  6196. }
  6197. },
  6198. hand: {
  6199. height: math.unit(1.57 * 2.19, "feet"),
  6200. name: "Hand",
  6201. image: {
  6202. source: "./media/characters/gin/hand.svg"
  6203. }
  6204. },
  6205. foot: {
  6206. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6207. name: "Foot",
  6208. image: {
  6209. source: "./media/characters/gin/foot.svg"
  6210. }
  6211. },
  6212. sole: {
  6213. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6214. name: "Sole",
  6215. image: {
  6216. source: "./media/characters/gin/sole.svg"
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Very Small",
  6223. height: math.unit(13 + 2 / 12, "feet")
  6224. },
  6225. {
  6226. name: "Micro",
  6227. height: math.unit(600, "miles")
  6228. },
  6229. {
  6230. name: "Regular",
  6231. height: math.unit(20, "earths"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(2.2, "solarradii")
  6237. },
  6238. {
  6239. name: "Teramacro",
  6240. height: math.unit(1.2, "galaxies")
  6241. },
  6242. {
  6243. name: "Omegamacro",
  6244. height: math.unit(200, "universes")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6 + 1 / 6, "feet"),
  6253. weight: math.unit(178, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/guy/front.svg"
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(6 + 1 / 6, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Large",
  6268. height: math.unit(25 + 7 / 12, "feet")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(60 + 9 / 12, "feet")
  6273. },
  6274. {
  6275. name: "Macro+",
  6276. height: math.unit(246, "feet")
  6277. },
  6278. {
  6279. name: "Macro++",
  6280. height: math.unit(878, "feet")
  6281. }
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(9, "feet"),
  6289. weight: math.unit(800, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/tiberius/front.svg",
  6293. extra: 2295 / 2071
  6294. }
  6295. },
  6296. back: {
  6297. height: math.unit(9, "feet"),
  6298. weight: math.unit(800, "lbs"),
  6299. name: "Back",
  6300. image: {
  6301. source: "./media/characters/tiberius/back.svg",
  6302. extra: 2373 / 2160
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(9, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6316. {
  6317. front: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(600, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/surgo/front.svg",
  6323. extra: 3591 / 2227
  6324. }
  6325. },
  6326. back: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(600, "lbs"),
  6329. name: "Back",
  6330. image: {
  6331. source: "./media/characters/surgo/back.svg",
  6332. extra: 3557 / 2228
  6333. }
  6334. },
  6335. laying: {
  6336. height: math.unit(6 * 0.85, "feet"),
  6337. weight: math.unit(600, "lbs"),
  6338. name: "Laying",
  6339. image: {
  6340. source: "./media/characters/surgo/laying.svg"
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(6, "feet"),
  6348. default: true
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6354. {
  6355. side: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(150, "lbs"),
  6358. name: "Side",
  6359. image: {
  6360. source: "./media/characters/cibus/side.svg",
  6361. extra: 800 / 400
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(6, "feet"),
  6369. default: true
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(240, "lbs"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/nibbles/front.svg"
  6382. }
  6383. },
  6384. side: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(240, "lbs"),
  6387. name: "Side",
  6388. image: {
  6389. source: "./media/characters/nibbles/side.svg"
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(9, "feet"),
  6397. default: true
  6398. }
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6403. {
  6404. side: {
  6405. height: math.unit(5 + 1 / 6, "feet"),
  6406. weight: math.unit(130, "lbs"),
  6407. name: "Side",
  6408. image: {
  6409. source: "./media/characters/rikky/side.svg",
  6410. extra: 851 / 801
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Normal",
  6417. height: math.unit(5 + 1 / 6, "feet")
  6418. },
  6419. {
  6420. name: "Macro",
  6421. height: math.unit(152, "feet"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Megamacro",
  6426. height: math.unit(7, "miles")
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6432. {
  6433. side: {
  6434. height: math.unit(370, "cm"),
  6435. weight: math.unit(350, "lbs"),
  6436. name: "Side",
  6437. image: {
  6438. source: "./media/characters/malfressa/side.svg"
  6439. }
  6440. },
  6441. walking: {
  6442. height: math.unit(370, "cm"),
  6443. weight: math.unit(350, "lbs"),
  6444. name: "Walking",
  6445. image: {
  6446. source: "./media/characters/malfressa/walking.svg"
  6447. }
  6448. },
  6449. feral: {
  6450. height: math.unit(2500, "cm"),
  6451. weight: math.unit(100000, "lbs"),
  6452. name: "Feral",
  6453. image: {
  6454. source: "./media/characters/malfressa/feral.svg",
  6455. extra: 2108 / 837,
  6456. bottom: 0.02
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(370, "cm")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(300, "meters"),
  6468. default: true
  6469. }
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6474. {
  6475. front: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(60, "kg"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/jaro/front.svg",
  6481. extra: 845/817,
  6482. bottom: 45/890
  6483. }
  6484. },
  6485. back: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(60, "kg"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/jaro/back.svg",
  6491. extra: 847/817,
  6492. bottom: 34/881
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Micro",
  6499. height: math.unit(7, "inches")
  6500. },
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(5.5, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Minimacro",
  6508. height: math.unit(20, "feet")
  6509. },
  6510. {
  6511. name: "Macro",
  6512. height: math.unit(200, "meters")
  6513. }
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(195, "lb"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/rogue/front.svg"
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(90, "feet"),
  6532. default: true
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6538. {
  6539. standing: {
  6540. height: math.unit(5 + 8 / 12, "feet"),
  6541. weight: math.unit(140, "lb"),
  6542. name: "Standing",
  6543. image: {
  6544. source: "./media/characters/piper/standing.svg",
  6545. extra: 1440/1284,
  6546. bottom: 66/1506
  6547. }
  6548. },
  6549. running: {
  6550. height: math.unit(5 + 8 / 12, "feet"),
  6551. weight: math.unit(140, "lb"),
  6552. name: "Running",
  6553. image: {
  6554. source: "./media/characters/piper/running.svg",
  6555. extra: 3948/3655,
  6556. bottom: 0/3948
  6557. }
  6558. },
  6559. sole: {
  6560. height: math.unit(0.81, "feet"),
  6561. weight: math.unit(2, "kg"),
  6562. name: "Sole",
  6563. image: {
  6564. source: "./media/characters/piper/sole.svg"
  6565. }
  6566. },
  6567. nipple: {
  6568. height: math.unit(0.25, "feet"),
  6569. weight: math.unit(1.5, "lb"),
  6570. name: "Nipple",
  6571. image: {
  6572. source: "./media/characters/piper/nipple.svg"
  6573. }
  6574. },
  6575. head: {
  6576. height: math.unit(1.1, "feet"),
  6577. name: "Head",
  6578. image: {
  6579. source: "./media/characters/piper/head.svg"
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(2, "inches")
  6587. },
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(5 + 8 / 12, "feet")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(250, "feet"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(7, "miles")
  6600. },
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(220, "lb"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/gemini/front.svg"
  6612. }
  6613. },
  6614. back: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(220, "lb"),
  6617. name: "Back",
  6618. image: {
  6619. source: "./media/characters/gemini/back.svg"
  6620. }
  6621. },
  6622. kneeling: {
  6623. height: math.unit(6 / 1.5, "feet"),
  6624. weight: math.unit(220, "lb"),
  6625. name: "Kneeling",
  6626. image: {
  6627. source: "./media/characters/gemini/kneeling.svg",
  6628. bottom: 0.02
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(300, "meters"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(6900, "meters")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6646. {
  6647. anthro: {
  6648. height: math.unit(2.35, "meters"),
  6649. weight: math.unit(73, "kg"),
  6650. name: "Anthro",
  6651. image: {
  6652. source: "./media/characters/alicia/anthro.svg",
  6653. extra: 2571 / 2385,
  6654. bottom: 75 / 2648
  6655. }
  6656. },
  6657. paw: {
  6658. height: math.unit(1.32, "feet"),
  6659. name: "Paw",
  6660. image: {
  6661. source: "./media/characters/alicia/paw.svg"
  6662. }
  6663. },
  6664. feral: {
  6665. height: math.unit(1.69, "meters"),
  6666. weight: math.unit(73, "kg"),
  6667. name: "Feral",
  6668. image: {
  6669. source: "./media/characters/alicia/feral.svg",
  6670. extra: 2123 / 1715,
  6671. bottom: 222 / 2349
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(2.35, "meters")
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(60, "meters"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Megamacro",
  6687. height: math.unit(10000, "kilometers")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(7, "feet"),
  6696. weight: math.unit(250, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/archy/front.svg"
  6700. }
  6701. }
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(1, "inch")
  6707. },
  6708. {
  6709. name: "Shorty",
  6710. height: math.unit(5, "feet")
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(7, "feet")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(600, "meters"),
  6719. default: true
  6720. },
  6721. {
  6722. name: "Megamacro",
  6723. height: math.unit(1, "mile")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.65, "meters"),
  6732. weight: math.unit(74, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/berri/front.svg",
  6736. extra: 857 / 837,
  6737. bottom: 18 / 877
  6738. }
  6739. },
  6740. bum: {
  6741. height: math.unit(1.46, "feet"),
  6742. name: "Bum",
  6743. image: {
  6744. source: "./media/characters/berri/bum.svg"
  6745. }
  6746. },
  6747. mouth: {
  6748. height: math.unit(0.44, "feet"),
  6749. name: "Mouth",
  6750. image: {
  6751. source: "./media/characters/berri/mouth.svg"
  6752. }
  6753. },
  6754. paw: {
  6755. height: math.unit(0.826, "feet"),
  6756. name: "Paw",
  6757. image: {
  6758. source: "./media/characters/berri/paw.svg"
  6759. }
  6760. },
  6761. },
  6762. [
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(1.65, "meters")
  6766. },
  6767. {
  6768. name: "Macro",
  6769. height: math.unit(60, "m"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Megamacro",
  6774. height: math.unit(9.213, "km")
  6775. },
  6776. {
  6777. name: "Planet Eater",
  6778. height: math.unit(489, "megameters")
  6779. },
  6780. {
  6781. name: "Teramacro",
  6782. height: math.unit(2471635000000, "meters")
  6783. },
  6784. {
  6785. name: "Examacro",
  6786. height: math.unit(8.0624e+26, "meters")
  6787. }
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(1.72, "meters"),
  6795. weight: math.unit(68, "kg"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/lexi/front.svg"
  6799. }
  6800. }
  6801. },
  6802. [
  6803. {
  6804. name: "Very Smol",
  6805. height: math.unit(10, "mm")
  6806. },
  6807. {
  6808. name: "Micro",
  6809. height: math.unit(6.8, "cm"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(1.72, "m")
  6815. }
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(1.69, "meters"),
  6823. weight: math.unit(68, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/martin/front.svg",
  6827. extra: 596 / 581
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(6.85, "cm"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(1.69, "m")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(1.69, "meters"),
  6848. weight: math.unit(68, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/juno/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Micro",
  6858. height: math.unit(7, "cm")
  6859. },
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.89, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(353, "meters"),
  6867. default: true
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(1.93, "meters"),
  6876. weight: math.unit(83, "kg"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/samantha/front.svg"
  6880. }
  6881. },
  6882. frontClothed: {
  6883. height: math.unit(1.93, "meters"),
  6884. weight: math.unit(83, "kg"),
  6885. name: "Front (Clothed)",
  6886. image: {
  6887. source: "./media/characters/samantha/front-clothed.svg"
  6888. }
  6889. },
  6890. back: {
  6891. height: math.unit(1.93, "meters"),
  6892. weight: math.unit(83, "kg"),
  6893. name: "Back",
  6894. image: {
  6895. source: "./media/characters/samantha/back.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.93, "m")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(74, "meters"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro+",
  6911. height: math.unit(223, "meters"),
  6912. },
  6913. {
  6914. name: "Megamacro",
  6915. height: math.unit(8381, "meters"),
  6916. },
  6917. {
  6918. name: "Megamacro+",
  6919. height: math.unit(12000, "kilometers")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(1.92, "meters"),
  6928. weight: math.unit(80, "kg"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/dr-clay/front.svg"
  6932. }
  6933. },
  6934. frontClothed: {
  6935. height: math.unit(1.92, "meters"),
  6936. weight: math.unit(80, "kg"),
  6937. name: "Front (Clothed)",
  6938. image: {
  6939. source: "./media/characters/dr-clay/front-clothed.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(1.92, "m")
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(214, "meters"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro+",
  6955. height: math.unit(12.237, "meters"),
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(557, "megameters"),
  6960. },
  6961. {
  6962. name: "Unimaginable",
  6963. height: math.unit(120e9, "lightyears")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(2, "meters"),
  6972. weight: math.unit(80, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6976. }
  6977. }
  6978. },
  6979. [
  6980. {
  6981. name: "Teramacro",
  6982. height: math.unit(500000, "lightyears"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6989. {
  6990. crux: {
  6991. height: math.unit(2, "meters"),
  6992. weight: math.unit(150, "kg"),
  6993. name: "Crux",
  6994. image: {
  6995. source: "./media/characters/vemus/crux.svg",
  6996. extra: 1074/936,
  6997. bottom: 23/1097
  6998. }
  6999. },
  7000. skunkTanuki: {
  7001. height: math.unit(2, "meters"),
  7002. weight: math.unit(150, "kg"),
  7003. name: "Skunk-Tanuki",
  7004. image: {
  7005. source: "./media/characters/vemus/skunk-tanuki.svg",
  7006. extra: 926/893,
  7007. bottom: 20/946
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(3.75, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Big",
  7019. height: math.unit(8, "meters")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(100, "meters")
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(1500, "meters")
  7028. },
  7029. {
  7030. name: "Stellar",
  7031. height: math.unit(14e8, "meters")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(70, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/beherit/front.svg",
  7044. extra: 1234/1109,
  7045. bottom: 55/1289
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(6, "feet")
  7053. },
  7054. {
  7055. name: "Lorg",
  7056. height: math.unit(25, "feet"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Lorger",
  7061. height: math.unit(75, "feet")
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(200, "meters")
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(2, "meters"),
  7074. weight: math.unit(150, "kg"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/everett/front.svg",
  7078. extra: 1017/866,
  7079. bottom: 86/1103
  7080. }
  7081. },
  7082. paw: {
  7083. height: math.unit(2 / 3.6, "meters"),
  7084. name: "Paw",
  7085. image: {
  7086. source: "./media/characters/everett/paw.svg"
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(15, "feet"),
  7094. default: true
  7095. },
  7096. {
  7097. name: "Lorg",
  7098. height: math.unit(70, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Lorger",
  7103. height: math.unit(250, "feet")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(500, "meters")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(86, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/rose/front.svg",
  7120. extra: 1785/1636,
  7121. bottom: 30/1815
  7122. },
  7123. form: "liom",
  7124. default: true
  7125. },
  7126. frontSporty: {
  7127. height: math.unit(2, "meters"),
  7128. weight: math.unit(86, "kg"),
  7129. name: "Front (Sporty)",
  7130. image: {
  7131. source: "./media/characters/rose/front-sporty.svg",
  7132. extra: 350/335,
  7133. bottom: 10/360
  7134. },
  7135. form: "liom"
  7136. },
  7137. frontAlt: {
  7138. height: math.unit(1.6, "meters"),
  7139. weight: math.unit(86, "kg"),
  7140. name: "Front (Alt)",
  7141. image: {
  7142. source: "./media/characters/rose/front-alt.svg",
  7143. extra: 299/283,
  7144. bottom: 3/302
  7145. },
  7146. form: "liom"
  7147. },
  7148. plush: {
  7149. height: math.unit(2, "meters"),
  7150. weight: math.unit(86/3, "kg"),
  7151. name: "Plush",
  7152. image: {
  7153. source: "./media/characters/rose/plush.svg",
  7154. extra: 361/337,
  7155. bottom: 11/372
  7156. },
  7157. form: "plush",
  7158. default: true
  7159. },
  7160. faeStanding: {
  7161. height: math.unit(10, "cm"),
  7162. weight: math.unit(10, "grams"),
  7163. name: "Standing",
  7164. image: {
  7165. source: "./media/characters/rose/fae-standing.svg",
  7166. extra: 1189/1060,
  7167. bottom: 27/1216
  7168. },
  7169. form: "fae",
  7170. default: true
  7171. },
  7172. faeSitting: {
  7173. height: math.unit(5, "cm"),
  7174. weight: math.unit(10, "grams"),
  7175. name: "Sitting",
  7176. image: {
  7177. source: "./media/characters/rose/fae-sitting.svg",
  7178. extra: 737/577,
  7179. bottom: 356/1093
  7180. },
  7181. form: "fae"
  7182. },
  7183. faePaw: {
  7184. height: math.unit(1.35, "cm"),
  7185. name: "Paw",
  7186. image: {
  7187. source: "./media/characters/rose/fae-paw.svg"
  7188. },
  7189. form: "fae"
  7190. },
  7191. },
  7192. [
  7193. {
  7194. name: "True Micro",
  7195. height: math.unit(9, "cm"),
  7196. form: "liom"
  7197. },
  7198. {
  7199. name: "Micro",
  7200. height: math.unit(16, "cm"),
  7201. form: "liom"
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(1.85, "meters"),
  7206. default: true,
  7207. form: "liom"
  7208. },
  7209. {
  7210. name: "Mini-Macro",
  7211. height: math.unit(5, "meters"),
  7212. form: "liom"
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(15, "meters"),
  7217. form: "liom"
  7218. },
  7219. {
  7220. name: "True Macro",
  7221. height: math.unit(40, "meters"),
  7222. form: "liom"
  7223. },
  7224. {
  7225. name: "City Scale",
  7226. height: math.unit(1, "km"),
  7227. form: "liom"
  7228. },
  7229. {
  7230. name: "Plushie",
  7231. height: math.unit(9, "cm"),
  7232. form: "plush",
  7233. default: true
  7234. },
  7235. {
  7236. name: "Fae",
  7237. height: math.unit(10, "cm"),
  7238. form: "fae",
  7239. default: true
  7240. },
  7241. ],
  7242. {
  7243. "liom": {
  7244. name: "Liom"
  7245. },
  7246. "plush": {
  7247. name: "Plush"
  7248. },
  7249. "fae": {
  7250. name: "Fae Fox",
  7251. default: true
  7252. }
  7253. }
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(2, "meters"),
  7260. weight: math.unit(350, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/regal/front.svg"
  7264. }
  7265. },
  7266. back: {
  7267. height: math.unit(2, "meters"),
  7268. weight: math.unit(350, "lbs"),
  7269. name: "Back",
  7270. image: {
  7271. source: "./media/characters/regal/back.svg"
  7272. }
  7273. },
  7274. },
  7275. [
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(350, "feet"),
  7279. default: true
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(4 + 11 / 12, "feet"),
  7288. weight: math.unit(100, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/opal/front.svg"
  7292. }
  7293. },
  7294. frontAlt: {
  7295. height: math.unit(4 + 11 / 12, "feet"),
  7296. weight: math.unit(100, "lbs"),
  7297. name: "Front (Alt)",
  7298. image: {
  7299. source: "./media/characters/opal/front-alt.svg"
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Small",
  7306. height: math.unit(4 + 11 / 12, "feet")
  7307. },
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(20, "feet"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Macro",
  7315. height: math.unit(120, "feet")
  7316. },
  7317. {
  7318. name: "Megamacro",
  7319. height: math.unit(80, "miles")
  7320. },
  7321. {
  7322. name: "True Size",
  7323. height: math.unit(100000, "lightyears")
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(200, "lbs"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/vector-wuff/front.svg"
  7336. }
  7337. }
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(2.8, "meters")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(450, "meters"),
  7347. default: true
  7348. },
  7349. {
  7350. name: "Megamacro",
  7351. height: math.unit(15, "kilometers")
  7352. }
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(256, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/dannik/front.svg"
  7364. }
  7365. }
  7366. },
  7367. [
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(69.57, "meters"),
  7371. default: true
  7372. },
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7377. {
  7378. front: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(120, "lbs"),
  7381. name: "Front",
  7382. image: {
  7383. source: "./media/characters/azura-saharah/front.svg"
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(120, "lbs"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/azura-saharah/back.svg"
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(100, "feet"),
  7399. default: true
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7405. {
  7406. side: {
  7407. height: math.unit(5 + 4 / 12, "feet"),
  7408. weight: math.unit(163, "lbs"),
  7409. name: "Side",
  7410. image: {
  7411. source: "./media/characters/kennedy/side.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Standard Doggo",
  7418. height: math.unit(5 + 4 / 12, "feet")
  7419. },
  7420. {
  7421. name: "Big Doggo",
  7422. height: math.unit(25 + 3 / 12, "feet"),
  7423. default: true
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(5 + 5/12, "feet"),
  7432. weight: math.unit(100, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/odios-de-lunar/front.svg",
  7436. extra: 1468/1323,
  7437. bottom: 22/1490
  7438. }
  7439. }
  7440. },
  7441. [
  7442. {
  7443. name: "Micro",
  7444. height: math.unit(3, "inches")
  7445. },
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(5.5, "feet"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(100, "feet")
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7459. {
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(220, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/mandake/back.svg"
  7466. }
  7467. }
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(7, "feet"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(78, "feet")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(300, "meters")
  7482. },
  7483. {
  7484. name: "Macro++",
  7485. height: math.unit(2400, "feet")
  7486. },
  7487. {
  7488. name: "Megamacro",
  7489. height: math.unit(5167, "meters")
  7490. },
  7491. {
  7492. name: "Gigamacro",
  7493. height: math.unit(41769, "miles")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(120, "lbs"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/yozey/front.svg"
  7506. }
  7507. },
  7508. frontAlt: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(120, "lbs"),
  7511. name: "Front (Alt)",
  7512. image: {
  7513. source: "./media/characters/yozey/front-alt.svg"
  7514. }
  7515. },
  7516. side: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(120, "lbs"),
  7519. name: "Side",
  7520. image: {
  7521. source: "./media/characters/yozey/side.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(3, "inches"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(6, "feet")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(103, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/valeska-voss/front.svg"
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Mini-Sized Sub",
  7552. height: math.unit(3.1, "inches")
  7553. },
  7554. {
  7555. name: "Mid-Sized Sub",
  7556. height: math.unit(6.2, "inches")
  7557. },
  7558. {
  7559. name: "Full-Sized Sub",
  7560. height: math.unit(9.3, "inches")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 2 / 12, "foot"),
  7565. default: true
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(160, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/gene-zeta/front.svg",
  7578. extra: 3006 / 2826,
  7579. bottom: 182 / 3188
  7580. }
  7581. }
  7582. },
  7583. [
  7584. {
  7585. name: "Micro",
  7586. height: math.unit(6, "inches")
  7587. },
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(5 + 11 / 12, "foot"),
  7591. default: true
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(140, "feet")
  7596. },
  7597. {
  7598. name: "Supercharged",
  7599. height: math.unit(2500, "feet")
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7605. {
  7606. front: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(350, "lbs"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/razinox/front.svg",
  7612. extra: 1686 / 1548,
  7613. bottom: 28.2 / 1868
  7614. }
  7615. },
  7616. back: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(350, "lbs"),
  7619. name: "Back",
  7620. image: {
  7621. source: "./media/characters/razinox/back.svg",
  7622. extra: 1660 / 1590,
  7623. bottom: 15 / 1665
  7624. }
  7625. },
  7626. },
  7627. [
  7628. {
  7629. name: "Normal",
  7630. height: math.unit(10 + 8 / 12, "foot")
  7631. },
  7632. {
  7633. name: "Minimacro",
  7634. height: math.unit(15, "foot")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "foot"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(5, "miles")
  7644. },
  7645. {
  7646. name: "Gigamacro",
  7647. height: math.unit(6000, "miles")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(6, "feet"),
  7656. weight: math.unit(150, "lbs"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/cobalt/front.svg"
  7660. }
  7661. }
  7662. },
  7663. [
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(8 + 1 / 12, "foot")
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(111, "foot"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Supracosmic",
  7675. height: math.unit(1e42, "feet")
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(5, "inches"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/amanda/front.svg",
  7687. extra: 926/791,
  7688. bottom: 38/964
  7689. }
  7690. },
  7691. back: {
  7692. height: math.unit(5, "inches"),
  7693. name: "Back",
  7694. image: {
  7695. source: "./media/characters/amanda/back.svg",
  7696. extra: 909/805,
  7697. bottom: 43/952
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Micro",
  7704. height: math.unit(5, "inches"),
  7705. default: true
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(2.75, "meters"),
  7714. weight: math.unit(1200, "lb"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/teal/front.svg",
  7718. extra: 2463 / 2320,
  7719. bottom: 166 / 2629
  7720. }
  7721. },
  7722. back: {
  7723. height: math.unit(2.75, "meters"),
  7724. weight: math.unit(1200, "lb"),
  7725. name: "Back",
  7726. image: {
  7727. source: "./media/characters/teal/back.svg",
  7728. extra: 2580 / 2489,
  7729. bottom: 151 / 2731
  7730. }
  7731. },
  7732. sitting: {
  7733. height: math.unit(1.9, "meters"),
  7734. weight: math.unit(1200, "lb"),
  7735. name: "Sitting",
  7736. image: {
  7737. source: "./media/characters/teal/sitting.svg",
  7738. extra: 623 / 590,
  7739. bottom: 121 / 744
  7740. }
  7741. },
  7742. standing: {
  7743. height: math.unit(2.75, "meters"),
  7744. weight: math.unit(1200, "lb"),
  7745. name: "Standing",
  7746. image: {
  7747. source: "./media/characters/teal/standing.svg",
  7748. extra: 923 / 893,
  7749. bottom: 60 / 983
  7750. }
  7751. },
  7752. stretching: {
  7753. height: math.unit(3.65, "meters"),
  7754. weight: math.unit(1200, "lb"),
  7755. name: "Stretching",
  7756. image: {
  7757. source: "./media/characters/teal/stretching.svg",
  7758. extra: 1276 / 1244,
  7759. bottom: 0 / 1276
  7760. }
  7761. },
  7762. legged: {
  7763. height: math.unit(1.3, "meters"),
  7764. weight: math.unit(100, "lb"),
  7765. name: "Legged",
  7766. image: {
  7767. source: "./media/characters/teal/legged.svg",
  7768. extra: 462 / 437,
  7769. bottom: 24 / 486
  7770. }
  7771. },
  7772. naga: {
  7773. height: math.unit(5.4, "meters"),
  7774. weight: math.unit(4000, "lb"),
  7775. name: "Naga",
  7776. image: {
  7777. source: "./media/characters/teal/naga.svg",
  7778. extra: 1902 / 1858,
  7779. bottom: 0 / 1902
  7780. }
  7781. },
  7782. hand: {
  7783. height: math.unit(0.52, "meters"),
  7784. name: "Hand",
  7785. image: {
  7786. source: "./media/characters/teal/hand.svg"
  7787. }
  7788. },
  7789. maw: {
  7790. height: math.unit(0.43, "meters"),
  7791. name: "Maw",
  7792. image: {
  7793. source: "./media/characters/teal/maw.svg"
  7794. }
  7795. },
  7796. slit: {
  7797. height: math.unit(0.25, "meters"),
  7798. name: "Slit",
  7799. image: {
  7800. source: "./media/characters/teal/slit.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(2.75, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(300, "feet")
  7813. },
  7814. {
  7815. name: "Macro+",
  7816. height: math.unit(2000, "feet")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7822. {
  7823. frontCat: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(180, "lbs"),
  7826. name: "Front (Cat)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/front-cat.svg"
  7829. }
  7830. },
  7831. frontCatAlt: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(180, "lbs"),
  7834. name: "Front (Alt, Cat)",
  7835. image: {
  7836. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7837. }
  7838. },
  7839. frontWerewolf: {
  7840. height: math.unit(6 * 1.2, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Front (Werewolf)",
  7843. image: {
  7844. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7845. }
  7846. },
  7847. backWerewolf: {
  7848. height: math.unit(6 * 1.2, "feet"),
  7849. weight: math.unit(225, "lbs"),
  7850. name: "Back (Werewolf)",
  7851. image: {
  7852. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Nano",
  7859. height: math.unit(1, "micrometer")
  7860. },
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(1, "inch")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(6, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(60, "feet")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(165, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/fluoresce/front.svg"
  7885. }
  7886. }
  7887. },
  7888. [
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(6, "cm")
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(5 + 7 / 12, "feet"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(56, "feet")
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(1.9, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(9 + 6 / 12, "feet"),
  7913. weight: math.unit(523, "lbs"),
  7914. name: "Side",
  7915. image: {
  7916. source: "./media/characters/aurora/side.svg"
  7917. }
  7918. }
  7919. },
  7920. [
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(9 + 6 / 12, "feet")
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(96, "feet"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro+",
  7932. height: math.unit(243, "feet")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(194, "cm"),
  7941. weight: math.unit(90, "kg"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/ranek/front.svg",
  7945. extra: 1862/1791,
  7946. bottom: 80/1942
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(194, "cm"),
  7951. weight: math.unit(90, "kg"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/ranek/back.svg",
  7955. extra: 1853/1787,
  7956. bottom: 74/1927
  7957. }
  7958. },
  7959. feral: {
  7960. height: math.unit(30, "cm"),
  7961. weight: math.unit(1.6, "lbs"),
  7962. name: "Feral",
  7963. image: {
  7964. source: "./media/characters/ranek/feral.svg",
  7965. extra: 990/631,
  7966. bottom: 29/1019
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(194, "cm"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Macro",
  7978. height: math.unit(100, "meters")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(5 + 6 / 12, "feet"),
  7987. weight: math.unit(153, "lbs"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/andrew-cooper/front.svg"
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Nano",
  7997. height: math.unit(1, "mm")
  7998. },
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(2, "inches")
  8002. },
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(5 + 6 / 12, "feet"),
  8006. default: true
  8007. }
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(180, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/akane-sato/front.svg",
  8019. extra: 1219 / 1140
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(6, "feet"),
  8024. weight: math.unit(180, "lbs"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/akane-sato/back.svg",
  8028. extra: 1219 / 1170
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(2.5, "meters")
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(250, "meters"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(25, "km")
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(65, "kg"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/rook/front.svg",
  8057. extra: 960 / 950
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Normal",
  8064. height: math.unit(8.8, "feet")
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(88, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Megamacro",
  8073. height: math.unit(8, "miles")
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(12 + 2 / 12, "feet"),
  8082. weight: math.unit(808, "lbs"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/prodigy/front.svg"
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(12 + 2 / 12, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(143, "feet")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(400, "feet")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(225, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/daniel/front.svg"
  8114. }
  8115. },
  8116. leaning: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(225, "lbs"),
  8119. name: "Leaning",
  8120. image: {
  8121. source: "./media/characters/daniel/leaning.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(1000, "feet"),
  8129. default: true
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(88, "lbs"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/chiros/front.svg",
  8142. extra: 306 / 226
  8143. }
  8144. },
  8145. side: {
  8146. height: math.unit(6, "feet"),
  8147. weight: math.unit(88, "lbs"),
  8148. name: "Side",
  8149. image: {
  8150. source: "./media/characters/chiros/side.svg",
  8151. extra: 306 / 226
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "cm"),
  8159. default: true
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(100, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/selka/front.svg",
  8172. extra: 947 / 887
  8173. }
  8174. }
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5, "cm"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(8 + 3 / 12, "feet"),
  8189. weight: math.unit(424, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/verin/front.svg",
  8193. extra: 1845 / 1550
  8194. }
  8195. },
  8196. frontArmored: {
  8197. height: math.unit(8 + 3 / 12, "feet"),
  8198. weight: math.unit(424, "lbs"),
  8199. name: "Front (Armored)",
  8200. image: {
  8201. source: "./media/characters/verin/front-armor.svg",
  8202. extra: 1845 / 1550,
  8203. bottom: 0.01
  8204. }
  8205. },
  8206. back: {
  8207. height: math.unit(8 + 3 / 12, "feet"),
  8208. weight: math.unit(424, "lbs"),
  8209. name: "Back",
  8210. image: {
  8211. source: "./media/characters/verin/back.svg",
  8212. bottom: 0.1,
  8213. extra: 1
  8214. }
  8215. },
  8216. foot: {
  8217. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8218. name: "Foot",
  8219. image: {
  8220. source: "./media/characters/verin/foot.svg"
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(8 + 3 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Minimacro",
  8231. height: math.unit(21, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(626, "feet")
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(2.718, "meters"),
  8245. weight: math.unit(150, "lbs"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/sovrim-terraquian/front.svg",
  8249. extra: 1752/1689,
  8250. bottom: 36/1788
  8251. }
  8252. },
  8253. back: {
  8254. height: math.unit(2.718, "meters"),
  8255. weight: math.unit(150, "lbs"),
  8256. name: "Back",
  8257. image: {
  8258. source: "./media/characters/sovrim-terraquian/back.svg",
  8259. extra: 1698/1657,
  8260. bottom: 58/1756
  8261. }
  8262. },
  8263. tongue: {
  8264. height: math.unit(2.865, "feet"),
  8265. name: "Tongue",
  8266. image: {
  8267. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8268. }
  8269. },
  8270. hand: {
  8271. height: math.unit(1.61, "feet"),
  8272. name: "Hand",
  8273. image: {
  8274. source: "./media/characters/sovrim-terraquian/hand.svg"
  8275. }
  8276. },
  8277. foot: {
  8278. height: math.unit(1.05, "feet"),
  8279. name: "Foot",
  8280. image: {
  8281. source: "./media/characters/sovrim-terraquian/foot.svg"
  8282. }
  8283. },
  8284. footAlt: {
  8285. height: math.unit(0.88, "feet"),
  8286. name: "Foot (Alt)",
  8287. image: {
  8288. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Micro",
  8295. height: math.unit(2, "inches")
  8296. },
  8297. {
  8298. name: "Small",
  8299. height: math.unit(1, "meter")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(Math.E, "meters"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(20, "meters")
  8309. },
  8310. {
  8311. name: "Macro+",
  8312. height: math.unit(400, "meters")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(7, "feet"),
  8321. weight: math.unit(489, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/reece-silvermane/front.svg",
  8325. bottom: 0.02,
  8326. extra: 1
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(1.5, "miles"),
  8334. default: true
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(78, "kg"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/kane/front.svg",
  8347. extra: 978 / 899
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(2.1, "m"),
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(1, "km"),
  8359. default: true
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(200, "kg"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/tegon/front.svg",
  8372. bottom: 0.01,
  8373. extra: 1
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Micro",
  8380. height: math.unit(1, "inch")
  8381. },
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(6 + 3 / 12, "feet"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(300, "feet")
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(69, "miles")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8399. {
  8400. side: {
  8401. height: math.unit(6, "feet"),
  8402. weight: math.unit(2304, "lbs"),
  8403. name: "Side",
  8404. image: {
  8405. source: "./media/characters/arcturax/side.svg",
  8406. extra: 790 / 376,
  8407. bottom: 0.01
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Micro",
  8414. height: math.unit(2, "inch")
  8415. },
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(6, "feet")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(39, "feet"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(7, "miles")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(50, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/sentri/front.svg",
  8440. extra: 1750 / 1570,
  8441. bottom: 0.025
  8442. }
  8443. },
  8444. frontAlt: {
  8445. height: math.unit(6, "feet"),
  8446. weight: math.unit(50, "lbs"),
  8447. name: "Front (Alt)",
  8448. image: {
  8449. source: "./media/characters/sentri/front-alt.svg",
  8450. extra: 1750 / 1570,
  8451. bottom: 0.025
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(15, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(2500, "feet")
  8464. }
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(5 + 8 / 12, "feet"),
  8472. weight: math.unit(130, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/corvin/front.svg",
  8476. extra: 1803 / 1629
  8477. }
  8478. },
  8479. frontShirt: {
  8480. height: math.unit(5 + 8 / 12, "feet"),
  8481. weight: math.unit(130, "lbs"),
  8482. name: "Front (Shirt)",
  8483. image: {
  8484. source: "./media/characters/corvin/front-shirt.svg",
  8485. extra: 1803 / 1629
  8486. }
  8487. },
  8488. frontPoncho: {
  8489. height: math.unit(5 + 8 / 12, "feet"),
  8490. weight: math.unit(130, "lbs"),
  8491. name: "Front (Poncho)",
  8492. image: {
  8493. source: "./media/characters/corvin/front-poncho.svg",
  8494. extra: 1803 / 1629
  8495. }
  8496. },
  8497. side: {
  8498. height: math.unit(5 + 8 / 12, "feet"),
  8499. weight: math.unit(130, "lbs"),
  8500. name: "Side",
  8501. image: {
  8502. source: "./media/characters/corvin/side.svg",
  8503. extra: 1012 / 945
  8504. }
  8505. },
  8506. back: {
  8507. height: math.unit(5 + 8 / 12, "feet"),
  8508. weight: math.unit(130, "lbs"),
  8509. name: "Back",
  8510. image: {
  8511. source: "./media/characters/corvin/back.svg",
  8512. extra: 1803 / 1629
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Micro",
  8519. height: math.unit(3, "inches")
  8520. },
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(5 + 8 / 12, "feet")
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(300, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Megamacro",
  8532. height: math.unit(500, "miles")
  8533. }
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(135, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/q/front.svg",
  8545. extra: 854 / 752,
  8546. bottom: 0.005
  8547. }
  8548. },
  8549. back: {
  8550. height: math.unit(6, "feet"),
  8551. weight: math.unit(130, "lbs"),
  8552. name: "Back",
  8553. image: {
  8554. source: "./media/characters/q/back.svg",
  8555. extra: 854 / 752
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(90, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Extra Macro",
  8567. height: math.unit(300, "feet"),
  8568. },
  8569. {
  8570. name: "BIG WALF",
  8571. height: math.unit(750, "feet"),
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(6, "feet"),
  8580. weight: math.unit(150, "lbs"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/carley/front.svg",
  8584. extra: 3927 / 3540,
  8585. bottom: 29.2 / 735
  8586. }
  8587. }
  8588. },
  8589. [
  8590. {
  8591. name: "Normal",
  8592. height: math.unit(6 + 3 / 12, "feet")
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(185, "feet"),
  8597. default: true
  8598. },
  8599. {
  8600. name: "Megamacro",
  8601. height: math.unit(8, "miles"),
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(3, "feet"),
  8610. weight: math.unit(28, "lbs"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/citrine/front.svg"
  8614. }
  8615. }
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(3, "feet"),
  8621. default: true
  8622. }
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8627. {
  8628. front: {
  8629. height: math.unit(14, "feet"),
  8630. weight: math.unit(1450, "kg"),
  8631. capacity: math.unit(15, "people"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/aura-starwind/front.svg",
  8635. extra: 1440/1327,
  8636. bottom: 11/1451
  8637. }
  8638. },
  8639. side: {
  8640. height: math.unit(14, "feet"),
  8641. weight: math.unit(1450, "kg"),
  8642. capacity: math.unit(15, "people"),
  8643. name: "Side",
  8644. image: {
  8645. source: "./media/characters/aura-starwind/side.svg",
  8646. extra: 1654 / 1497
  8647. }
  8648. },
  8649. taur: {
  8650. height: math.unit(18, "feet"),
  8651. weight: math.unit(5500, "kg"),
  8652. capacity: math.unit(50, "people"),
  8653. name: "Taur",
  8654. image: {
  8655. source: "./media/characters/aura-starwind/taur.svg",
  8656. extra: 1760 / 1650
  8657. }
  8658. },
  8659. feral: {
  8660. height: math.unit(46, "feet"),
  8661. weight: math.unit(25000, "kg"),
  8662. capacity: math.unit(120, "people"),
  8663. name: "Feral",
  8664. image: {
  8665. source: "./media/characters/aura-starwind/feral.svg"
  8666. }
  8667. },
  8668. },
  8669. [
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(14, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(50, "meters")
  8678. },
  8679. {
  8680. name: "Megamacro",
  8681. height: math.unit(5000, "meters")
  8682. },
  8683. {
  8684. name: "Gigamacro",
  8685. height: math.unit(100000, "kilometers")
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(2 + 7 / 12, "feet"),
  8694. weight: math.unit(32, "lbs"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/rivet/front.svg",
  8698. extra: 1716 / 1658,
  8699. bottom: 0.03
  8700. }
  8701. },
  8702. foot: {
  8703. height: math.unit(0.551, "feet"),
  8704. name: "Rivet's Foot",
  8705. image: {
  8706. source: "./media/characters/rivet/foot.svg"
  8707. },
  8708. rename: true
  8709. }
  8710. },
  8711. [
  8712. {
  8713. name: "Micro",
  8714. height: math.unit(1.5, "inches"),
  8715. },
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(2 + 7 / 12, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(85, "feet")
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(2.2, "km")
  8728. }
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(5 + 9 / 12, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/coffee/front.svg",
  8740. extra: 3666 / 3032,
  8741. bottom: 0.04
  8742. }
  8743. },
  8744. foot: {
  8745. height: math.unit(1.29, "feet"),
  8746. name: "Foot",
  8747. image: {
  8748. source: "./media/characters/coffee/foot.svg"
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Micro",
  8755. height: math.unit(2, "inches"),
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(5 + 9 / 12, "feet"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(800, "feet")
  8765. },
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(25, "miles")
  8769. }
  8770. ]
  8771. ))
  8772. characterMakers.push(() => makeCharacter(
  8773. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8774. {
  8775. front: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(200, "lbs"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/chari-gal/front.svg",
  8781. extra: 1568 / 1385,
  8782. bottom: 0.047
  8783. }
  8784. },
  8785. gigantamax: {
  8786. height: math.unit(6 * 16, "feet"),
  8787. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8788. name: "Gigantamax",
  8789. image: {
  8790. source: "./media/characters/chari-gal/gigantamax.svg",
  8791. extra: 1124 / 888,
  8792. bottom: 0.03
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(5 + 7 / 12, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(200, "feet"),
  8804. default: true
  8805. }
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(150, "lbs"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/nova/front.svg",
  8817. extra: 5000 / 4722,
  8818. bottom: 0.02
  8819. }
  8820. }
  8821. },
  8822. [
  8823. {
  8824. name: "Micro-",
  8825. height: math.unit(0.8, "inches")
  8826. },
  8827. {
  8828. name: "Micro",
  8829. height: math.unit(2, "inches"),
  8830. default: true
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(3 + 1 / 12, "feet"),
  8839. weight: math.unit(21.7, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/argent/front.svg",
  8843. extra: 1471 / 1331,
  8844. bottom: 100.8 / 1575.5
  8845. }
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(2, "inches")
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(3 + 1 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(120, "feet")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8866. {
  8867. lamp: {
  8868. height: math.unit(7 * 1559 / 989, "feet"),
  8869. name: "Magic Lamp",
  8870. image: {
  8871. source: "./media/characters/mira-al-cul/lamp.svg",
  8872. extra: 1617 / 1559
  8873. }
  8874. },
  8875. front: {
  8876. height: math.unit(7, "feet"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/mira-al-cul/front.svg",
  8880. extra: 1044 / 990
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Heavily Restricted",
  8887. height: math.unit(7 * 1559 / 989, "feet")
  8888. },
  8889. {
  8890. name: "Freshly Freed",
  8891. height: math.unit(50 * 1559 / 989, "feet")
  8892. },
  8893. {
  8894. name: "World Encompassing",
  8895. height: math.unit(10000 * 1559 / 989, "miles")
  8896. },
  8897. {
  8898. name: "Galactic",
  8899. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8900. },
  8901. {
  8902. name: "Palmed Universe",
  8903. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Multiversal Matriarch",
  8908. height: math.unit(8.87e10, "yottameters")
  8909. },
  8910. {
  8911. name: "Void Mother",
  8912. height: math.unit(3.14e110, "yottaparsecs")
  8913. },
  8914. {
  8915. name: "Toying with Transcendence",
  8916. height: math.unit(1e307, "meters")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8922. {
  8923. front: {
  8924. height: math.unit(17 + 1 / 12, "feet"),
  8925. weight: math.unit(476.2 * 5, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/kuro-shi-uchū/front.svg",
  8929. extra: 2329 / 1835,
  8930. bottom: 0.02
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(2, "inches")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(12, "meters")
  8942. },
  8943. {
  8944. name: "Planetary",
  8945. height: math.unit(0.00929, "AU"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Universal",
  8950. height: math.unit(20, "gigaparsecs")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 2 / 12, "feet"),
  8959. weight: math.unit(120, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/katherine/front.svg",
  8963. extra: 2075 / 1969
  8964. }
  8965. },
  8966. dress: {
  8967. height: math.unit(5 + 2 / 12, "feet"),
  8968. weight: math.unit(120, "lbs"),
  8969. name: "Dress",
  8970. image: {
  8971. source: "./media/characters/katherine/dress.svg",
  8972. extra: 2258 / 2064
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(1, "inches"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(5 + 2 / 12, "feet")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(100, "meters")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(80, "miles")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(7 + 8 / 12, "feet"),
  9001. weight: math.unit(250, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/yevis/front.svg",
  9005. extra: 1938 / 1755
  9006. }
  9007. }
  9008. },
  9009. [
  9010. {
  9011. name: "Mortal",
  9012. height: math.unit(7 + 8 / 12, "feet")
  9013. },
  9014. {
  9015. name: "Battle",
  9016. height: math.unit(25 + 11 / 12, "feet")
  9017. },
  9018. {
  9019. name: "Wrath",
  9020. height: math.unit(1654 + 11 / 12, "feet")
  9021. },
  9022. {
  9023. name: "Planet Destroyer",
  9024. height: math.unit(12000, "miles")
  9025. },
  9026. {
  9027. name: "Galaxy Conqueror",
  9028. height: math.unit(1.45, "zettameters"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Universal War",
  9033. height: math.unit(184, "gigaparsecs")
  9034. },
  9035. {
  9036. name: "Eternity War",
  9037. height: math.unit(1.98e55, "yottaparsecs")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(5 + 8 / 12, "feet"),
  9046. weight: math.unit(63, "kg"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/xavier/front.svg",
  9050. extra: 944 / 883
  9051. }
  9052. },
  9053. frontStretch: {
  9054. height: math.unit(5 + 8 / 12, "feet"),
  9055. weight: math.unit(63, "kg"),
  9056. name: "Stretching",
  9057. image: {
  9058. source: "./media/characters/xavier/front-stretch.svg",
  9059. extra: 962 / 820
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(5 + 8 / 12, "feet")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(100, "meters"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "McLargeHuge",
  9075. height: math.unit(10, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(5 + 5 / 12, "feet"),
  9084. weight: math.unit(150, "lb"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/joshii/front.svg",
  9088. extra: 765 / 653,
  9089. bottom: 51 / 816
  9090. }
  9091. },
  9092. foot: {
  9093. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/joshii/foot.svg"
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(2, "inches"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(5 + 5 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Macro",
  9112. height: math.unit(785, "feet")
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(24.5, "miles")
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(150, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/goddess-elizabeth/front.svg",
  9129. extra: 1800 / 1525,
  9130. bottom: 0.005
  9131. }
  9132. },
  9133. foot: {
  9134. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9135. name: "Foot",
  9136. image: {
  9137. source: "./media/characters/goddess-elizabeth/foot.svg"
  9138. }
  9139. },
  9140. mouth: {
  9141. height: math.unit(6, "feet"),
  9142. name: "Mouth",
  9143. image: {
  9144. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Micro",
  9151. height: math.unit(12, "feet")
  9152. },
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(80, "miles"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(15000, "parsecs")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(5 + 9 / 12, "feet"),
  9169. weight: math.unit(144, "lb"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/kara/front.svg"
  9173. }
  9174. },
  9175. feet: {
  9176. height: math.unit(6 / 6.765, "feet"),
  9177. name: "Kara's Feet",
  9178. rename: true,
  9179. image: {
  9180. source: "./media/characters/kara/feet.svg"
  9181. }
  9182. },
  9183. },
  9184. [
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(5 + 9 / 12, "feet")
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(174, "feet"),
  9192. default: true
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(18, "feet"),
  9201. weight: math.unit(4050, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/tyrone/front.svg",
  9205. extra: 2405 / 2270,
  9206. bottom: 182 / 2587
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(18, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(300, "feet")
  9219. },
  9220. {
  9221. name: "Megamacro",
  9222. height: math.unit(15, "km")
  9223. },
  9224. {
  9225. name: "Gigamacro",
  9226. height: math.unit(500, "km")
  9227. },
  9228. {
  9229. name: "Teramacro",
  9230. height: math.unit(0.5, "gigameters")
  9231. },
  9232. {
  9233. name: "Omnimacro",
  9234. height: math.unit(1e252, "yottauniverse")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(7 + 8 / 12, "feet"),
  9243. weight: math.unit(120, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/danny/front.svg",
  9247. extra: 1490 / 1350
  9248. }
  9249. },
  9250. back: {
  9251. height: math.unit(7 + 8 / 12, "feet"),
  9252. weight: math.unit(120, "lb"),
  9253. name: "Back",
  9254. image: {
  9255. source: "./media/characters/danny/back.svg",
  9256. extra: 1490 / 1350
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(7 + 8 / 12, "feet"),
  9264. default: true
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(3.5, "inches"),
  9273. weight: math.unit(19, "grams"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/mallow/front.svg",
  9277. extra: 471 / 431
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(3.5, "inches"),
  9282. weight: math.unit(19, "grams"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/mallow/back.svg",
  9286. extra: 471 / 431
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(3.5, "inches"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(9, "feet"),
  9303. weight: math.unit(230, "kg"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/starry-aqua/front.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(9, "feet"),
  9311. weight: math.unit(230, "kg"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/starry-aqua/back.svg"
  9315. }
  9316. },
  9317. hand: {
  9318. height: math.unit(9 * 0.1168, "feet"),
  9319. name: "Hand",
  9320. image: {
  9321. source: "./media/characters/starry-aqua/hand.svg"
  9322. }
  9323. },
  9324. foot: {
  9325. height: math.unit(9 * 0.18, "feet"),
  9326. name: "Foot",
  9327. image: {
  9328. source: "./media/characters/starry-aqua/foot.svg"
  9329. }
  9330. }
  9331. },
  9332. [
  9333. {
  9334. name: "Micro",
  9335. height: math.unit(3, "inches")
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(9, "feet")
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(300, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(3200, "feet")
  9349. }
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(15, "feet"),
  9357. weight: math.unit(5026, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/luka-towers/front.svg",
  9361. extra: 1269/1133,
  9362. bottom: 51/1320
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(15, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Minimacro",
  9374. height: math.unit(25, "feet")
  9375. },
  9376. {
  9377. name: "Macro",
  9378. height: math.unit(320, "feet")
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(35000, "feet")
  9383. },
  9384. {
  9385. name: "Gigamacro",
  9386. height: math.unit(4000, "miles")
  9387. },
  9388. {
  9389. name: "Teramacro",
  9390. height: math.unit(15000, "miles")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/natalie-nightring/front.svg",
  9403. extra: 1,
  9404. bottom: 0.06
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Uh Oh",
  9411. height: math.unit(0.1, "mm")
  9412. },
  9413. {
  9414. name: "Small",
  9415. height: math.unit(3, "inches")
  9416. },
  9417. {
  9418. name: "Human Scale",
  9419. height: math.unit(6, "feet")
  9420. },
  9421. {
  9422. name: "Librarian",
  9423. height: math.unit(50, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Immense",
  9428. height: math.unit(200, "miles")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(180, "lbs"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/danni-rosie/front.svg",
  9441. extra: 1260 / 1128,
  9442. bottom: 0.022
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Micro",
  9449. height: math.unit(2, "inches"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(5 + 9 / 12, "feet"),
  9459. weight: math.unit(220, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/samantha-kruse/front.svg",
  9463. extra: (985 / 935),
  9464. bottom: 0.03
  9465. }
  9466. },
  9467. frontUndressed: {
  9468. height: math.unit(5 + 9 / 12, "feet"),
  9469. weight: math.unit(220, "lb"),
  9470. name: "Front (Undressed)",
  9471. image: {
  9472. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9473. extra: (973 / 923),
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. fat: {
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. weight: math.unit(900, "lb"),
  9480. name: "Front (Fat)",
  9481. image: {
  9482. source: "./media/characters/samantha-kruse/fat.svg",
  9483. extra: 2688 / 2561
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(5 + 9 / 12, "feet"),
  9491. default: true
  9492. }
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9497. {
  9498. back: {
  9499. height: math.unit(5 + 4 / 12, "feet"),
  9500. weight: math.unit(4963, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/amelia-rosie/back.svg",
  9504. extra: 1113 / 963,
  9505. bottom: 0.01
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Level 0",
  9512. height: math.unit(5 + 4 / 12, "feet")
  9513. },
  9514. {
  9515. name: "Level 1",
  9516. height: math.unit(164597, "feet"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Level 2",
  9521. height: math.unit(956243, "miles")
  9522. },
  9523. {
  9524. name: "Level 3",
  9525. height: math.unit(29421709423, "miles")
  9526. },
  9527. {
  9528. name: "Level 4",
  9529. height: math.unit(154, "lightyears")
  9530. },
  9531. {
  9532. name: "Level 5",
  9533. height: math.unit(4738272, "lightyears")
  9534. },
  9535. {
  9536. name: "Level 6",
  9537. height: math.unit(145787152896, "lightyears")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(5 + 11 / 12, "feet"),
  9546. weight: math.unit(65, "kg"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/rook-kitara/front.svg",
  9550. extra: 1347 / 1274,
  9551. bottom: 0.005
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Totally Unfair",
  9558. height: math.unit(1.8, "mm")
  9559. },
  9560. {
  9561. name: "Lap Rookie",
  9562. height: math.unit(1.4, "feet")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 11 / 12, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "How Did This Happen",
  9571. height: math.unit(80, "miles")
  9572. }
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(7, "feet"),
  9580. weight: math.unit(300, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/pisces/front.svg",
  9584. extra: 2255 / 2115,
  9585. bottom: 0.03
  9586. }
  9587. },
  9588. back: {
  9589. height: math.unit(7, "feet"),
  9590. weight: math.unit(300, "lb"),
  9591. name: "Back",
  9592. image: {
  9593. source: "./media/characters/pisces/back.svg",
  9594. extra: 2146 / 2055,
  9595. bottom: 0.04
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(7, "feet"),
  9603. default: true
  9604. },
  9605. {
  9606. name: "Swimming Pool",
  9607. height: math.unit(12.2, "meters")
  9608. },
  9609. {
  9610. name: "Olympic Swimming Pool",
  9611. height: math.unit(56.3, "meters")
  9612. },
  9613. {
  9614. name: "Lake Superior",
  9615. height: math.unit(93900, "meters")
  9616. },
  9617. {
  9618. name: "Mediterranean Sea",
  9619. height: math.unit(644457, "meters")
  9620. },
  9621. {
  9622. name: "World's Oceans",
  9623. height: math.unit(4567491, "meters")
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(2.3, "meters"),
  9632. weight: math.unit(120, "kg"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/zelas/front.svg"
  9636. }
  9637. },
  9638. side: {
  9639. height: math.unit(2.3, "meters"),
  9640. weight: math.unit(120, "kg"),
  9641. name: "Side",
  9642. image: {
  9643. source: "./media/characters/zelas/side.svg"
  9644. }
  9645. },
  9646. back: {
  9647. height: math.unit(2.3, "meters"),
  9648. weight: math.unit(120, "kg"),
  9649. name: "Back",
  9650. image: {
  9651. source: "./media/characters/zelas/back.svg"
  9652. }
  9653. },
  9654. foot: {
  9655. height: math.unit(1.116, "feet"),
  9656. name: "Foot",
  9657. image: {
  9658. source: "./media/characters/zelas/foot.svg"
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(2.3, "meters")
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(30, "meters"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(1, "inch"),
  9679. weight: math.unit(0.21, "grams"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/talbot/front.svg",
  9683. extra: 594 / 544
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(1, "inch"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9697. {
  9698. front: {
  9699. height: math.unit(3 + 3 / 12, "feet"),
  9700. weight: math.unit(51.8, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/fliss/front.svg",
  9704. extra: 840 / 640
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Teeny Tiny",
  9711. height: math.unit(1, "mm")
  9712. },
  9713. {
  9714. name: "Small",
  9715. height: math.unit(1, "inch"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Standard Sylveon",
  9720. height: math.unit(3 + 3 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Large Nuisance",
  9724. height: math.unit(33, "feet")
  9725. },
  9726. {
  9727. name: "City Filler",
  9728. height: math.unit(3000, "feet")
  9729. },
  9730. {
  9731. name: "New Horizon",
  9732. height: math.unit(6000, "miles")
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9738. {
  9739. front: {
  9740. height: math.unit(5, "cm"),
  9741. weight: math.unit(1.94, "g"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/fleta/front.svg",
  9745. extra: 835 / 803
  9746. }
  9747. },
  9748. back: {
  9749. height: math.unit(5, "cm"),
  9750. weight: math.unit(1.94, "g"),
  9751. name: "Back",
  9752. image: {
  9753. source: "./media/characters/fleta/back.svg",
  9754. extra: 835 / 803
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Micro",
  9761. height: math.unit(5, "cm"),
  9762. default: true
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(6, "feet"),
  9771. weight: math.unit(225, "lb"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/dominic/front.svg",
  9775. extra: 1770 / 1620,
  9776. bottom: 0.025
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(225, "lb"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/dominic/back.svg",
  9785. extra: 1745 / 1620,
  9786. bottom: 0.065
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Nano",
  9793. height: math.unit(0.1, "mm")
  9794. },
  9795. {
  9796. name: "Micro-",
  9797. height: math.unit(1, "mm")
  9798. },
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(4, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(6 + 4 / 12, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(115, "feet")
  9811. },
  9812. {
  9813. name: "Macro+",
  9814. height: math.unit(955, "feet")
  9815. },
  9816. {
  9817. name: "Megamacro",
  9818. height: math.unit(8990, "feet")
  9819. },
  9820. {
  9821. name: "Gigmacro",
  9822. height: math.unit(9310, "miles")
  9823. },
  9824. {
  9825. name: "Teramacro",
  9826. height: math.unit(1567005010, "miles")
  9827. },
  9828. {
  9829. name: "Examacro",
  9830. height: math.unit(1425, "parsecs")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(400, "feet"),
  9839. weight: math.unit(44444444, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/major-colonel/front.svg"
  9843. }
  9844. },
  9845. back: {
  9846. height: math.unit(400, "feet"),
  9847. weight: math.unit(44444444, "lb"),
  9848. name: "Back",
  9849. image: {
  9850. source: "./media/characters/major-colonel/back.svg"
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Macro",
  9857. height: math.unit(400, "feet"),
  9858. default: true
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9864. {
  9865. catFront: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(120, "lb"),
  9868. name: "Front (Cat Side)",
  9869. image: {
  9870. source: "./media/characters/axel-lycan/cat-front.svg",
  9871. extra: 430 / 402,
  9872. bottom: 43 / 472.35
  9873. }
  9874. },
  9875. catBack: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(120, "lb"),
  9878. name: "Back (Cat Side)",
  9879. image: {
  9880. source: "./media/characters/axel-lycan/cat-back.svg",
  9881. extra: 447 / 419,
  9882. bottom: 23.3 / 469
  9883. }
  9884. },
  9885. wolfFront: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(120, "lb"),
  9888. name: "Front (Wolf Side)",
  9889. image: {
  9890. source: "./media/characters/axel-lycan/wolf-front.svg",
  9891. extra: 485 / 456,
  9892. bottom: 19 / 504
  9893. }
  9894. },
  9895. wolfBack: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(120, "lb"),
  9898. name: "Back (Wolf Side)",
  9899. image: {
  9900. source: "./media/characters/axel-lycan/wolf-back.svg",
  9901. extra: 475 / 438,
  9902. bottom: 39.2 / 514
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(1, "km"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(5 + 9 / 12, "feet"),
  9919. weight: math.unit(175, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/vanrel-hyena/front.svg",
  9923. extra: 1086 / 1010,
  9924. bottom: 0.04
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(5 + 9 / 12, "feet"),
  9932. default: true
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(103, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/abbott-absol/front.svg",
  9945. extra: 2010 / 1842
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Megamicro",
  9952. height: math.unit(0.1, "mm")
  9953. },
  9954. {
  9955. name: "Micro",
  9956. height: math.unit(1, "inch")
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(6, "feet"),
  9961. default: true
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(6, "feet"),
  9970. weight: math.unit(264, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/hector/front.svg",
  9974. extra: 2280 / 2130,
  9975. bottom: 0.07
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(12.25, "foot"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(160, "feet")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(6, "feet"),
  9996. weight: math.unit(150, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/sal/front.svg",
  10000. extra: 1846 / 1699,
  10001. bottom: 0.04
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(10, "miles"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10015. {
  10016. front: {
  10017. height: math.unit(3, "meters"),
  10018. weight: math.unit(450, "kg"),
  10019. name: "front",
  10020. image: {
  10021. source: "./media/characters/ranger/front.svg",
  10022. extra: 2401 / 2243,
  10023. bottom: 0.05
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(3, "meters"),
  10031. default: true
  10032. },
  10033. ]
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10037. {
  10038. front: {
  10039. height: math.unit(14, "feet"),
  10040. weight: math.unit(800, "kg"),
  10041. name: "Front",
  10042. image: {
  10043. source: "./media/characters/theresa/front.svg",
  10044. extra: 3575 / 3346,
  10045. bottom: 0.03
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(14, "feet"),
  10053. default: true
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(3, "kg"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/ine/front.svg",
  10066. extra: 678 / 539,
  10067. bottom: 0.023
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(2.265, "feet"),
  10075. default: true
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(5, "feet"),
  10084. weight: math.unit(30, "kg"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/vial/front.svg",
  10088. extra: 1365 / 1277,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Normal",
  10096. height: math.unit(5, "feet"),
  10097. default: true
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10103. {
  10104. side: {
  10105. height: math.unit(3.4, "meters"),
  10106. weight: math.unit(1000, "lb"),
  10107. name: "Side",
  10108. image: {
  10109. source: "./media/characters/rovoska/side.svg",
  10110. extra: 4403 / 1515
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(3.4, "meters"),
  10118. default: true
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(8, "feet"),
  10127. weight: math.unit(315, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/gunner-rotthbauer/front.svg"
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(8, "feet"),
  10135. weight: math.unit(315, "lb"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/gunner-rotthbauer/back.svg"
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(3.5, "inches")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(8, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(250, "feet")
  10155. },
  10156. {
  10157. name: "Megamacro",
  10158. height: math.unit(1, "AU")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(5 + 5 / 12, "feet"),
  10167. weight: math.unit(140, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/allatia/front.svg",
  10171. extra: 1227 / 1180,
  10172. bottom: 0.027
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 5 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(250, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(8, "miles")
  10189. }
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/tene/front.svg",
  10201. extra: 814/750,
  10202. bottom: 36/850
  10203. }
  10204. },
  10205. stomping: {
  10206. height: math.unit(2.025, "meters"),
  10207. weight: math.unit(120, "lb"),
  10208. name: "Stomping",
  10209. image: {
  10210. source: "./media/characters/tene/stomping.svg",
  10211. extra: 885/821,
  10212. bottom: 15/900
  10213. }
  10214. },
  10215. sitting: {
  10216. height: math.unit(1, "meter"),
  10217. weight: math.unit(120, "lb"),
  10218. name: "Sitting",
  10219. image: {
  10220. source: "./media/characters/tene/sitting.svg",
  10221. extra: 396/366,
  10222. bottom: 79/475
  10223. }
  10224. },
  10225. smiling: {
  10226. height: math.unit(1.2, "feet"),
  10227. name: "Smiling",
  10228. image: {
  10229. source: "./media/characters/tene/smiling.svg",
  10230. extra: 1364/1071,
  10231. bottom: 0/1364
  10232. }
  10233. },
  10234. smug: {
  10235. height: math.unit(1.3, "feet"),
  10236. name: "Smug",
  10237. image: {
  10238. source: "./media/characters/tene/smug.svg",
  10239. extra: 1323/1082,
  10240. bottom: 0/1323
  10241. }
  10242. },
  10243. feral: {
  10244. height: math.unit(3.9, "feet"),
  10245. weight: math.unit(250, "lb"),
  10246. name: "Feral",
  10247. image: {
  10248. source: "./media/characters/tene/feral.svg",
  10249. extra: 717 / 458,
  10250. bottom: 0.179
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(6, "feet")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(300, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Megamacro",
  10266. height: math.unit(5, "miles")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10272. {
  10273. side: {
  10274. height: math.unit(6, "feet"),
  10275. name: "Side",
  10276. image: {
  10277. source: "./media/characters/evander/side.svg",
  10278. extra: 877 / 477
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(0.83, "meters"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(12, "feet"),
  10295. weight: math.unit(1000, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10299. extra: 1762 / 1611
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(12, "feet"),
  10304. weight: math.unit(1000, "lb"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10308. extra: 1762 / 1611
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(12, "feet"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Kaiju",
  10320. height: math.unit(150, "feet")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/zero-alurus/front.svg"
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/zero-alurus/back.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 10 / 12, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(60, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro+",
  10356. height: math.unit(450, "feet")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(200, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/mega-shi/front.svg",
  10369. extra: 1279 / 1250,
  10370. bottom: 0.02
  10371. }
  10372. },
  10373. back: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(200, "lb"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/mega-shi/back.svg",
  10379. extra: 1279 / 1250,
  10380. bottom: 0.02
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Micro",
  10387. height: math.unit(16 + 6 / 12, "feet")
  10388. },
  10389. {
  10390. name: "Third Dimension",
  10391. height: math.unit(40, "meters")
  10392. },
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(660, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(10, "miles")
  10401. },
  10402. {
  10403. name: "Planetary Launch",
  10404. height: math.unit(500, "miles")
  10405. },
  10406. {
  10407. name: "Interstellar",
  10408. height: math.unit(1e9, "miles")
  10409. },
  10410. {
  10411. name: "Leaving the Universe",
  10412. height: math.unit(1, "gigaparsec")
  10413. },
  10414. {
  10415. name: "Travelling Universes",
  10416. height: math.unit(30e15, "parsecs")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(5 + 4/12, "feet"),
  10425. weight: math.unit(120, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/odyssey/front.svg",
  10429. extra: 1747/1571,
  10430. bottom: 47/1794
  10431. }
  10432. },
  10433. side: {
  10434. height: math.unit(5.1, "feet"),
  10435. weight: math.unit(120, "lb"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/odyssey/side.svg",
  10439. extra: 1847/1619,
  10440. bottom: 47/1894
  10441. }
  10442. },
  10443. lounging: {
  10444. height: math.unit(1.464, "feet"),
  10445. weight: math.unit(120, "lb"),
  10446. name: "Lounging",
  10447. image: {
  10448. source: "./media/characters/odyssey/lounging.svg",
  10449. extra: 1235/837,
  10450. bottom: 551/1786
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Normal",
  10457. height: math.unit(5 + 4 / 12, "feet")
  10458. },
  10459. {
  10460. name: "Macro",
  10461. height: math.unit(1, "km")
  10462. },
  10463. {
  10464. name: "Megamacro",
  10465. height: math.unit(3000, "km")
  10466. },
  10467. {
  10468. name: "Gigamacro",
  10469. height: math.unit(1, "AU"),
  10470. default: true
  10471. },
  10472. {
  10473. name: "Omniversal",
  10474. height: math.unit(100e14, "lightyears")
  10475. },
  10476. ]
  10477. ))
  10478. characterMakers.push(() => makeCharacter(
  10479. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10480. {
  10481. front: {
  10482. height: math.unit(6, "feet"),
  10483. weight: math.unit(300, "lb"),
  10484. name: "Front",
  10485. image: {
  10486. source: "./media/characters/mekuto/front.svg",
  10487. extra: 921 / 832,
  10488. bottom: 0.03
  10489. }
  10490. },
  10491. hand: {
  10492. height: math.unit(6 / 10.24, "feet"),
  10493. name: "Hand",
  10494. image: {
  10495. source: "./media/characters/mekuto/hand.svg"
  10496. }
  10497. },
  10498. foot: {
  10499. height: math.unit(6 / 5.05, "feet"),
  10500. name: "Foot",
  10501. image: {
  10502. source: "./media/characters/mekuto/foot.svg"
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Minimicro",
  10509. height: math.unit(0.2, "inches")
  10510. },
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(1.5, "inches")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(5 + 11 / 12, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Minimacro",
  10522. height: math.unit(17 + 9 / 12, "feet")
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(177.5, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(152, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6.5, "inches"),
  10539. weight: math.unit(13, "oz"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/dafydd-tomos/front.svg",
  10543. extra: 2990 / 2603,
  10544. bottom: 0.03
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(6.5, "inches"),
  10552. default: true
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/splinter/front.svg",
  10565. extra: 2990 / 2882,
  10566. bottom: 0.04
  10567. }
  10568. },
  10569. back: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Back",
  10573. image: {
  10574. source: "./media/characters/splinter/back.svg",
  10575. extra: 2990 / 2882,
  10576. bottom: 0.04
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(6, "feet")
  10584. },
  10585. {
  10586. name: "Macro",
  10587. height: math.unit(230, "meters"),
  10588. default: true
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(4 + 10 / 12, "feet"),
  10597. weight: math.unit(480, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/snow-gabumon/front.svg",
  10601. extra: 1140 / 963,
  10602. bottom: 0.058
  10603. }
  10604. },
  10605. back: {
  10606. height: math.unit(4 + 10 / 12, "feet"),
  10607. weight: math.unit(480, "lb"),
  10608. name: "Back",
  10609. image: {
  10610. source: "./media/characters/snow-gabumon/back.svg",
  10611. extra: 1115 / 962,
  10612. bottom: 0.041
  10613. }
  10614. },
  10615. frontUndresed: {
  10616. height: math.unit(4 + 10 / 12, "feet"),
  10617. weight: math.unit(480, "lb"),
  10618. name: "Front (Undressed)",
  10619. image: {
  10620. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10621. extra: 1061 / 960,
  10622. bottom: 0.045
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(1, "inch")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(4 + 10 / 12, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(200, "feet")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(120, "miles")
  10643. },
  10644. {
  10645. name: "Gigamacro",
  10646. height: math.unit(9800, "miles")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(1.7, "meters"),
  10655. weight: math.unit(140, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/moody/front.svg",
  10659. extra: 3226 / 3007,
  10660. bottom: 0.087
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Micro",
  10667. height: math.unit(1, "mm")
  10668. },
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(1.7, "meters"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(80, "meters")
  10677. },
  10678. {
  10679. name: "Macro+",
  10680. height: math.unit(500, "meters")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zyas/front.svg",
  10693. extra: 1180 / 1120,
  10694. bottom: 0.045
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(10, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(500, "feet")
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(5, "miles")
  10711. },
  10712. {
  10713. name: "Teramacro",
  10714. height: math.unit(150000, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/cuon/front.svg",
  10727. extra: 1390 / 1320,
  10728. bottom: 0.008
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Micro",
  10735. height: math.unit(3, "inches")
  10736. },
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(18 + 9 / 12, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(360, "feet")
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(360, "miles")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(2.4, "meters"),
  10757. weight: math.unit(70, "kg"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/nyanuxk/front.svg",
  10761. extra: 1172 / 1084,
  10762. bottom: 0.065
  10763. }
  10764. },
  10765. side: {
  10766. height: math.unit(2.4, "meters"),
  10767. weight: math.unit(70, "kg"),
  10768. name: "Side",
  10769. image: {
  10770. source: "./media/characters/nyanuxk/side.svg",
  10771. extra: 1190 / 1132,
  10772. bottom: 0.007
  10773. }
  10774. },
  10775. back: {
  10776. height: math.unit(2.4, "meters"),
  10777. weight: math.unit(70, "kg"),
  10778. name: "Back",
  10779. image: {
  10780. source: "./media/characters/nyanuxk/back.svg",
  10781. extra: 1200 / 1141,
  10782. bottom: 0.015
  10783. }
  10784. },
  10785. foot: {
  10786. height: math.unit(0.52, "meters"),
  10787. name: "Foot",
  10788. image: {
  10789. source: "./media/characters/nyanuxk/foot.svg"
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Micro",
  10796. height: math.unit(2, "cm")
  10797. },
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(2.4, "meters"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Smaller Macro",
  10805. height: math.unit(120, "meters")
  10806. },
  10807. {
  10808. name: "Bigger Macro",
  10809. height: math.unit(1.2, "km")
  10810. },
  10811. {
  10812. name: "Megamacro",
  10813. height: math.unit(15, "kilometers")
  10814. },
  10815. {
  10816. name: "Gigamacro",
  10817. height: math.unit(2000, "km")
  10818. },
  10819. {
  10820. name: "Teramacro",
  10821. height: math.unit(500000, "km")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10827. {
  10828. side: {
  10829. height: math.unit(6, "feet"),
  10830. name: "Side",
  10831. image: {
  10832. source: "./media/characters/ailbhe/side.svg",
  10833. extra: 757 / 464,
  10834. bottom: 0.041
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(1.07, "meters"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(120, "kg"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/zevulfius/front.svg",
  10855. extra: 965 / 903
  10856. }
  10857. },
  10858. side: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(120, "kg"),
  10861. name: "Side",
  10862. image: {
  10863. source: "./media/characters/zevulfius/side.svg",
  10864. extra: 939 / 900
  10865. }
  10866. },
  10867. back: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(120, "kg"),
  10870. name: "Back",
  10871. image: {
  10872. source: "./media/characters/zevulfius/back.svg",
  10873. extra: 918 / 854,
  10874. bottom: 0.005
  10875. }
  10876. },
  10877. foot: {
  10878. height: math.unit(6 / 3.72, "feet"),
  10879. name: "Foot",
  10880. image: {
  10881. source: "./media/characters/zevulfius/foot.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(750, "meters")
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(20, "km"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Gigamacro",
  10897. height: math.unit(2000, "km")
  10898. },
  10899. {
  10900. name: "Teramacro",
  10901. height: math.unit(250000, "km")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(100, "feet"),
  10910. weight: math.unit(350, "kg"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/rikes/front.svg",
  10914. extra: 1565 / 1483,
  10915. bottom: 0.017
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(100, "feet"),
  10923. default: true
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(8, "feet"),
  10932. weight: math.unit(356, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/adam-silver-mane/front.svg",
  10936. extra: 1036/937,
  10937. bottom: 63/1099
  10938. }
  10939. },
  10940. side: {
  10941. height: math.unit(8, "feet"),
  10942. weight: math.unit(356, "lb"),
  10943. name: "Side",
  10944. image: {
  10945. source: "./media/characters/adam-silver-mane/side.svg",
  10946. extra: 997/901,
  10947. bottom: 59/1056
  10948. }
  10949. },
  10950. frontNsfw: {
  10951. height: math.unit(8, "feet"),
  10952. weight: math.unit(356, "lb"),
  10953. name: "Front (NSFW)",
  10954. image: {
  10955. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10956. extra: 1036/937,
  10957. bottom: 63/1099
  10958. }
  10959. },
  10960. sideNsfw: {
  10961. height: math.unit(8, "feet"),
  10962. weight: math.unit(356, "lb"),
  10963. name: "Side (NSFW)",
  10964. image: {
  10965. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10966. extra: 997/901,
  10967. bottom: 59/1056
  10968. }
  10969. },
  10970. dick: {
  10971. height: math.unit(2.1, "feet"),
  10972. name: "Dick",
  10973. image: {
  10974. source: "./media/characters/adam-silver-mane/dick.svg"
  10975. }
  10976. },
  10977. taur: {
  10978. height: math.unit(16, "feet"),
  10979. weight: math.unit(1500, "kg"),
  10980. name: "Taur",
  10981. image: {
  10982. source: "./media/characters/adam-silver-mane/taur.svg",
  10983. extra: 1713 / 1571,
  10984. bottom: 0.01
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(8, "feet")
  10992. },
  10993. {
  10994. name: "Minimacro",
  10995. height: math.unit(80, "feet")
  10996. },
  10997. {
  10998. name: "MDA",
  10999. height: math.unit(80, "meters")
  11000. },
  11001. {
  11002. name: "Macro",
  11003. height: math.unit(800, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(8000, "feet")
  11009. },
  11010. {
  11011. name: "Gigamacro",
  11012. height: math.unit(800, "miles")
  11013. },
  11014. {
  11015. name: "Teramacro",
  11016. height: math.unit(80000, "miles")
  11017. },
  11018. {
  11019. name: "Celestial",
  11020. height: math.unit(8e6, "miles")
  11021. },
  11022. {
  11023. name: "Star Dragon",
  11024. height: math.unit(800000, "parsecs")
  11025. },
  11026. {
  11027. name: "Godly",
  11028. height: math.unit(800, "teraparsecs")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/ky'owin/front.svg",
  11041. extra: 3888 / 3068,
  11042. bottom: 0.015
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(6 + 8 / 12, "feet")
  11050. },
  11051. {
  11052. name: "Large",
  11053. height: math.unit(68, "feet")
  11054. },
  11055. {
  11056. name: "Macro",
  11057. height: math.unit(132, "feet")
  11058. },
  11059. {
  11060. name: "Macro+",
  11061. height: math.unit(340, "feet")
  11062. },
  11063. {
  11064. name: "Macro++",
  11065. height: math.unit(680, "feet"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(1, "mile")
  11071. },
  11072. {
  11073. name: "Megamacro+",
  11074. height: math.unit(10, "miles")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(4, "feet"),
  11083. weight: math.unit(50, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/mal/front.svg",
  11087. extra: 785 / 724,
  11088. bottom: 0.07
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Micro",
  11095. height: math.unit(4, "inches")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(4, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(200, "feet")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/jordan-deware/front.svg",
  11117. extra: 1191 / 1012
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Nano",
  11124. height: math.unit(0.01, "mm")
  11125. },
  11126. {
  11127. name: "Minimicro",
  11128. height: math.unit(1, "mm")
  11129. },
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(0.5, "inches")
  11133. },
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(4, "feet"),
  11137. default: true
  11138. },
  11139. {
  11140. name: "Minimacro",
  11141. height: math.unit(40, "meters")
  11142. },
  11143. {
  11144. name: "Small Macro",
  11145. height: math.unit(400, "meters")
  11146. },
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(4, "miles")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(40, "miles")
  11154. },
  11155. {
  11156. name: "Megamacro+",
  11157. height: math.unit(400, "miles")
  11158. },
  11159. {
  11160. name: "Gigamacro",
  11161. height: math.unit(400000, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11167. {
  11168. side: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/kimiko/side.svg",
  11174. extra: 600 / 358
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(15, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(220, "feet")
  11187. },
  11188. {
  11189. name: "Macro+",
  11190. height: math.unit(1450, "feet")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(11500, "feet")
  11195. },
  11196. {
  11197. name: "Gigamacro",
  11198. height: math.unit(9500, "miles")
  11199. },
  11200. {
  11201. name: "Teramacro",
  11202. height: math.unit(2208005005, "miles")
  11203. },
  11204. {
  11205. name: "Examacro",
  11206. height: math.unit(2750, "parsecs")
  11207. },
  11208. {
  11209. name: "Zettamacro",
  11210. height: math.unit(101500, "parsecs")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(70, "kg"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/andrew-sleepy/front.svg"
  11223. }
  11224. },
  11225. side: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(70, "kg"),
  11228. name: "Side",
  11229. image: {
  11230. source: "./media/characters/andrew-sleepy/side.svg"
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Micro",
  11237. height: math.unit(1, "mm"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/judio/front.svg",
  11251. extra: 1258 / 1110
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(5 + 6 / 12, "feet")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(1000, "feet"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(10, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11273. {
  11274. frontDressed: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(68, "kg"),
  11277. name: "Front (Dressed)",
  11278. image: {
  11279. source: "./media/characters/nomaxice/front-dressed.svg",
  11280. extra: 1137/824,
  11281. bottom: 74/1211
  11282. }
  11283. },
  11284. frontShorts: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(68, "kg"),
  11287. name: "Front (Shorts)",
  11288. image: {
  11289. source: "./media/characters/nomaxice/front-shorts.svg",
  11290. extra: 1137/824,
  11291. bottom: 74/1211
  11292. }
  11293. },
  11294. back: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(68, "kg"),
  11297. name: "Back",
  11298. image: {
  11299. source: "./media/characters/nomaxice/back.svg",
  11300. extra: 822/786,
  11301. bottom: 39/861
  11302. }
  11303. },
  11304. hand: {
  11305. height: math.unit(0.565, "feet"),
  11306. name: "Hand",
  11307. image: {
  11308. source: "./media/characters/nomaxice/hand.svg"
  11309. }
  11310. },
  11311. foot: {
  11312. height: math.unit(1, "feet"),
  11313. name: "Foot",
  11314. image: {
  11315. source: "./media/characters/nomaxice/foot.svg"
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(8, "cm")
  11323. },
  11324. {
  11325. name: "Norm",
  11326. height: math.unit(1.82, "m")
  11327. },
  11328. {
  11329. name: "Norm+",
  11330. height: math.unit(8.8, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Big",
  11335. height: math.unit(8, "meters")
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(18, "meters")
  11340. },
  11341. {
  11342. name: "Macro+",
  11343. height: math.unit(88, "meters")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(12, "feet"),
  11352. weight: math.unit(1.5, "tons"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/dydros/front.svg",
  11356. extra: 863 / 800,
  11357. bottom: 0.015
  11358. }
  11359. },
  11360. back: {
  11361. height: math.unit(12, "feet"),
  11362. weight: math.unit(1.5, "tons"),
  11363. name: "Back",
  11364. image: {
  11365. source: "./media/characters/dydros/back.svg",
  11366. extra: 900 / 843,
  11367. bottom: 0.005
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(12, "feet"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(100, "kg"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/riggi/front.svg",
  11388. extra: 5787 / 5303
  11389. }
  11390. },
  11391. hyper: {
  11392. height: math.unit(6 * 5 / 3, "feet"),
  11393. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11394. name: "Hyper",
  11395. image: {
  11396. source: "./media/characters/riggi/hyper.svg",
  11397. extra: 3595 / 3485
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Small Macro",
  11404. height: math.unit(50, "feet")
  11405. },
  11406. {
  11407. name: "Default",
  11408. height: math.unit(200, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Loom",
  11413. height: math.unit(10000, "feet")
  11414. },
  11415. {
  11416. name: "Cruising Altitude",
  11417. height: math.unit(30000, "feet")
  11418. },
  11419. {
  11420. name: "Megamacro",
  11421. height: math.unit(100, "miles")
  11422. },
  11423. {
  11424. name: "Continent Sized",
  11425. height: math.unit(2800, "miles")
  11426. },
  11427. {
  11428. name: "Earth Sized",
  11429. height: math.unit(8000, "miles")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(250, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/alexi/front.svg",
  11442. extra: 3483 / 3291,
  11443. bottom: 0.04
  11444. }
  11445. },
  11446. back: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(250, "lb"),
  11449. name: "Back",
  11450. image: {
  11451. source: "./media/characters/alexi/back.svg",
  11452. extra: 3533 / 3356,
  11453. bottom: 0.021
  11454. }
  11455. },
  11456. frontTransforming: {
  11457. height: math.unit(8.58, "feet"),
  11458. weight: math.unit(1300, "lb"),
  11459. name: "Transforming",
  11460. image: {
  11461. source: "./media/characters/alexi/front-transforming.svg",
  11462. extra: 437 / 409,
  11463. bottom: 19 / 458.66
  11464. }
  11465. },
  11466. frontTransformed: {
  11467. height: math.unit(12.5, "feet"),
  11468. weight: math.unit(4000, "lb"),
  11469. name: "Transformed",
  11470. image: {
  11471. source: "./media/characters/alexi/front-transformed.svg",
  11472. extra: 639 / 614,
  11473. bottom: 30.55 / 671
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(14, "feet"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Minimacro",
  11485. height: math.unit(30, "meters")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(500, "meters")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(9000, "km")
  11494. },
  11495. {
  11496. name: "Teramacro",
  11497. height: math.unit(384000, "km")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(150, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/kayroo/front.svg",
  11510. extra: 1153 / 1038,
  11511. bottom: 0.06
  11512. }
  11513. },
  11514. foot: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(150, "lb"),
  11517. name: "Foot",
  11518. image: {
  11519. source: "./media/characters/kayroo/foot.svg"
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(8, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Minimacro",
  11531. height: math.unit(250, "feet")
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(2800, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(5200, "feet")
  11540. },
  11541. {
  11542. name: "Gigamacro",
  11543. height: math.unit(27000, "feet")
  11544. },
  11545. {
  11546. name: "Omega",
  11547. height: math.unit(45000, "feet")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(18, "feet"),
  11556. weight: math.unit(5800, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/rhys/front.svg",
  11560. extra: 3386 / 3090,
  11561. bottom: 0.07
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(18, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Working Size",
  11573. height: math.unit(200, "feet")
  11574. },
  11575. {
  11576. name: "Demolition Size",
  11577. height: math.unit(2000, "feet")
  11578. },
  11579. {
  11580. name: "Maximum Licensed Size",
  11581. height: math.unit(5, "miles")
  11582. },
  11583. {
  11584. name: "Maximum Observed Size",
  11585. height: math.unit(10, "yottameters")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(250, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/toto/front.svg",
  11598. extra: 527 / 479,
  11599. bottom: 0.05
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Micro",
  11606. height: math.unit(3, "feet")
  11607. },
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(10, "feet")
  11611. },
  11612. {
  11613. name: "Macro",
  11614. height: math.unit(150, "feet"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(1200, "feet")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "King", species: ["lion"], tags: ["anthro"] },
  11625. {
  11626. back: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Back",
  11630. image: {
  11631. source: "./media/characters/king/back.svg"
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(2, "inches")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(8, "feet")
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(200, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Megamacro",
  11651. height: math.unit(50, "miles")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(11, "feet"),
  11660. weight: math.unit(1400, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/cordite/front.svg",
  11664. extra: 1919/1827,
  11665. bottom: 40/1959
  11666. }
  11667. },
  11668. side: {
  11669. height: math.unit(11, "feet"),
  11670. weight: math.unit(1400, "lb"),
  11671. name: "Side",
  11672. image: {
  11673. source: "./media/characters/cordite/side.svg",
  11674. extra: 1908/1793,
  11675. bottom: 38/1946
  11676. }
  11677. },
  11678. back: {
  11679. height: math.unit(11, "feet"),
  11680. weight: math.unit(1400, "lb"),
  11681. name: "Back",
  11682. image: {
  11683. source: "./media/characters/cordite/back.svg",
  11684. extra: 1938/1837,
  11685. bottom: 10/1948
  11686. }
  11687. },
  11688. feral: {
  11689. height: math.unit(2, "feet"),
  11690. weight: math.unit(90, "lb"),
  11691. name: "Feral",
  11692. image: {
  11693. source: "./media/characters/cordite/feral.svg",
  11694. extra: 1260 / 755,
  11695. bottom: 0.05
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(11, "feet"),
  11703. default: true
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(6, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/pianostrong/front.svg",
  11716. extra: 6577 / 6254,
  11717. bottom: 0.02
  11718. }
  11719. },
  11720. side: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Side",
  11724. image: {
  11725. source: "./media/characters/pianostrong/side.svg",
  11726. extra: 6106 / 5730
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/pianostrong/back.svg",
  11735. extra: 6085 / 5733,
  11736. bottom: 0.01
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(100, "feet")
  11744. },
  11745. {
  11746. name: "Macro+",
  11747. height: math.unit(300, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro++",
  11752. height: math.unit(1000, "feet")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/kona/front.svg",
  11765. extra: 2960 / 2629,
  11766. bottom: 0.005
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(11 + 8 / 12, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(850, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Macro+",
  11782. height: math.unit(1.5, "km"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(80, "miles")
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(3500, "miles")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11797. {
  11798. side: {
  11799. height: math.unit(1.9, "meters"),
  11800. weight: math.unit(326, "kg"),
  11801. name: "Side",
  11802. image: {
  11803. source: "./media/characters/levi/side.svg",
  11804. extra: 1704 / 1334,
  11805. bottom: 0.02
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(1.9, "meters"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(20, "meters")
  11818. },
  11819. {
  11820. name: "Macro+",
  11821. height: math.unit(200, "meters")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(2, "km")
  11826. },
  11827. {
  11828. name: "Megamacro+",
  11829. height: math.unit(20, "km")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(2500, "km")
  11834. },
  11835. {
  11836. name: "Gigamacro+",
  11837. height: math.unit(120000, "km")
  11838. },
  11839. {
  11840. name: "Teramacro",
  11841. height: math.unit(7.77e6, "km")
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(6 + 4/12, "feet"),
  11850. weight: math.unit(190, "lb"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/bmc/front.svg",
  11854. extra: 1626/1472,
  11855. bottom: 79/1705
  11856. }
  11857. },
  11858. back: {
  11859. height: math.unit(6 + 4/12, "feet"),
  11860. weight: math.unit(190, "lb"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/bmc/back.svg",
  11864. extra: 1640/1479,
  11865. bottom: 45/1685
  11866. }
  11867. },
  11868. frontArmor: {
  11869. height: math.unit(6 + 4/12, "feet"),
  11870. weight: math.unit(190, "lb"),
  11871. name: "Front-armor",
  11872. image: {
  11873. source: "./media/characters/bmc/front-armor.svg",
  11874. extra: 1538/1468,
  11875. bottom: 79/1617
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Human-sized",
  11882. height: math.unit(6 + 4 / 12, "feet")
  11883. },
  11884. {
  11885. name: "Interactive Size",
  11886. height: math.unit(25, "feet")
  11887. },
  11888. {
  11889. name: "Small",
  11890. height: math.unit(250, "feet")
  11891. },
  11892. {
  11893. name: "Normal",
  11894. height: math.unit(1250, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Good Day",
  11899. height: math.unit(88, "miles")
  11900. },
  11901. {
  11902. name: "Largest Measured Size",
  11903. height: math.unit(105.960, "galaxies")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(20, "feet"),
  11912. weight: math.unit(2016, "kg"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/sven-the-kaiju/front.svg",
  11916. extra: 1277/1250,
  11917. bottom: 35/1312
  11918. }
  11919. },
  11920. mouth: {
  11921. height: math.unit(1.85, "feet"),
  11922. name: "Mouth",
  11923. image: {
  11924. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Fairy",
  11931. height: math.unit(6, "inches")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(20, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Rampage",
  11940. height: math.unit(200, "feet")
  11941. },
  11942. {
  11943. name: "Archfey Forest Guardian",
  11944. height: math.unit(1, "mile")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(4, "meters"),
  11953. weight: math.unit(2, "tons"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/marik/front.svg",
  11957. extra: 1057 / 1003,
  11958. bottom: 0.08
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(4, "meters"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(20, "meters")
  11971. },
  11972. {
  11973. name: "Megamacro",
  11974. height: math.unit(50, "km")
  11975. },
  11976. {
  11977. name: "Gigamacro",
  11978. height: math.unit(100, "km")
  11979. },
  11980. {
  11981. name: "Alpha Macro",
  11982. height: math.unit(7.88e7, "yottameters")
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11988. {
  11989. front: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(110, "lb"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/mel/front.svg",
  11995. extra: 736 / 617,
  11996. bottom: 0.017
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Pico",
  12003. height: math.unit(3, "pm")
  12004. },
  12005. {
  12006. name: "Nano",
  12007. height: math.unit(3, "nm")
  12008. },
  12009. {
  12010. name: "Micro",
  12011. height: math.unit(0.3, "mm"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Micro+",
  12016. height: math.unit(3, "mm")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(5 + 10.5 / 12, "feet")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12026. {
  12027. kaiju: {
  12028. height: math.unit(1.75, "meters"),
  12029. weight: math.unit(55, "kg"),
  12030. name: "Kaiju",
  12031. image: {
  12032. source: "./media/characters/lykonous/kaiju.svg",
  12033. extra: 1055 / 946,
  12034. bottom: 0.135
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(2.5, "meters"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Kaiju Dragon",
  12046. height: math.unit(60, "meters")
  12047. },
  12048. {
  12049. name: "Mega Kaiju",
  12050. height: math.unit(120, "km")
  12051. },
  12052. {
  12053. name: "Giga Kaiju",
  12054. height: math.unit(200, "megameters")
  12055. },
  12056. {
  12057. name: "Terra Kaiju",
  12058. height: math.unit(400, "gigameters")
  12059. },
  12060. {
  12061. name: "Kaiju Dragon God",
  12062. height: math.unit(13000, "exaparsecs")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/blü/front.svg",
  12075. extra: 1883 / 1564,
  12076. bottom: 0.031
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(13, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Big Boi",
  12088. height: math.unit(150, "meters")
  12089. },
  12090. {
  12091. name: "Mini Stomper",
  12092. height: math.unit(300, "meters")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(1000, "meters")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(11000, "meters")
  12101. },
  12102. {
  12103. name: "Gigamacro",
  12104. height: math.unit(11000, "km")
  12105. },
  12106. {
  12107. name: "Teramacro",
  12108. height: math.unit(420000, "km")
  12109. },
  12110. {
  12111. name: "Examacro",
  12112. height: math.unit(120, "parsecs")
  12113. },
  12114. {
  12115. name: "God Tho",
  12116. height: math.unit(98000000000, "parsecs")
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12122. {
  12123. taurFront: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(200, "lb"),
  12126. name: "Taur (Front)",
  12127. image: {
  12128. source: "./media/characters/scales/taur-front.svg",
  12129. extra: 1,
  12130. bottom: 0.05
  12131. }
  12132. },
  12133. taurBack: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(200, "lb"),
  12136. name: "Taur (Back)",
  12137. image: {
  12138. source: "./media/characters/scales/taur-back.svg",
  12139. extra: 1,
  12140. bottom: 0.08
  12141. }
  12142. },
  12143. anthro: {
  12144. height: math.unit(6 * 7 / 12, "feet"),
  12145. weight: math.unit(100, "lb"),
  12146. name: "Anthro",
  12147. image: {
  12148. source: "./media/characters/scales/anthro.svg",
  12149. extra: 1,
  12150. bottom: 0.06
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(12, "feet"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/koragos/front.svg",
  12171. extra: 841 / 794,
  12172. bottom: 0.035
  12173. }
  12174. },
  12175. back: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Back",
  12179. image: {
  12180. source: "./media/characters/koragos/back.svg",
  12181. extra: 841 / 810,
  12182. bottom: 0.022
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(6 + 11 / 12, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(490, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(10, "miles")
  12199. },
  12200. {
  12201. name: "Gigamacro",
  12202. height: math.unit(50, "miles")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(250, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/xylrem/front.svg",
  12215. extra: 3323 / 3050,
  12216. bottom: 0.065
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Micro",
  12223. height: math.unit(4, "feet")
  12224. },
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(16, "feet"),
  12228. default: true
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(2720, "feet")
  12233. },
  12234. {
  12235. name: "Megamacro",
  12236. height: math.unit(25000, "miles")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(8, "feet"),
  12245. weight: math.unit(250, "kg"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/ikideru/front.svg",
  12249. extra: 930 / 870,
  12250. bottom: 0.087
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(8, "feet"),
  12255. weight: math.unit(250, "kg"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/ikideru/back.svg",
  12259. extra: 919 / 852,
  12260. bottom: 0.055
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Rare",
  12267. height: math.unit(8, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Playful Loom",
  12272. height: math.unit(80, "feet")
  12273. },
  12274. {
  12275. name: "City Leaner",
  12276. height: math.unit(230, "feet")
  12277. },
  12278. {
  12279. name: "Megamacro",
  12280. height: math.unit(2500, "feet")
  12281. },
  12282. {
  12283. name: "Gigamacro",
  12284. height: math.unit(26400, "feet")
  12285. },
  12286. {
  12287. name: "Tectonic Shifter",
  12288. height: math.unit(1.7, "megameters")
  12289. },
  12290. {
  12291. name: "Planet Carer",
  12292. height: math.unit(21, "megameters")
  12293. },
  12294. {
  12295. name: "God",
  12296. height: math.unit(11157.22, "parsecs")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(6, "feet"),
  12305. weight: math.unit(120, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/neo/front.svg"
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Micro",
  12315. height: math.unit(2, "inches"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Human Size",
  12320. height: math.unit(5 + 8 / 12, "feet")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(13 + 10 / 12, "feet"),
  12329. weight: math.unit(5320, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/chauncey-chantz/front.svg",
  12333. extra: 1587 / 1435,
  12334. bottom: 0.02
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(13 + 10 / 12, "feet"),
  12342. default: true
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(45, "feet")
  12347. },
  12348. {
  12349. name: "Megamacro",
  12350. height: math.unit(250, "miles")
  12351. },
  12352. {
  12353. name: "Planetary",
  12354. height: math.unit(10000, "miles")
  12355. },
  12356. {
  12357. name: "Galactic",
  12358. height: math.unit(40000, "parsecs")
  12359. },
  12360. {
  12361. name: "Universal",
  12362. height: math.unit(1, "yottameter")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/epifox/front.svg",
  12375. extra: 1,
  12376. bottom: 0.075
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(6, "inches")
  12384. },
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(12, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(3810, "feet")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(500, "miles")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(1.8796, "m"),
  12405. weight: math.unit(230, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/colin-t/front.svg",
  12409. extra: 1272 / 1193,
  12410. bottom: 0.07
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Micro",
  12417. height: math.unit(0.571, "meters")
  12418. },
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(1.8796, "meters"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Tall",
  12426. height: math.unit(4, "meters")
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(67.241, "meters")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(371.856, "meters")
  12435. },
  12436. {
  12437. name: "Planetary",
  12438. height: math.unit(12631.5689, "km")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(1.85, "meters"),
  12447. weight: math.unit(80, "kg"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/matvei/front.svg",
  12451. extra: 614 / 594,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(1.85, "meters"),
  12460. default: true
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(5 + 9 / 12, "feet"),
  12469. weight: math.unit(70, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/quincy/front.svg",
  12473. extra: 3041 / 2751
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(5 + 9 / 12, "feet"),
  12478. weight: math.unit(70, "lb"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/quincy/back.svg",
  12482. extra: 3041 / 2751
  12483. }
  12484. },
  12485. flying: {
  12486. height: math.unit(5 + 4 / 12, "feet"),
  12487. weight: math.unit(70, "lb"),
  12488. name: "Flying",
  12489. image: {
  12490. source: "./media/characters/quincy/flying.svg",
  12491. extra: 1044 / 930
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(3, "cm")
  12499. },
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(5 + 9 / 12, "feet")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(200, "meters"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(1000, "meters")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(3 + 11/12, "feet"),
  12520. weight: math.unit(50, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/vanrel/front.svg",
  12524. extra: 1104/949,
  12525. bottom: 52/1156
  12526. }
  12527. },
  12528. back: {
  12529. height: math.unit(3 + 11/12, "feet"),
  12530. weight: math.unit(50, "lb"),
  12531. name: "Back",
  12532. image: {
  12533. source: "./media/characters/vanrel/back.svg",
  12534. extra: 1119/976,
  12535. bottom: 37/1156
  12536. }
  12537. },
  12538. tome: {
  12539. height: math.unit(1.35, "feet"),
  12540. weight: math.unit(10, "lb"),
  12541. name: "Vanrel's Tome",
  12542. rename: true,
  12543. image: {
  12544. source: "./media/characters/vanrel/tome.svg"
  12545. }
  12546. },
  12547. beans: {
  12548. height: math.unit(0.89, "feet"),
  12549. name: "Beans",
  12550. image: {
  12551. source: "./media/characters/vanrel/beans.svg"
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(3 + 11/12, "feet"),
  12559. default: true
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(7 + 5 / 12, "feet"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/kuiper-vanrel/front.svg",
  12571. extra: 1219/1169,
  12572. bottom: 69/1288
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(7 + 5 / 12, "feet"),
  12577. name: "Back",
  12578. image: {
  12579. source: "./media/characters/kuiper-vanrel/back.svg",
  12580. extra: 1236/1193,
  12581. bottom: 27/1263
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(0.55, "meters"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/kuiper-vanrel/foot.svg",
  12589. }
  12590. },
  12591. battle: {
  12592. height: math.unit(6.824, "feet"),
  12593. name: "Battle",
  12594. image: {
  12595. source: "./media/characters/kuiper-vanrel/battle.svg",
  12596. extra: 1466 / 1327,
  12597. bottom: 29 / 1492.5
  12598. }
  12599. },
  12600. meerkui: {
  12601. height: math.unit(18, "inches"),
  12602. name: "Meerkui",
  12603. image: {
  12604. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12605. extra: 1354/1289,
  12606. bottom: 69/1423
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(7 + 5 / 12, "feet"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(8 + 5 / 12, "feet"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/keset-vanrel/front.svg",
  12626. extra: 1231/1148,
  12627. bottom: 82/1313
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(8 + 5 / 12, "feet"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/keset-vanrel/back.svg",
  12635. extra: 1240/1174,
  12636. bottom: 33/1273
  12637. }
  12638. },
  12639. hand: {
  12640. height: math.unit(0.6, "meters"),
  12641. name: "Hand",
  12642. image: {
  12643. source: "./media/characters/keset-vanrel/hand.svg"
  12644. }
  12645. },
  12646. foot: {
  12647. height: math.unit(0.94978, "meters"),
  12648. name: "Foot",
  12649. image: {
  12650. source: "./media/characters/keset-vanrel/foot.svg"
  12651. }
  12652. },
  12653. battle: {
  12654. height: math.unit(7.408, "feet"),
  12655. name: "Battle",
  12656. image: {
  12657. source: "./media/characters/keset-vanrel/battle.svg",
  12658. extra: 1890 / 1386,
  12659. bottom: 73.28 / 1970
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(8 + 5 / 12, "feet"),
  12667. default: true
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/neos/front.svg",
  12680. extra: 1696 / 992,
  12681. bottom: 0.14
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(54, "cm"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(100, "m")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(10, "km")
  12698. },
  12699. {
  12700. name: "Megamacro+",
  12701. height: math.unit(100, "km")
  12702. },
  12703. {
  12704. name: "Gigamacro",
  12705. height: math.unit(100, "Mm")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(100, "Gm")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(100, "Em")
  12714. },
  12715. {
  12716. name: "Godly",
  12717. height: math.unit(10000, "Ym")
  12718. },
  12719. {
  12720. name: "Beyond Godly",
  12721. height: math.unit(25, "multiverses")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12727. {
  12728. feminine: {
  12729. height: math.unit(5, "feet"),
  12730. weight: math.unit(100, "lb"),
  12731. name: "Feminine",
  12732. image: {
  12733. source: "./media/characters/sammy-mouse/feminine.svg",
  12734. extra: 2526 / 2425,
  12735. bottom: 0.123
  12736. }
  12737. },
  12738. masculine: {
  12739. height: math.unit(5, "feet"),
  12740. weight: math.unit(100, "lb"),
  12741. name: "Masculine",
  12742. image: {
  12743. source: "./media/characters/sammy-mouse/masculine.svg",
  12744. extra: 2526 / 2425,
  12745. bottom: 0.123
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Micro",
  12752. height: math.unit(5, "inches")
  12753. },
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(5, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(60, "feet")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(4, "feet"),
  12770. weight: math.unit(50, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/kole/front.svg",
  12774. extra: 1423 / 1303,
  12775. bottom: 0.025
  12776. }
  12777. },
  12778. back: {
  12779. height: math.unit(4, "feet"),
  12780. weight: math.unit(50, "lb"),
  12781. name: "Back",
  12782. image: {
  12783. source: "./media/characters/kole/back.svg",
  12784. extra: 1426 / 1280,
  12785. bottom: 0.02
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(4, "feet"),
  12793. default: true
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(2.5, "feet"),
  12802. weight: math.unit(32, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/rufran/front.svg",
  12806. extra: 1313/885,
  12807. bottom: 94/1407
  12808. }
  12809. },
  12810. side: {
  12811. height: math.unit(2.5, "feet"),
  12812. weight: math.unit(32, "lb"),
  12813. name: "Side",
  12814. image: {
  12815. source: "./media/characters/rufran/side.svg",
  12816. extra: 1109/852,
  12817. bottom: 118/1227
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(2.5, "feet"),
  12822. weight: math.unit(32, "lb"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/rufran/back.svg",
  12826. extra: 1280/878,
  12827. bottom: 131/1411
  12828. }
  12829. },
  12830. mouth: {
  12831. height: math.unit(1.13, "feet"),
  12832. name: "Mouth",
  12833. image: {
  12834. source: "./media/characters/rufran/mouth.svg"
  12835. }
  12836. },
  12837. foot: {
  12838. height: math.unit(1.33, "feet"),
  12839. name: "Foot",
  12840. image: {
  12841. source: "./media/characters/rufran/foot.svg"
  12842. }
  12843. },
  12844. koboldFront: {
  12845. height: math.unit(2 + 6 / 12, "feet"),
  12846. weight: math.unit(20, "lb"),
  12847. name: "Front (Kobold)",
  12848. image: {
  12849. source: "./media/characters/rufran/kobold-front.svg",
  12850. extra: 2041 / 1839,
  12851. bottom: 0.055
  12852. }
  12853. },
  12854. koboldBack: {
  12855. height: math.unit(2 + 6 / 12, "feet"),
  12856. weight: math.unit(20, "lb"),
  12857. name: "Back (Kobold)",
  12858. image: {
  12859. source: "./media/characters/rufran/kobold-back.svg",
  12860. extra: 2054 / 1839,
  12861. bottom: 0.01
  12862. }
  12863. },
  12864. koboldHand: {
  12865. height: math.unit(0.2166, "meters"),
  12866. name: "Hand (Kobold)",
  12867. image: {
  12868. source: "./media/characters/rufran/kobold-hand.svg"
  12869. }
  12870. },
  12871. koboldFoot: {
  12872. height: math.unit(0.185, "meters"),
  12873. name: "Foot (Kobold)",
  12874. image: {
  12875. source: "./media/characters/rufran/kobold-foot.svg"
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Micro",
  12882. height: math.unit(1, "inch")
  12883. },
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(2 + 6 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Big",
  12891. height: math.unit(60, "feet")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(325, "feet")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(0.3, "meters"),
  12904. weight: math.unit(3.5, "kg"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/chip/front.svg",
  12908. extra: 748 / 674
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Micro",
  12915. height: math.unit(1, "inch"),
  12916. default: true
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12922. {
  12923. side: {
  12924. height: math.unit(2.3, "meters"),
  12925. weight: math.unit(3500, "lb"),
  12926. name: "Side",
  12927. image: {
  12928. source: "./media/characters/torvid/side.svg",
  12929. extra: 1972 / 722,
  12930. bottom: 0.035
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(2.3, "meters"),
  12938. default: true
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(2, "meters"),
  12947. weight: math.unit(150.5, "kg"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/susan/front.svg",
  12951. extra: 693 / 635,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(505, "miles"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/raindrops/front.svg",
  12973. extra: 2655 / 2461,
  12974. bottom: 49 / 2705
  12975. }
  12976. },
  12977. back: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Back",
  12981. image: {
  12982. source: "./media/characters/raindrops/back.svg",
  12983. extra: 2574 / 2400,
  12984. bottom: 65 / 2634
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(6, "inches")
  12992. },
  12993. {
  12994. name: "Normal",
  12995. height: math.unit(6 + 2 / 12, "feet")
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(131, "feet"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Megamacro",
  13004. height: math.unit(15, "miles")
  13005. },
  13006. {
  13007. name: "Gigamacro",
  13008. height: math.unit(4000, "miles")
  13009. },
  13010. {
  13011. name: "Teramacro",
  13012. height: math.unit(315000, "miles")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(2.794, "meters"),
  13021. weight: math.unit(325, "kg"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/tezwa/front.svg",
  13025. extra: 2083 / 1906,
  13026. bottom: 0.031
  13027. }
  13028. },
  13029. foot: {
  13030. height: math.unit(0.687, "meters"),
  13031. name: "Foot",
  13032. image: {
  13033. source: "./media/characters/tezwa/foot.svg"
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(9 + 2 / 12, "feet"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(58, "feet"),
  13050. weight: math.unit(89000, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/typhus/front.svg",
  13054. extra: 816 / 800,
  13055. bottom: 0.065
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(58, "feet"),
  13063. default: true
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(12, "feet"),
  13072. weight: math.unit(6, "tonnes"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/lyra-von-wulf/front.svg",
  13076. extra: 1,
  13077. bottom: 0.10
  13078. }
  13079. },
  13080. frontMecha: {
  13081. height: math.unit(12, "feet"),
  13082. weight: math.unit(12, "tonnes"),
  13083. name: "Front (Mecha)",
  13084. image: {
  13085. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13086. extra: 1,
  13087. bottom: 0.042
  13088. }
  13089. },
  13090. maw: {
  13091. height: math.unit(2.2, "feet"),
  13092. name: "Maw",
  13093. image: {
  13094. source: "./media/characters/lyra-von-wulf/maw.svg"
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(12, "feet"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Classic",
  13106. height: math.unit(50, "feet")
  13107. },
  13108. {
  13109. name: "Macro",
  13110. height: math.unit(500, "feet")
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(1, "mile")
  13115. },
  13116. {
  13117. name: "Gigamacro",
  13118. height: math.unit(400, "miles")
  13119. },
  13120. {
  13121. name: "Teramacro",
  13122. height: math.unit(22000, "miles")
  13123. },
  13124. {
  13125. name: "Solarmacro",
  13126. height: math.unit(8600000, "miles")
  13127. },
  13128. {
  13129. name: "Galactic",
  13130. height: math.unit(1057000, "lightyears")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(6 + 10 / 12, "feet"),
  13139. weight: math.unit(150, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/dixon/front.svg",
  13143. extra: 3361 / 3209,
  13144. bottom: 0.01
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(6 + 10 / 12, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Big",
  13156. height: math.unit(12, "meters")
  13157. },
  13158. {
  13159. name: "Macro",
  13160. height: math.unit(500, "meters")
  13161. },
  13162. {
  13163. name: "Megamacro",
  13164. height: math.unit(2, "km")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(185, "cm"),
  13173. weight: math.unit(68, "kg"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/kauko/front.svg",
  13177. extra: 1455 / 1421,
  13178. bottom: 0.03
  13179. }
  13180. },
  13181. back: {
  13182. height: math.unit(185, "cm"),
  13183. weight: math.unit(68, "kg"),
  13184. name: "Back",
  13185. image: {
  13186. source: "./media/characters/kauko/back.svg",
  13187. extra: 1455 / 1421,
  13188. bottom: 0.004
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(185, "cm"),
  13196. default: true
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "kg"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/varg/front.svg",
  13209. extra: 1108 / 1018,
  13210. bottom: 0.0375
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(5, "meters")
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(200, "meters")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(20, "kilometers")
  13226. },
  13227. {
  13228. name: "True Size",
  13229. height: math.unit(211, "km"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(1000, "km")
  13235. },
  13236. {
  13237. name: "Gigamacro+",
  13238. height: math.unit(8000, "km")
  13239. },
  13240. {
  13241. name: "Teramacro",
  13242. height: math.unit(1000000, "km")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(7 + 7 / 12, "feet"),
  13251. weight: math.unit(267, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/dayza/front.svg",
  13255. extra: 1262 / 1200,
  13256. bottom: 0.035
  13257. }
  13258. },
  13259. side: {
  13260. height: math.unit(7 + 7 / 12, "feet"),
  13261. weight: math.unit(267, "lb"),
  13262. name: "Side",
  13263. image: {
  13264. source: "./media/characters/dayza/side.svg",
  13265. extra: 1295 / 1245,
  13266. bottom: 0.05
  13267. }
  13268. },
  13269. back: {
  13270. height: math.unit(7 + 7 / 12, "feet"),
  13271. weight: math.unit(267, "lb"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/dayza/back.svg",
  13275. extra: 1241 / 1170
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(7 + 7 / 12, "feet"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(155, "feet")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6 + 5 / 12, "feet"),
  13296. weight: math.unit(160, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/xanthos/front.svg",
  13300. extra: 1,
  13301. bottom: 0.04
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6 + 5 / 12, "feet"),
  13306. weight: math.unit(160, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/xanthos/back.svg",
  13310. extra: 1,
  13311. bottom: 0.03
  13312. }
  13313. },
  13314. hand: {
  13315. height: math.unit(0.928, "feet"),
  13316. name: "Hand",
  13317. image: {
  13318. source: "./media/characters/xanthos/hand.svg"
  13319. }
  13320. },
  13321. foot: {
  13322. height: math.unit(1.286, "feet"),
  13323. name: "Foot",
  13324. image: {
  13325. source: "./media/characters/xanthos/foot.svg"
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(6 + 5 / 12, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Normal+",
  13337. height: math.unit(6, "meters")
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(40, "feet")
  13342. },
  13343. {
  13344. name: "Macro+",
  13345. height: math.unit(200, "meters")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(20, "km")
  13350. },
  13351. {
  13352. name: "Megamacro+",
  13353. height: math.unit(100, "km")
  13354. },
  13355. {
  13356. name: "Gigamacro",
  13357. height: math.unit(200, "megameters")
  13358. },
  13359. {
  13360. name: "Gigamacro+",
  13361. height: math.unit(1.5, "gigameters")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6 + 3 / 12, "feet"),
  13370. weight: math.unit(215, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/grynn/front.svg",
  13374. extra: 4627 / 4209,
  13375. bottom: 0.047
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Micro",
  13382. height: math.unit(6, "inches")
  13383. },
  13384. {
  13385. name: "Normal",
  13386. height: math.unit(6 + 3 / 12, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Big",
  13391. height: math.unit(104, "feet")
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(944, "feet")
  13396. },
  13397. {
  13398. name: "Macro+",
  13399. height: math.unit(9480, "feet")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(78752, "feet")
  13404. },
  13405. {
  13406. name: "Megamacro+",
  13407. height: math.unit(630128, "feet")
  13408. },
  13409. {
  13410. name: "Megamacro++",
  13411. height: math.unit(3150695, "feet")
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(7 + 5 / 12, "feet"),
  13420. weight: math.unit(450, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/mocha-aura/front.svg",
  13424. extra: 1907 / 1817,
  13425. bottom: 0.04
  13426. }
  13427. },
  13428. back: {
  13429. height: math.unit(7 + 5 / 12, "feet"),
  13430. weight: math.unit(450, "lb"),
  13431. name: "Back",
  13432. image: {
  13433. source: "./media/characters/mocha-aura/back.svg",
  13434. extra: 1900 / 1825,
  13435. bottom: 0.045
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Nano",
  13442. height: math.unit(1, "nm")
  13443. },
  13444. {
  13445. name: "Megamicro",
  13446. height: math.unit(1, "mm")
  13447. },
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(3, "inches")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(7 + 5 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(30, "feet")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(3500, "feet")
  13464. },
  13465. {
  13466. name: "Teramacro",
  13467. height: math.unit(500000, "miles")
  13468. },
  13469. {
  13470. name: "Petamacro",
  13471. height: math.unit(50000000000000000, "parsecs")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/ilisha-devya/front.svg",
  13484. extra: 1053/1049,
  13485. bottom: 270/1323
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/ilisha-devya/back.svg",
  13494. extra: 1131/1128,
  13495. bottom: 39/1170
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Macro",
  13502. height: math.unit(500, "feet"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Megamacro",
  13507. height: math.unit(10, "miles")
  13508. },
  13509. {
  13510. name: "Gigamacro",
  13511. height: math.unit(100000, "miles")
  13512. },
  13513. {
  13514. name: "Examacro",
  13515. height: math.unit(1e9, "lightyears")
  13516. },
  13517. {
  13518. name: "Omniversal",
  13519. height: math.unit(1e33, "lightyears")
  13520. },
  13521. {
  13522. name: "Beyond Infinite",
  13523. height: math.unit(1e100, "lightyears")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13529. {
  13530. Side: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Side",
  13534. image: {
  13535. source: "./media/characters/mira/side.svg",
  13536. extra: 900 / 799,
  13537. bottom: 0.02
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Human Size",
  13544. height: math.unit(6, "feet")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(100, "feet"),
  13549. default: true
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(10, "miles")
  13554. },
  13555. {
  13556. name: "Gigamacro",
  13557. height: math.unit(25000, "miles")
  13558. },
  13559. {
  13560. name: "Teramacro",
  13561. height: math.unit(300, "AU")
  13562. },
  13563. {
  13564. name: "Full Size",
  13565. height: math.unit(4.5e10, "lightyears")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/holly/front.svg",
  13578. extra: 639 / 606
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/holly/back.svg",
  13587. extra: 623 / 598
  13588. }
  13589. },
  13590. frontWorking: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Front (Working)",
  13594. image: {
  13595. source: "./media/characters/holly/front-working.svg",
  13596. extra: 607 / 577,
  13597. bottom: 0.048
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(12 + 3 / 12, "feet"),
  13605. default: true
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/porter/front.svg",
  13618. extra: 1,
  13619. bottom: 0.01
  13620. }
  13621. },
  13622. frontRobes: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front (Robes)",
  13626. image: {
  13627. source: "./media/characters/porter/front-robes.svg",
  13628. extra: 1.01,
  13629. bottom: 0.01
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(11 + 9 / 12, "feet"),
  13637. default: true
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13643. {
  13644. legendary: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Legendary",
  13648. image: {
  13649. source: "./media/characters/lucy/legendary.svg",
  13650. extra: 1355 / 1100,
  13651. bottom: 0.045
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Legendary",
  13658. height: math.unit(86882 * 2, "miles"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/drusilla/front.svg",
  13672. extra: 678 / 635,
  13673. bottom: 0.03
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/drusilla/back.svg",
  13682. extra: 678 / 635,
  13683. bottom: 0.005
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(100, "feet")
  13691. },
  13692. {
  13693. name: "Canon Height",
  13694. height: math.unit(2000, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(180, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/renard-thatch/front.svg",
  13708. extra: 2411 / 2275,
  13709. bottom: 0.01
  13710. }
  13711. },
  13712. frontPosing: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(180, "lb"),
  13715. name: "Front (Posing)",
  13716. image: {
  13717. source: "./media/characters/renard-thatch/front-posing.svg",
  13718. extra: 2381 / 2261,
  13719. bottom: 0.01
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(180, "lb"),
  13725. name: "Back",
  13726. image: {
  13727. source: "./media/characters/renard-thatch/back.svg",
  13728. extra: 2428 / 2288
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Micro",
  13735. height: math.unit(3, "inches")
  13736. },
  13737. {
  13738. name: "Default",
  13739. height: math.unit(6, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(75, "feet")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(1450, "feet"),
  13753. weight: math.unit(1.21e6, "tons"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/sekvra/front.svg",
  13757. extra: 1193/1190,
  13758. bottom: 78/1271
  13759. }
  13760. },
  13761. side: {
  13762. height: math.unit(1450, "feet"),
  13763. weight: math.unit(1.21e6, "tons"),
  13764. name: "Side",
  13765. image: {
  13766. source: "./media/characters/sekvra/side.svg",
  13767. extra: 1193/1190,
  13768. bottom: 52/1245
  13769. }
  13770. },
  13771. back: {
  13772. height: math.unit(1450, "feet"),
  13773. weight: math.unit(1.21e6, "tons"),
  13774. name: "Back",
  13775. image: {
  13776. source: "./media/characters/sekvra/back.svg",
  13777. extra: 1219/1216,
  13778. bottom: 21/1240
  13779. }
  13780. },
  13781. frontClothed: {
  13782. height: math.unit(1450, "feet"),
  13783. weight: math.unit(1.21e6, "tons"),
  13784. name: "Front (Clothed)",
  13785. image: {
  13786. source: "./media/characters/sekvra/front-clothed.svg",
  13787. extra: 1192/1189,
  13788. bottom: 79/1271
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(1450, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Megamacro",
  13800. height: math.unit(15000, "feet")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/carmine/front.svg",
  13813. extra: 1,
  13814. bottom: 0.035
  13815. }
  13816. },
  13817. frontArmor: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front (Armor)",
  13821. image: {
  13822. source: "./media/characters/carmine/front-armor.svg",
  13823. extra: 1,
  13824. bottom: 0.035
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Large",
  13831. height: math.unit(1, "mile")
  13832. },
  13833. {
  13834. name: "Huge",
  13835. height: math.unit(40, "miles"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Colossal",
  13840. height: math.unit(2500, "miles")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/elyssia/front.svg",
  13853. extra: 2201 / 2035,
  13854. bottom: 0.05
  13855. }
  13856. },
  13857. frontClothed: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Front (Clothed)",
  13861. image: {
  13862. source: "./media/characters/elyssia/front-clothed.svg",
  13863. extra: 2201 / 2035,
  13864. bottom: 0.05
  13865. }
  13866. },
  13867. back: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Back",
  13871. image: {
  13872. source: "./media/characters/elyssia/back.svg",
  13873. extra: 2201 / 2035,
  13874. bottom: 0.013
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Smaller",
  13881. height: math.unit(150, "feet")
  13882. },
  13883. {
  13884. name: "Standard",
  13885. height: math.unit(1400, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Distracted",
  13890. height: math.unit(15000, "feet")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(7 + 4/12, "feet"),
  13899. weight: math.unit(690, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/geno-maxwell/front.svg",
  13903. extra: 984/856,
  13904. bottom: 87/1071
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(7 + 4/12, "feet"),
  13909. weight: math.unit(690, "lb"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/geno-maxwell/back.svg",
  13913. extra: 981/854,
  13914. bottom: 57/1038
  13915. }
  13916. },
  13917. frontCostume: {
  13918. height: math.unit(7 + 4/12, "feet"),
  13919. weight: math.unit(690, "lb"),
  13920. name: "Front (Costume)",
  13921. image: {
  13922. source: "./media/characters/geno-maxwell/front-costume.svg",
  13923. extra: 984/856,
  13924. bottom: 87/1071
  13925. }
  13926. },
  13927. backcostume: {
  13928. height: math.unit(7 + 4/12, "feet"),
  13929. weight: math.unit(690, "lb"),
  13930. name: "Back (Costume)",
  13931. image: {
  13932. source: "./media/characters/geno-maxwell/back-costume.svg",
  13933. extra: 981/854,
  13934. bottom: 57/1038
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Micro",
  13941. height: math.unit(3, "inches")
  13942. },
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(7 + 4 / 12, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(220, "feet")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(11, "miles")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(7 + 4/12, "feet"),
  13963. weight: math.unit(750, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/regena-maxwell/front.svg",
  13967. extra: 984/856,
  13968. bottom: 87/1071
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(7 + 4/12, "feet"),
  13973. weight: math.unit(750, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/regena-maxwell/back.svg",
  13977. extra: 981/854,
  13978. bottom: 57/1038
  13979. }
  13980. },
  13981. frontCostume: {
  13982. height: math.unit(7 + 4/12, "feet"),
  13983. weight: math.unit(750, "lb"),
  13984. name: "Front (Costume)",
  13985. image: {
  13986. source: "./media/characters/regena-maxwell/front-costume.svg",
  13987. extra: 984/856,
  13988. bottom: 87/1071
  13989. }
  13990. },
  13991. backcostume: {
  13992. height: math.unit(7 + 4/12, "feet"),
  13993. weight: math.unit(750, "lb"),
  13994. name: "Back (Costume)",
  13995. image: {
  13996. source: "./media/characters/regena-maxwell/back-costume.svg",
  13997. extra: 981/854,
  13998. bottom: 57/1038
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(7 + 4 / 12, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(220, "feet")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(11, "miles")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(150, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14027. extra: 860 / 690,
  14028. bottom: 0.03
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(1.7, "meters"),
  14036. default: true
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(150, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/quilly/front.svg",
  14049. extra: 890 / 776
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Gigamacro",
  14056. height: math.unit(404090, "miles"),
  14057. default: true
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(7 + 8 / 12, "feet"),
  14066. weight: math.unit(350, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/tempest/front.svg",
  14070. extra: 1175 / 1086,
  14071. bottom: 0.02
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(7 + 8 / 12, "feet"),
  14079. default: true
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14085. {
  14086. side: {
  14087. height: math.unit(4 + 5 / 12, "feet"),
  14088. weight: math.unit(80, "lb"),
  14089. name: "Side",
  14090. image: {
  14091. source: "./media/characters/rodger/side.svg",
  14092. extra: 1235 / 1118
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Micro",
  14099. height: math.unit(1, "inch")
  14100. },
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(4 + 5 / 12, "feet"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Macro",
  14108. height: math.unit(120, "feet")
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(6, "feet"),
  14117. weight: math.unit(150, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/danyel/front.svg",
  14121. extra: 1185 / 1123,
  14122. bottom: 0.05
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Shrunken",
  14129. height: math.unit(0.5, "mm")
  14130. },
  14131. {
  14132. name: "Micro",
  14133. height: math.unit(1, "mm"),
  14134. default: true
  14135. },
  14136. {
  14137. name: "Upsized",
  14138. height: math.unit(5 + 5 / 12, "feet")
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(5 + 6 / 12, "feet"),
  14147. weight: math.unit(200, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/vivian-bijoux/front.svg",
  14151. extra: 1217/1209,
  14152. bottom: 76/1293
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(5 + 6 / 12, "feet"),
  14157. weight: math.unit(200, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/vivian-bijoux/back.svg",
  14161. extra: 1214/1208,
  14162. bottom: 51/1265
  14163. }
  14164. },
  14165. dressed: {
  14166. height: math.unit(5 + 6 / 12, "feet"),
  14167. weight: math.unit(200, "lb"),
  14168. name: "Dressed",
  14169. image: {
  14170. source: "./media/characters/vivian-bijoux/dressed.svg",
  14171. extra: 1217/1209,
  14172. bottom: 76/1293
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(5 + 6 / 12, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Bad Dream",
  14184. height: math.unit(500, "feet")
  14185. },
  14186. {
  14187. name: "Nightmare",
  14188. height: math.unit(500, "miles")
  14189. },
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(6 + 1 / 12, "feet"),
  14197. weight: math.unit(260, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/zeta/front.svg",
  14201. extra: 1968 / 1889,
  14202. bottom: 0.06
  14203. }
  14204. },
  14205. back: {
  14206. height: math.unit(6 + 1 / 12, "feet"),
  14207. weight: math.unit(260, "lb"),
  14208. name: "Back",
  14209. image: {
  14210. source: "./media/characters/zeta/back.svg",
  14211. extra: 1944 / 1858,
  14212. bottom: 0.03
  14213. }
  14214. },
  14215. hand: {
  14216. height: math.unit(1.112, "feet"),
  14217. name: "Hand",
  14218. image: {
  14219. source: "./media/characters/zeta/hand.svg"
  14220. }
  14221. },
  14222. foot: {
  14223. height: math.unit(1.48, "feet"),
  14224. name: "Foot",
  14225. image: {
  14226. source: "./media/characters/zeta/foot.svg"
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Micro",
  14233. height: math.unit(6, "inches")
  14234. },
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(6 + 1 / 12, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(20, "feet")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/jamie-larsen/front.svg",
  14255. extra: 962 / 933,
  14256. bottom: 0.02
  14257. }
  14258. },
  14259. back: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Back",
  14263. image: {
  14264. source: "./media/characters/jamie-larsen/back.svg",
  14265. extra: 997 / 946
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Macro",
  14272. height: math.unit(28 + 7 / 12, "feet"),
  14273. default: true
  14274. },
  14275. {
  14276. name: "Macro+",
  14277. height: math.unit(180, "feet")
  14278. },
  14279. {
  14280. name: "Megamacro",
  14281. height: math.unit(10, "miles")
  14282. },
  14283. {
  14284. name: "Gigamacro",
  14285. height: math.unit(200000, "miles")
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(120, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/vance/front.svg",
  14298. extra: 1980 / 1890,
  14299. bottom: 0.09
  14300. }
  14301. },
  14302. back: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(120, "lb"),
  14305. name: "Back",
  14306. image: {
  14307. source: "./media/characters/vance/back.svg",
  14308. extra: 2081 / 1994,
  14309. bottom: 0.014
  14310. }
  14311. },
  14312. hand: {
  14313. height: math.unit(0.88, "feet"),
  14314. name: "Hand",
  14315. image: {
  14316. source: "./media/characters/vance/hand.svg"
  14317. }
  14318. },
  14319. foot: {
  14320. height: math.unit(0.64, "feet"),
  14321. name: "Foot",
  14322. image: {
  14323. source: "./media/characters/vance/foot.svg"
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Small",
  14330. height: math.unit(90, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(100, "meters")
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(15, "miles")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(6, "feet"),
  14348. weight: math.unit(180, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/xochitl/front.svg",
  14352. extra: 2297 / 2261,
  14353. bottom: 0.065
  14354. }
  14355. },
  14356. back: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(180, "lb"),
  14359. name: "Back",
  14360. image: {
  14361. source: "./media/characters/xochitl/back.svg",
  14362. extra: 2386 / 2354,
  14363. bottom: 0.01
  14364. }
  14365. },
  14366. foot: {
  14367. height: math.unit(6 / 5 * 1.15, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Foot",
  14370. image: {
  14371. source: "./media/characters/xochitl/foot.svg"
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(80, "feet")
  14379. },
  14380. {
  14381. name: "Macro+",
  14382. height: math.unit(400, "feet"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(80000, "miles")
  14388. },
  14389. {
  14390. name: "Gigamacro+",
  14391. height: math.unit(400000, "miles")
  14392. },
  14393. {
  14394. name: "Teramacro",
  14395. height: math.unit(300, "AU")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/vincent/front.svg",
  14408. extra: 1130 / 1080,
  14409. bottom: 0.055
  14410. }
  14411. },
  14412. beak: {
  14413. height: math.unit(6 * 0.1, "feet"),
  14414. name: "Beak",
  14415. image: {
  14416. source: "./media/characters/vincent/beak.svg"
  14417. }
  14418. },
  14419. hand: {
  14420. height: math.unit(6 * 0.85, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Hand",
  14423. image: {
  14424. source: "./media/characters/vincent/hand.svg"
  14425. }
  14426. },
  14427. foot: {
  14428. height: math.unit(6 * 0.19, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Foot",
  14431. image: {
  14432. source: "./media/characters/vincent/foot.svg"
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Base",
  14439. height: math.unit(6 + 5 / 12, "feet"),
  14440. default: true
  14441. },
  14442. {
  14443. name: "Macro",
  14444. height: math.unit(300, "feet")
  14445. },
  14446. {
  14447. name: "Megamacro",
  14448. height: math.unit(2, "miles")
  14449. },
  14450. {
  14451. name: "Gigamacro",
  14452. height: math.unit(1000, "miles")
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(2, "meters"),
  14461. weight: math.unit(500, "kg"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/coatl/front.svg",
  14465. extra: 3948 / 3500,
  14466. bottom: 0.082
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(4, "meters")
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(100, "meters"),
  14478. default: true
  14479. },
  14480. {
  14481. name: "Macro+",
  14482. height: math.unit(300, "meters")
  14483. },
  14484. {
  14485. name: "Megamacro",
  14486. height: math.unit(3, "gigameters")
  14487. },
  14488. {
  14489. name: "Megamacro+",
  14490. height: math.unit(300, "terameters")
  14491. },
  14492. {
  14493. name: "Megamacro++",
  14494. height: math.unit(3, "lightyears")
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(50, "kg"),
  14504. name: "front",
  14505. image: {
  14506. source: "./media/characters/shiroryu/front.svg",
  14507. extra: 1990 / 1935
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Mortal Mingling",
  14514. height: math.unit(3, "meters")
  14515. },
  14516. {
  14517. name: "Kaiju-ish",
  14518. height: math.unit(250, "meters")
  14519. },
  14520. {
  14521. name: "Somewhat Godly",
  14522. height: math.unit(400, "km"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Planetary",
  14527. height: math.unit(300, "megameters")
  14528. },
  14529. {
  14530. name: "Galaxy-dwarfing",
  14531. height: math.unit(450, "kiloparsecs")
  14532. },
  14533. {
  14534. name: "Universe Eater",
  14535. height: math.unit(150, "gigaparsecs")
  14536. },
  14537. {
  14538. name: "Almost Immeasurable",
  14539. height: math.unit(1.3e266, "yottaparsecs")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/umeko/front.svg",
  14552. extra: 1,
  14553. bottom: 0.019
  14554. }
  14555. },
  14556. frontArmored: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Front (Armored)",
  14560. image: {
  14561. source: "./media/characters/umeko/front-armored.svg",
  14562. extra: 1,
  14563. bottom: 0.021
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(220, "feet"),
  14571. default: true
  14572. },
  14573. {
  14574. name: "Guardian Dragon",
  14575. height: math.unit(50, "miles")
  14576. },
  14577. {
  14578. name: "Cosmic",
  14579. height: math.unit(800000, "miles")
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/cassidy/front.svg",
  14592. extra: 810/808,
  14593. bottom: 41/851
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Canon Height",
  14600. height: math.unit(120, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Macro+",
  14605. height: math.unit(400, "feet")
  14606. },
  14607. {
  14608. name: "Macro++",
  14609. height: math.unit(4000, "feet")
  14610. },
  14611. {
  14612. name: "Megamacro",
  14613. height: math.unit(3, "miles")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(150, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/isaac/front.svg",
  14626. extra: 896 / 815,
  14627. bottom: 0.11
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Human Size",
  14634. height: math.unit(8, "feet"),
  14635. default: true
  14636. },
  14637. {
  14638. name: "Macro",
  14639. height: math.unit(400, "feet")
  14640. },
  14641. {
  14642. name: "Megamacro",
  14643. height: math.unit(50, "miles")
  14644. },
  14645. {
  14646. name: "Canon Height",
  14647. height: math.unit(200, "AU")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(72, "kg"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/sleekit/front.svg",
  14660. extra: 4693 / 4487,
  14661. bottom: 0.012
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Minimum Height",
  14668. height: math.unit(10, "meters")
  14669. },
  14670. {
  14671. name: "Smaller",
  14672. height: math.unit(25, "meters")
  14673. },
  14674. {
  14675. name: "Larger",
  14676. height: math.unit(38, "meters"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Maximum height",
  14681. height: math.unit(100, "meters")
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/nillia/front.svg",
  14694. extra: 2195 / 2037,
  14695. bottom: 0.005
  14696. }
  14697. },
  14698. back: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Back",
  14702. image: {
  14703. source: "./media/characters/nillia/back.svg",
  14704. extra: 2195 / 2037,
  14705. bottom: 0.005
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Canon Height",
  14712. height: math.unit(489, "feet"),
  14713. default: true
  14714. }
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(150, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/mesmyriza/front.svg",
  14726. extra: 2067 / 1784,
  14727. bottom: 0.035
  14728. }
  14729. },
  14730. foot: {
  14731. height: math.unit(6 / (250 / 35), "feet"),
  14732. name: "Foot",
  14733. image: {
  14734. source: "./media/characters/mesmyriza/foot.svg"
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(457, "meters"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(8, "megameters")
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(6, "feet"),
  14755. weight: math.unit(250, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/saudade/front.svg",
  14759. extra: 1172 / 1139,
  14760. bottom: 0.035
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Micro",
  14767. height: math.unit(3, "inches")
  14768. },
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(6, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(50, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(2800, "feet")
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(5 + 4 / 12, "feet"),
  14789. weight: math.unit(100, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/keireer/front.svg",
  14793. extra: 716 / 666,
  14794. bottom: 0.05
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(5 + 4 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(90, "kg"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/mirja/front.svg",
  14815. extra: 1789 / 1683,
  14816. bottom: 0.05
  14817. }
  14818. },
  14819. frontDressed: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(90, "lb"),
  14822. name: "Front (Dressed)",
  14823. image: {
  14824. source: "./media/characters/mirja/front-dressed.svg",
  14825. extra: 1789 / 1683,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(90, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/mirja/back.svg",
  14835. extra: 953 / 917,
  14836. bottom: 0.017
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "\"Incognito\"",
  14843. height: math.unit(3, "meters")
  14844. },
  14845. {
  14846. name: "Strolling Size",
  14847. height: math.unit(15, "km")
  14848. },
  14849. {
  14850. name: "Larger Strolling Size",
  14851. height: math.unit(400, "km")
  14852. },
  14853. {
  14854. name: "Preferred Size",
  14855. height: math.unit(5000, "km")
  14856. },
  14857. {
  14858. name: "True Size",
  14859. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(15, "feet"),
  14869. weight: math.unit(880, "kg"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/nightraver/front.svg",
  14873. extra: 2444 / 2160,
  14874. bottom: 0.027
  14875. }
  14876. },
  14877. back: {
  14878. height: math.unit(15, "feet"),
  14879. weight: math.unit(880, "kg"),
  14880. name: "Back",
  14881. image: {
  14882. source: "./media/characters/nightraver/back.svg",
  14883. extra: 2309 / 2180,
  14884. bottom: 0.005
  14885. }
  14886. },
  14887. sole: {
  14888. height: math.unit(2.878, "feet"),
  14889. name: "Sole",
  14890. image: {
  14891. source: "./media/characters/nightraver/sole.svg"
  14892. }
  14893. },
  14894. foot: {
  14895. height: math.unit(2.285, "feet"),
  14896. name: "Foot",
  14897. image: {
  14898. source: "./media/characters/nightraver/foot.svg"
  14899. }
  14900. },
  14901. maw: {
  14902. height: math.unit(2.67, "feet"),
  14903. name: "Maw",
  14904. image: {
  14905. source: "./media/characters/nightraver/maw.svg"
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Micro",
  14912. height: math.unit(1, "cm")
  14913. },
  14914. {
  14915. name: "Normal",
  14916. height: math.unit(15, "feet"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Macro",
  14921. height: math.unit(300, "feet")
  14922. },
  14923. {
  14924. name: "Megamacro",
  14925. height: math.unit(300, "miles")
  14926. },
  14927. {
  14928. name: "Gigamacro",
  14929. height: math.unit(10000, "miles")
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14935. {
  14936. side: {
  14937. height: math.unit(2, "inches"),
  14938. weight: math.unit(5, "grams"),
  14939. name: "Side",
  14940. image: {
  14941. source: "./media/characters/arc/side.svg"
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Micro",
  14948. height: math.unit(2, "inches"),
  14949. default: true
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(1.1938, "meters"),
  14958. weight: math.unit(54, "kg"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/nebula-shahar/front.svg",
  14962. extra: 1642 / 1436,
  14963. bottom: 0.06
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Megamicro",
  14970. height: math.unit(0.3, "mm")
  14971. },
  14972. {
  14973. name: "Micro",
  14974. height: math.unit(3, "cm")
  14975. },
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(138, "cm"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(30, "m")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(5.24, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/shayla/front.svg",
  14996. extra: 1512 / 1414,
  14997. bottom: 0.01
  14998. }
  14999. },
  15000. back: {
  15001. height: math.unit(5.24, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Back",
  15004. image: {
  15005. source: "./media/characters/shayla/back.svg",
  15006. extra: 1512 / 1414
  15007. }
  15008. },
  15009. hand: {
  15010. height: math.unit(0.7781496062992126, "feet"),
  15011. name: "Hand",
  15012. image: {
  15013. source: "./media/characters/shayla/hand.svg"
  15014. }
  15015. },
  15016. foot: {
  15017. height: math.unit(1.4206036745406823, "feet"),
  15018. name: "Foot",
  15019. image: {
  15020. source: "./media/characters/shayla/foot.svg"
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Micro",
  15027. height: math.unit(0.32, "feet")
  15028. },
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(5.24, "feet"),
  15032. default: true
  15033. },
  15034. {
  15035. name: "Macro",
  15036. height: math.unit(492.12, "feet")
  15037. },
  15038. {
  15039. name: "Megamacro",
  15040. height: math.unit(186.41, "miles")
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(2.2, "m"),
  15049. weight: math.unit(120, "kg"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/pia-jr/front.svg",
  15053. extra: 1000 / 970,
  15054. bottom: 0.035
  15055. }
  15056. },
  15057. hand: {
  15058. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15059. name: "Hand",
  15060. image: {
  15061. source: "./media/characters/pia-jr/hand.svg"
  15062. }
  15063. },
  15064. paw: {
  15065. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15066. name: "Paw",
  15067. image: {
  15068. source: "./media/characters/pia-jr/paw.svg"
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Micro",
  15075. height: math.unit(1.2, "cm")
  15076. },
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(2.2, "m"),
  15080. default: true
  15081. },
  15082. {
  15083. name: "Macro",
  15084. height: math.unit(180, "m")
  15085. },
  15086. {
  15087. name: "Megamacro",
  15088. height: math.unit(420, "km")
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(2, "m"),
  15097. weight: math.unit(115, "kg"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/pia-sr/front.svg",
  15101. extra: 760 / 730,
  15102. bottom: 0.015
  15103. }
  15104. },
  15105. back: {
  15106. height: math.unit(2, "m"),
  15107. weight: math.unit(115, "kg"),
  15108. name: "Back",
  15109. image: {
  15110. source: "./media/characters/pia-sr/back.svg",
  15111. extra: 760 / 730,
  15112. bottom: 0.01
  15113. }
  15114. },
  15115. hand: {
  15116. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15117. name: "Hand",
  15118. image: {
  15119. source: "./media/characters/pia-sr/hand.svg"
  15120. }
  15121. },
  15122. foot: {
  15123. height: math.unit(1.83, "feet"),
  15124. name: "Foot",
  15125. image: {
  15126. source: "./media/characters/pia-sr/foot.svg"
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Micro",
  15133. height: math.unit(88, "mm")
  15134. },
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(2, "m"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(200, "m")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(420, "km")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(8 + 2 / 12, "feet"),
  15155. weight: math.unit(300, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/kibibyte/front.svg",
  15159. extra: 2221 / 2098,
  15160. bottom: 0.04
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(8 + 2 / 12, "feet"),
  15168. default: true
  15169. },
  15170. {
  15171. name: "Socialable Macro",
  15172. height: math.unit(50, "feet")
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(300, "feet")
  15177. },
  15178. {
  15179. name: "Megamacro",
  15180. height: math.unit(500, "miles")
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(150, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/felix/front.svg",
  15193. extra: 762 / 722,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. frontClothed: {
  15198. height: math.unit(6, "feet"),
  15199. weight: math.unit(150, "lb"),
  15200. name: "Front (Clothed)",
  15201. image: {
  15202. source: "./media/characters/felix/front-clothed.svg",
  15203. extra: 762 / 722,
  15204. bottom: 0.02
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6 + 8 / 12, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(2600, "feet")
  15217. },
  15218. {
  15219. name: "Megamacro",
  15220. height: math.unit(450, "miles")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6 + 1 / 12, "feet"),
  15229. weight: math.unit(250, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/tobo/front.svg",
  15233. extra: 608 / 586,
  15234. bottom: 0.023
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(6 + 1 / 12, "feet"),
  15239. weight: math.unit(250, "lb"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/tobo/back.svg",
  15243. extra: 608 / 586
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Nano",
  15250. height: math.unit(2, "nm")
  15251. },
  15252. {
  15253. name: "Megamicro",
  15254. height: math.unit(0.1, "mm")
  15255. },
  15256. {
  15257. name: "Micro",
  15258. height: math.unit(1, "inch"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Human-sized",
  15263. height: math.unit(6 + 1 / 12, "feet")
  15264. },
  15265. {
  15266. name: "Macro",
  15267. height: math.unit(250, "feet")
  15268. },
  15269. {
  15270. name: "Megamacro",
  15271. height: math.unit(75, "miles")
  15272. },
  15273. {
  15274. name: "Texas-sized",
  15275. height: math.unit(750, "miles")
  15276. },
  15277. {
  15278. name: "Teramacro",
  15279. height: math.unit(50000, "miles")
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(269, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/danny-kapowsky/front.svg",
  15292. extra: 766 / 736,
  15293. bottom: 0.044
  15294. }
  15295. },
  15296. back: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(269, "lb"),
  15299. name: "Back",
  15300. image: {
  15301. source: "./media/characters/danny-kapowsky/back.svg",
  15302. extra: 797 / 760,
  15303. bottom: 0.025
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Macro",
  15310. height: math.unit(150, "feet"),
  15311. default: true
  15312. },
  15313. {
  15314. name: "Macro+",
  15315. height: math.unit(200, "feet")
  15316. },
  15317. {
  15318. name: "Macro++",
  15319. height: math.unit(300, "feet")
  15320. },
  15321. {
  15322. name: "Macro+++",
  15323. height: math.unit(400, "feet")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15329. {
  15330. side: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(170, "lb"),
  15333. name: "Side",
  15334. image: {
  15335. source: "./media/characters/finn/side.svg",
  15336. extra: 1953 / 1807,
  15337. bottom: 0.057
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Megamacro",
  15344. height: math.unit(14445, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(5 + 6 / 12, "feet"),
  15354. weight: math.unit(125, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/roy/front.svg",
  15358. extra: 1,
  15359. bottom: 0.11
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Micro",
  15366. height: math.unit(3, "inches"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(5 + 6 / 12, "feet")
  15372. },
  15373. {
  15374. name: "Lesser Macro",
  15375. height: math.unit(60, "feet")
  15376. },
  15377. {
  15378. name: "Greater Macro",
  15379. height: math.unit(120, "feet")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(100, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/aevsivs/front.svg",
  15392. extra: 1,
  15393. bottom: 0.03
  15394. }
  15395. },
  15396. back: {
  15397. height: math.unit(6, "feet"),
  15398. weight: math.unit(100, "lb"),
  15399. name: "Back",
  15400. image: {
  15401. source: "./media/characters/aevsivs/back.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Micro",
  15408. height: math.unit(2, "inches"),
  15409. default: true
  15410. },
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(5, "feet")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(5 + 7 / 12, "feet"),
  15422. weight: math.unit(159, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/hildegard/front.svg",
  15426. extra: 289 / 269,
  15427. bottom: 7.63 / 297.8
  15428. }
  15429. },
  15430. back: {
  15431. height: math.unit(5 + 7 / 12, "feet"),
  15432. weight: math.unit(159, "lb"),
  15433. name: "Back",
  15434. image: {
  15435. source: "./media/characters/hildegard/back.svg",
  15436. extra: 280 / 260,
  15437. bottom: 2.3 / 282
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(5 + 7 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15451. {
  15452. bernard: {
  15453. height: math.unit(2 + 7 / 12, "feet"),
  15454. weight: math.unit(66, "lb"),
  15455. name: "Bernard",
  15456. rename: true,
  15457. image: {
  15458. source: "./media/characters/bernard-wilder/bernard.svg",
  15459. extra: 192 / 128,
  15460. bottom: 0.05
  15461. }
  15462. },
  15463. wilder: {
  15464. height: math.unit(5 + 8 / 12, "feet"),
  15465. weight: math.unit(143, "lb"),
  15466. name: "Wilder",
  15467. rename: true,
  15468. image: {
  15469. source: "./media/characters/bernard-wilder/wilder.svg",
  15470. extra: 361 / 312,
  15471. bottom: 0.02
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(2 + 7 / 12, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15485. {
  15486. anthro: {
  15487. height: math.unit(6 + 1 / 12, "feet"),
  15488. weight: math.unit(155, "lb"),
  15489. name: "Anthro",
  15490. image: {
  15491. source: "./media/characters/hearth/anthro.svg",
  15492. extra: 1178/1136,
  15493. bottom: 28/1206
  15494. }
  15495. },
  15496. feral: {
  15497. height: math.unit(3.78, "feet"),
  15498. weight: math.unit(35, "kg"),
  15499. name: "Feral",
  15500. image: {
  15501. source: "./media/characters/hearth/feral.svg",
  15502. extra: 153 / 135,
  15503. bottom: 0.03
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(6 + 1 / 12, "feet"),
  15511. default: true
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(182, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/ingrid/front.svg",
  15524. extra: 294 / 268,
  15525. bottom: 0.027
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Normal",
  15532. height: math.unit(6, "feet"),
  15533. default: true
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15539. {
  15540. eevee: {
  15541. height: math.unit(2 + 10 / 12, "feet"),
  15542. weight: math.unit(86, "lb"),
  15543. name: "Malgam",
  15544. image: {
  15545. source: "./media/characters/malgam/eevee.svg",
  15546. extra: 952/784,
  15547. bottom: 38/990
  15548. }
  15549. },
  15550. sylveon: {
  15551. height: math.unit(4, "feet"),
  15552. weight: math.unit(101, "lb"),
  15553. name: "Future Malgam",
  15554. rename: true,
  15555. image: {
  15556. source: "./media/characters/malgam/sylveon.svg",
  15557. extra: 371 / 325,
  15558. bottom: 0.015
  15559. }
  15560. },
  15561. gigantamax: {
  15562. height: math.unit(50, "feet"),
  15563. name: "Gigantamax Malgam",
  15564. rename: true,
  15565. image: {
  15566. source: "./media/characters/malgam/gigantamax.svg"
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(2 + 10 / 12, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. weight: math.unit(188, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/fleur/front.svg",
  15587. extra: 309 / 283,
  15588. bottom: 0.007
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(5 + 11 / 12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(5 + 4 / 12, "feet"),
  15605. weight: math.unit(122, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/jude/front.svg",
  15609. extra: 288 / 273,
  15610. bottom: 0.03
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(5 + 4 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(5 + 11 / 12, "feet"),
  15627. weight: math.unit(190, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/seara/front.svg",
  15631. extra: 1,
  15632. bottom: 0.05
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(5 + 11 / 12, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(16 + 5 / 12, "feet"),
  15649. weight: math.unit(524, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/caspian-lugia/front.svg",
  15653. extra: 1,
  15654. bottom: 0.04
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(16 + 5 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(5 + 7 / 12, "feet"),
  15671. weight: math.unit(170, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/mika/front.svg",
  15675. extra: 1,
  15676. bottom: 0.016
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(5 + 7 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6 + 2 / 12, "feet"),
  15693. weight: math.unit(268, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/sol/front.svg",
  15697. extra: 247 / 231,
  15698. bottom: 0.05
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(6 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15712. {
  15713. buizel: {
  15714. height: math.unit(2 + 5 / 12, "feet"),
  15715. weight: math.unit(87, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/umiko/buizel.svg",
  15719. extra: 172 / 157,
  15720. bottom: 0.01
  15721. },
  15722. form: "buizel",
  15723. default: true
  15724. },
  15725. floatzel: {
  15726. height: math.unit(5 + 9 / 12, "feet"),
  15727. weight: math.unit(250, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/umiko/floatzel.svg",
  15731. extra: 1076/1006,
  15732. bottom: 15/1091
  15733. },
  15734. form: "floatzel",
  15735. default: true
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(2 + 5 / 12, "feet"),
  15742. form: "buizel",
  15743. default: true
  15744. },
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 9 / 12, "feet"),
  15748. form: "floatzel",
  15749. default: true
  15750. },
  15751. ],
  15752. {
  15753. "buizel": {
  15754. name: "Buizel"
  15755. },
  15756. "floatzel": {
  15757. name: "Floatzel",
  15758. default: true
  15759. }
  15760. }
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(6 + 2 / 12, "feet"),
  15767. weight: math.unit(146, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/iliac/front.svg",
  15771. extra: 389 / 365,
  15772. bottom: 0.035
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(6 + 2 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(170, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/topaz/front.svg",
  15793. extra: 317 / 303,
  15794. bottom: 0.055
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(6, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5 + 11 / 12, "feet"),
  15811. weight: math.unit(144, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/gabriel/front.svg",
  15815. extra: 285 / 262,
  15816. bottom: 0.004
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 11 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15830. {
  15831. side: {
  15832. height: math.unit(6 + 5 / 12, "feet"),
  15833. weight: math.unit(300, "lb"),
  15834. name: "Side",
  15835. image: {
  15836. source: "./media/characters/tempest-suicune/side.svg",
  15837. extra: 195 / 154,
  15838. bottom: 0.04
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6 + 5 / 12, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(7 + 2 / 12, "feet"),
  15855. weight: math.unit(322, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/vulcan/front.svg",
  15859. extra: 154 / 147,
  15860. bottom: 0.04
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(7 + 2 / 12, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(5 + 10 / 12, "feet"),
  15877. weight: math.unit(264, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/gault/front.svg",
  15881. extra: 161 / 140,
  15882. bottom: 0.028
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(5 + 10 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/shard/front.svg",
  15903. extra: 273 / 238,
  15904. bottom: 0.02
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(3 + 6 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(5 + 11 / 12, "feet"),
  15921. weight: math.unit(146, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/ashe/front.svg",
  15925. extra: 400 / 373,
  15926. bottom: 0.01
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(5 + 11 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(5 + 5 / 12, "feet"),
  15943. weight: math.unit(135, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/beatrix/front.svg",
  15947. extra: 392 / 379,
  15948. bottom: 0.01
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(6, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6 + 2/12, "feet"),
  15965. weight: math.unit(135, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/ignatius/front.svg",
  15969. extra: 1380/1259,
  15970. bottom: 27/1407
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(6 + 2/12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6 + 2 / 12, "feet"),
  15987. weight: math.unit(138, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/mei-li/front.svg",
  15991. extra: 237 / 229,
  15992. bottom: 0.03
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(6 + 2 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(2 + 4 / 12, "feet"),
  16009. weight: math.unit(62, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/puru/front.svg",
  16013. extra: 206 / 149,
  16014. bottom: 0.06
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(2 + 4 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16028. {
  16029. anthro: {
  16030. height: math.unit(5 + 8/12, "feet"),
  16031. weight: math.unit(200, "lb"),
  16032. energyNeed: math.unit(2000, "kcal"),
  16033. name: "Anthro",
  16034. image: {
  16035. source: "./media/characters/kee/anthro.svg",
  16036. extra: 3251/3184,
  16037. bottom: 250/3501
  16038. }
  16039. },
  16040. taur: {
  16041. height: math.unit(11, "feet"),
  16042. weight: math.unit(500, "lb"),
  16043. energyNeed: math.unit(5000, "kcal"),
  16044. name: "Taur",
  16045. image: {
  16046. source: "./media/characters/kee/taur.svg",
  16047. extra: 1362/1320,
  16048. bottom: 83/1445
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(5 + 8/12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(35, "feet")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16066. {
  16067. anthro: {
  16068. height: math.unit(7, "feet"),
  16069. weight: math.unit(190, "lb"),
  16070. name: "Anthro",
  16071. image: {
  16072. source: "./media/characters/cobalt-dracha/anthro.svg",
  16073. extra: 231 / 225,
  16074. bottom: 0.04
  16075. }
  16076. },
  16077. feral: {
  16078. height: math.unit(9 + 7 / 12, "feet"),
  16079. weight: math.unit(294, "lb"),
  16080. name: "Feral",
  16081. image: {
  16082. source: "./media/characters/cobalt-dracha/feral.svg",
  16083. extra: 692 / 633,
  16084. bottom: 0.05
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(7, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16098. {
  16099. fallen: {
  16100. height: math.unit(11 + 8 / 12, "feet"),
  16101. weight: math.unit(485, "lb"),
  16102. name: "Java (Fallen)",
  16103. rename: true,
  16104. image: {
  16105. source: "./media/characters/java/fallen.svg",
  16106. extra: 226 / 208,
  16107. bottom: 0.005
  16108. }
  16109. },
  16110. godkin: {
  16111. height: math.unit(10 + 6 / 12, "feet"),
  16112. weight: math.unit(328, "lb"),
  16113. name: "Java (Godkin)",
  16114. rename: true,
  16115. image: {
  16116. source: "./media/characters/java/godkin.svg",
  16117. extra: 1104/1068,
  16118. bottom: 36/1140
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(11 + 8 / 12, "feet"),
  16126. default: true
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(5 + 9 / 12, "feet"),
  16135. weight: math.unit(170, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/purna/front.svg",
  16139. extra: 239 / 229,
  16140. bottom: 0.01
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(5 + 9 / 12, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(5 + 9 / 12, "feet"),
  16157. weight: math.unit(142, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/kuva/front.svg",
  16161. extra: 281 / 271,
  16162. bottom: 0.006
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(5 + 9 / 12, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16176. {
  16177. anthro: {
  16178. height: math.unit(9 + 2 / 12, "feet"),
  16179. weight: math.unit(270, "lb"),
  16180. name: "Anthro",
  16181. image: {
  16182. source: "./media/characters/embra/anthro.svg",
  16183. extra: 200 / 187,
  16184. bottom: 0.02
  16185. }
  16186. },
  16187. feral: {
  16188. height: math.unit(18 + 8 / 12, "feet"),
  16189. weight: math.unit(576, "lb"),
  16190. name: "Feral",
  16191. image: {
  16192. source: "./media/characters/embra/feral.svg",
  16193. extra: 152 / 137,
  16194. bottom: 0.037
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(9 + 2 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16208. {
  16209. anthro: {
  16210. height: math.unit(10 + 9 / 12, "feet"),
  16211. weight: math.unit(224, "lb"),
  16212. name: "Anthro",
  16213. image: {
  16214. source: "./media/characters/grottos/anthro.svg",
  16215. extra: 350 / 332,
  16216. bottom: 0.045
  16217. }
  16218. },
  16219. feral: {
  16220. height: math.unit(20 + 7 / 12, "feet"),
  16221. weight: math.unit(629, "lb"),
  16222. name: "Feral",
  16223. image: {
  16224. source: "./media/characters/grottos/feral.svg",
  16225. extra: 207 / 190,
  16226. bottom: 0.05
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(10 + 9 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16240. {
  16241. anthro: {
  16242. height: math.unit(9 + 6 / 12, "feet"),
  16243. weight: math.unit(298, "lb"),
  16244. name: "Anthro",
  16245. image: {
  16246. source: "./media/characters/frifna/anthro.svg",
  16247. extra: 282 / 269,
  16248. bottom: 0.015
  16249. }
  16250. },
  16251. feral: {
  16252. height: math.unit(16 + 2 / 12, "feet"),
  16253. weight: math.unit(624, "lb"),
  16254. name: "Feral",
  16255. image: {
  16256. source: "./media/characters/frifna/feral.svg"
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(9 + 6 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6 + 2 / 12, "feet"),
  16273. weight: math.unit(168, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/elise/front.svg",
  16277. extra: 276 / 271
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(6 + 2 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5 + 10 / 12, "feet"),
  16294. weight: math.unit(210, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/glade/front.svg",
  16298. extra: 258 / 247,
  16299. bottom: 0.008
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(5 + 10 / 12, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(5 + 10 / 12, "feet"),
  16316. weight: math.unit(129, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/rina/front.svg",
  16320. extra: 266 / 255,
  16321. bottom: 0.005
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(5 + 10 / 12, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(6 + 1 / 12, "feet"),
  16338. weight: math.unit(192, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/veronica/front.svg",
  16342. extra: 319 / 309,
  16343. bottom: 0.005
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(6 + 1 / 12, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(9 + 3 / 12, "feet"),
  16360. weight: math.unit(1100, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/braxton/front.svg",
  16364. extra: 1057 / 984,
  16365. bottom: 0.05
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(9 + 3 / 12, "feet")
  16373. },
  16374. {
  16375. name: "Giant",
  16376. height: math.unit(300, "feet"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "Macro",
  16381. height: math.unit(700, "feet")
  16382. },
  16383. {
  16384. name: "Megamacro",
  16385. height: math.unit(6000, "feet")
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6 + 7 / 12, "feet"),
  16394. weight: math.unit(150, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/blue-feyonics/front.svg",
  16398. extra: 1403 / 1306,
  16399. bottom: 0.047
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(6 + 7 / 12, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(1.8, "meters"),
  16416. weight: math.unit(60, "kg"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/maxwell/front.svg",
  16420. extra: 2060 / 1873
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(1, "mm")
  16428. },
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(1.8, "meter"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Macro",
  16436. height: math.unit(30, "meters")
  16437. },
  16438. {
  16439. name: "Megamacro",
  16440. height: math.unit(10, "km")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/jack/front.svg",
  16453. extra: 1754 / 1640,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(80000, "feet"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Max size",
  16466. height: math.unit(10, "lightyears")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16472. {
  16473. urban: {
  16474. height: math.unit(5, "feet"),
  16475. weight: math.unit(240, "lb"),
  16476. name: "Urban",
  16477. image: {
  16478. source: "./media/characters/cafat/urban.svg",
  16479. extra: 1223/1126,
  16480. bottom: 205/1428
  16481. }
  16482. },
  16483. summer: {
  16484. height: math.unit(5, "feet"),
  16485. weight: math.unit(240, "lb"),
  16486. name: "Summer",
  16487. image: {
  16488. source: "./media/characters/cafat/summer.svg",
  16489. extra: 1223/1126,
  16490. bottom: 205/1428
  16491. }
  16492. },
  16493. winter: {
  16494. height: math.unit(5, "feet"),
  16495. weight: math.unit(240, "lb"),
  16496. name: "Winter",
  16497. image: {
  16498. source: "./media/characters/cafat/winter.svg",
  16499. extra: 1223/1126,
  16500. bottom: 205/1428
  16501. }
  16502. },
  16503. lingerie: {
  16504. height: math.unit(5, "feet"),
  16505. weight: math.unit(240, "lb"),
  16506. name: "Lingerie",
  16507. image: {
  16508. source: "./media/characters/cafat/lingerie.svg",
  16509. extra: 1223/1126,
  16510. bottom: 205/1428
  16511. }
  16512. },
  16513. upright: {
  16514. height: math.unit(6.3, "feet"),
  16515. weight: math.unit(240, "lb"),
  16516. name: "Upright",
  16517. image: {
  16518. source: "./media/characters/cafat/upright.svg",
  16519. bottom: 0.01
  16520. }
  16521. },
  16522. uprightFull: {
  16523. height: math.unit(6.3, "feet"),
  16524. weight: math.unit(240, "lb"),
  16525. name: "Upright (Full)",
  16526. image: {
  16527. source: "./media/characters/cafat/upright-full.svg",
  16528. bottom: 0.01
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Small",
  16535. height: math.unit(5, "feet"),
  16536. default: true
  16537. },
  16538. {
  16539. name: "Large",
  16540. height: math.unit(13, "feet")
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(6, "feet"),
  16549. weight: math.unit(150, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/verin-raharra/front.svg",
  16553. extra: 5019 / 4835,
  16554. bottom: 0.023
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(7 + 5 / 12, "feet"),
  16562. default: true
  16563. },
  16564. {
  16565. name: "Upsized",
  16566. height: math.unit(20, "feet")
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(7, "feet"),
  16575. weight: math.unit(230, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/nakata/front.svg",
  16579. extra: 1.005,
  16580. bottom: 0.01
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(7, "feet"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "Big",
  16592. height: math.unit(14, "feet")
  16593. },
  16594. {
  16595. name: "Macro",
  16596. height: math.unit(400, "feet")
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(4.91, "feet"),
  16605. weight: math.unit(100, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/lily/front.svg",
  16609. extra: 1585 / 1415,
  16610. bottom: 0.02
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(4.91, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16624. {
  16625. laying: {
  16626. height: math.unit(4 + 4 / 12, "feet"),
  16627. weight: math.unit(600, "lb"),
  16628. name: "Laying",
  16629. image: {
  16630. source: "./media/characters/sheila/laying.svg",
  16631. extra: 1333 / 1265,
  16632. bottom: 0.16
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(4 + 4 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(6, "feet"),
  16649. weight: math.unit(190, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/sax/front.svg",
  16653. extra: 1187 / 973,
  16654. bottom: 0.042
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Micro",
  16661. height: math.unit(4, "inches"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(150, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/pandora/front.svg",
  16675. extra: 2720 / 2556,
  16676. bottom: 0.015
  16677. }
  16678. },
  16679. back: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Back",
  16683. image: {
  16684. source: "./media/characters/pandora/back.svg",
  16685. extra: 2720 / 2556,
  16686. bottom: 0.01
  16687. }
  16688. },
  16689. beans: {
  16690. height: math.unit(6 / 8, "feet"),
  16691. name: "Beans",
  16692. image: {
  16693. source: "./media/characters/pandora/beans.svg"
  16694. }
  16695. },
  16696. collar: {
  16697. height: math.unit(0.31, "feet"),
  16698. name: "Collar",
  16699. image: {
  16700. source: "./media/characters/pandora/collar.svg"
  16701. }
  16702. },
  16703. skirt: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Skirt",
  16707. image: {
  16708. source: "./media/characters/pandora/skirt.svg",
  16709. extra: 1622 / 1525,
  16710. bottom: 0.015
  16711. }
  16712. },
  16713. hoodie: {
  16714. height: math.unit(6, "feet"),
  16715. weight: math.unit(150, "lb"),
  16716. name: "Hoodie",
  16717. image: {
  16718. source: "./media/characters/pandora/hoodie.svg",
  16719. extra: 1622 / 1525,
  16720. bottom: 0.015
  16721. }
  16722. },
  16723. casual: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(150, "lb"),
  16726. name: "Casual",
  16727. image: {
  16728. source: "./media/characters/pandora/casual.svg",
  16729. extra: 1622 / 1525,
  16730. bottom: 0.015
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(6, "feet")
  16738. },
  16739. {
  16740. name: "Big Steppy",
  16741. height: math.unit(1, "km"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Galactic Steppy",
  16746. height: math.unit(2, "gigameters")
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16752. {
  16753. side: {
  16754. height: math.unit(10, "feet"),
  16755. weight: math.unit(800, "kg"),
  16756. name: "Side",
  16757. image: {
  16758. source: "./media/characters/venio-darcony/side.svg",
  16759. extra: 1373 / 1003,
  16760. bottom: 0.037
  16761. }
  16762. },
  16763. front: {
  16764. height: math.unit(19, "feet"),
  16765. weight: math.unit(800, "kg"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/venio-darcony/front.svg"
  16769. }
  16770. },
  16771. back: {
  16772. height: math.unit(19, "feet"),
  16773. weight: math.unit(800, "kg"),
  16774. name: "Back",
  16775. image: {
  16776. source: "./media/characters/venio-darcony/back.svg"
  16777. }
  16778. },
  16779. sideNsfw: {
  16780. height: math.unit(10, "feet"),
  16781. weight: math.unit(800, "kg"),
  16782. name: "Side (NSFW)",
  16783. image: {
  16784. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16785. extra: 1373 / 1003,
  16786. bottom: 0.037
  16787. }
  16788. },
  16789. frontNsfw: {
  16790. height: math.unit(19, "feet"),
  16791. weight: math.unit(800, "kg"),
  16792. name: "Front (NSFW)",
  16793. image: {
  16794. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16795. }
  16796. },
  16797. backNsfw: {
  16798. height: math.unit(19, "feet"),
  16799. weight: math.unit(800, "kg"),
  16800. name: "Back (NSFW)",
  16801. image: {
  16802. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16803. }
  16804. },
  16805. sideArmored: {
  16806. height: math.unit(10, "feet"),
  16807. weight: math.unit(800, "kg"),
  16808. name: "Side (Armored)",
  16809. image: {
  16810. source: "./media/characters/venio-darcony/side-armored.svg",
  16811. extra: 1373 / 1003,
  16812. bottom: 0.037
  16813. }
  16814. },
  16815. frontArmored: {
  16816. height: math.unit(19, "feet"),
  16817. weight: math.unit(900, "kg"),
  16818. name: "Front (Armored)",
  16819. image: {
  16820. source: "./media/characters/venio-darcony/front-armored.svg"
  16821. }
  16822. },
  16823. backArmored: {
  16824. height: math.unit(19, "feet"),
  16825. weight: math.unit(900, "kg"),
  16826. name: "Back (Armored)",
  16827. image: {
  16828. source: "./media/characters/venio-darcony/back-armored.svg"
  16829. }
  16830. },
  16831. sword: {
  16832. height: math.unit(10, "feet"),
  16833. weight: math.unit(50, "lb"),
  16834. name: "Sword",
  16835. image: {
  16836. source: "./media/characters/venio-darcony/sword.svg"
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(10, "feet")
  16844. },
  16845. {
  16846. name: "Macro",
  16847. height: math.unit(130, "feet"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Macro+",
  16852. height: math.unit(240, "feet")
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/veski/front.svg",
  16865. extra: 1299 / 1225,
  16866. bottom: 0.04
  16867. }
  16868. },
  16869. back: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Back",
  16873. image: {
  16874. source: "./media/characters/veski/back.svg",
  16875. extra: 1299 / 1225,
  16876. bottom: 0.008
  16877. }
  16878. },
  16879. maw: {
  16880. height: math.unit(1.5 * 1.21, "feet"),
  16881. name: "Maw",
  16882. image: {
  16883. source: "./media/characters/veski/maw.svg"
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(2, "km"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(5 + 7 / 12, "feet"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/isabelle/front.svg",
  16903. extra: 2130 / 1976,
  16904. bottom: 0.05
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Supermicro",
  16911. height: math.unit(10, "micrometers")
  16912. },
  16913. {
  16914. name: "Micro",
  16915. height: math.unit(1, "inch")
  16916. },
  16917. {
  16918. name: "Tiny",
  16919. height: math.unit(5, "inches")
  16920. },
  16921. {
  16922. name: "Standard",
  16923. height: math.unit(5 + 7 / 12, "inches")
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(80, "meters"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Megamacro",
  16932. height: math.unit(250, "meters")
  16933. },
  16934. {
  16935. name: "Gigamacro",
  16936. height: math.unit(5, "km")
  16937. },
  16938. {
  16939. name: "Cosmic",
  16940. height: math.unit(2.5e6, "miles")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/hanzo/front.svg",
  16953. extra: 374 / 344,
  16954. bottom: 0.02
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(8, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(7, "feet"),
  16971. weight: math.unit(130, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/anna/front.svg",
  16975. extra: 169 / 145,
  16976. bottom: 0.06
  16977. }
  16978. },
  16979. full: {
  16980. height: math.unit(4.96, "feet"),
  16981. weight: math.unit(220, "lb"),
  16982. name: "Full",
  16983. image: {
  16984. source: "./media/characters/anna/full.svg",
  16985. extra: 138 / 114,
  16986. bottom: 0.15
  16987. }
  16988. },
  16989. tongue: {
  16990. height: math.unit(2.53, "feet"),
  16991. name: "Tongue",
  16992. image: {
  16993. source: "./media/characters/anna/tongue.svg"
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(7, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(7, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/ian-corvid/front.svg",
  17014. extra: 150 / 142,
  17015. bottom: 0.02
  17016. }
  17017. },
  17018. back: {
  17019. height: math.unit(7, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Back",
  17022. image: {
  17023. source: "./media/characters/ian-corvid/back.svg",
  17024. extra: 150 / 143,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. stomping: {
  17029. height: math.unit(7, "feet"),
  17030. weight: math.unit(150, "lb"),
  17031. name: "Stomping",
  17032. image: {
  17033. source: "./media/characters/ian-corvid/stomping.svg",
  17034. extra: 76 / 72
  17035. }
  17036. },
  17037. sitting: {
  17038. height: math.unit(7 / 1.8, "feet"),
  17039. weight: math.unit(150, "lb"),
  17040. name: "Sitting",
  17041. image: {
  17042. source: "./media/characters/ian-corvid/sitting.svg",
  17043. extra: 1400 / 1269,
  17044. bottom: 0.15
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Tiny Microw",
  17051. height: math.unit(1, "inch")
  17052. },
  17053. {
  17054. name: "Microw",
  17055. height: math.unit(6, "inches")
  17056. },
  17057. {
  17058. name: "Crow",
  17059. height: math.unit(7 + 1 / 12, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Macrow",
  17064. height: math.unit(176, "feet")
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(5 + 7 / 12, "feet"),
  17073. weight: math.unit(147, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/natalie-kellon/front.svg",
  17077. extra: 1214 / 1141,
  17078. bottom: 0.02
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(1 / 16, "inch")
  17086. },
  17087. {
  17088. name: "Tiny",
  17089. height: math.unit(4, "inches")
  17090. },
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 7 / 12, "feet"),
  17094. default: true
  17095. },
  17096. {
  17097. name: "Amazon",
  17098. height: math.unit(12, "feet")
  17099. },
  17100. {
  17101. name: "Giantess",
  17102. height: math.unit(160, "meters")
  17103. },
  17104. {
  17105. name: "Titaness",
  17106. height: math.unit(800, "meters")
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/alluria/front.svg",
  17119. extra: 806 / 738,
  17120. bottom: 0.01
  17121. }
  17122. },
  17123. side: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(150, "lb"),
  17126. name: "Side",
  17127. image: {
  17128. source: "./media/characters/alluria/side.svg",
  17129. extra: 800 / 750,
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(6, "feet"),
  17134. weight: math.unit(150, "lb"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/alluria/back.svg",
  17138. extra: 806 / 738,
  17139. }
  17140. },
  17141. frontMaid: {
  17142. height: math.unit(6, "feet"),
  17143. weight: math.unit(150, "lb"),
  17144. name: "Front (Maid)",
  17145. image: {
  17146. source: "./media/characters/alluria/front-maid.svg",
  17147. extra: 806 / 738,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. sideMaid: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Side (Maid)",
  17155. image: {
  17156. source: "./media/characters/alluria/side-maid.svg",
  17157. extra: 800 / 750,
  17158. bottom: 0.005
  17159. }
  17160. },
  17161. backMaid: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(150, "lb"),
  17164. name: "Back (Maid)",
  17165. image: {
  17166. source: "./media/characters/alluria/back-maid.svg",
  17167. extra: 806 / 738,
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Micro",
  17174. height: math.unit(6, "inches"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6, "feet"),
  17184. weight: math.unit(150, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/kyle/front.svg",
  17188. extra: 1069 / 962,
  17189. bottom: 77.228 / 1727.45
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(150, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(300, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/duncan/front.svg",
  17210. extra: 1650 / 1482,
  17211. bottom: 0.05
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(100, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(5 + 4 / 12, "feet"),
  17228. weight: math.unit(220, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/memory/front.svg",
  17232. extra: 3641 / 3545,
  17233. bottom: 0.03
  17234. }
  17235. },
  17236. back: {
  17237. height: math.unit(5 + 4 / 12, "feet"),
  17238. weight: math.unit(220, "lb"),
  17239. name: "Back",
  17240. image: {
  17241. source: "./media/characters/memory/back.svg",
  17242. extra: 3641 / 3545,
  17243. bottom: 0.025
  17244. }
  17245. },
  17246. frontSkirt: {
  17247. height: math.unit(5 + 4 / 12, "feet"),
  17248. weight: math.unit(220, "lb"),
  17249. name: "Front (Skirt)",
  17250. image: {
  17251. source: "./media/characters/memory/front-skirt.svg",
  17252. extra: 3641 / 3545,
  17253. bottom: 0.03
  17254. }
  17255. },
  17256. frontDress: {
  17257. height: math.unit(5 + 4 / 12, "feet"),
  17258. weight: math.unit(220, "lb"),
  17259. name: "Front (Dress)",
  17260. image: {
  17261. source: "./media/characters/memory/front-dress.svg",
  17262. extra: 3641 / 3545,
  17263. bottom: 0.03
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Micro",
  17270. height: math.unit(6, "inches"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(5 + 4 / 12, "feet")
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(4 + 11 / 12, "feet"),
  17284. weight: math.unit(100, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/luno/front.svg",
  17288. extra: 1535 / 1487,
  17289. bottom: 0.03
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Micro",
  17296. height: math.unit(3, "inches")
  17297. },
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(4 + 11 / 12, "feet"),
  17301. default: true
  17302. },
  17303. {
  17304. name: "Macro",
  17305. height: math.unit(300, "feet")
  17306. },
  17307. {
  17308. name: "Megamacro",
  17309. height: math.unit(700, "miles")
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(6 + 2 / 12, "feet"),
  17318. weight: math.unit(170, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/jamesy/front.svg",
  17322. extra: 440 / 382,
  17323. bottom: 0.005
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(3, "inches")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(6 + 2 / 12, "feet"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macro",
  17339. height: math.unit(300, "feet")
  17340. },
  17341. {
  17342. name: "Megamacro",
  17343. height: math.unit(700, "miles")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(160, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/mark/front.svg",
  17356. extra: 3300 / 3100,
  17357. bottom: 136.42 / 3440.47
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(120, "meters")
  17365. },
  17366. {
  17367. name: "Bigger Macro",
  17368. height: math.unit(350, "meters")
  17369. },
  17370. {
  17371. name: "Megamacro",
  17372. height: math.unit(8, "km"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Continental",
  17377. height: math.unit(4550, "km")
  17378. },
  17379. {
  17380. name: "Planetary",
  17381. height: math.unit(65000, "km")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(400, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/mac/front.svg",
  17394. extra: 1048 / 987.7,
  17395. bottom: 60 / 1107.6,
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Macro",
  17402. height: math.unit(500, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(5 + 2 / 12, "feet"),
  17412. weight: math.unit(190, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/bari/front.svg",
  17416. extra: 3156 / 2880,
  17417. bottom: 0.03
  17418. }
  17419. },
  17420. back: {
  17421. height: math.unit(5 + 2 / 12, "feet"),
  17422. weight: math.unit(190, "lb"),
  17423. name: "Back",
  17424. image: {
  17425. source: "./media/characters/bari/back.svg",
  17426. extra: 3260 / 2834,
  17427. bottom: 0.025
  17428. }
  17429. },
  17430. frontPlush: {
  17431. height: math.unit(5 + 2 / 12, "feet"),
  17432. weight: math.unit(190, "lb"),
  17433. name: "Front (Plush)",
  17434. image: {
  17435. source: "./media/characters/bari/front-plush.svg",
  17436. extra: 1112 / 1061,
  17437. bottom: 0.002
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Micro",
  17444. height: math.unit(3, "inches")
  17445. },
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(5 + 2 / 12, "feet"),
  17449. default: true
  17450. },
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(20, "feet")
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 1 / 12, "feet"),
  17462. weight: math.unit(275, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/hunter-misha-raven/front.svg"
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Mortal",
  17472. height: math.unit(6 + 1 / 12, "feet")
  17473. },
  17474. {
  17475. name: "Divine",
  17476. height: math.unit(1.12134e34, "parsecs"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6 + 3 / 12, "feet"),
  17486. weight: math.unit(220, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/max-calore/front.svg",
  17490. extra: 1700 / 1648,
  17491. bottom: 0.01
  17492. }
  17493. },
  17494. back: {
  17495. height: math.unit(6 + 3 / 12, "feet"),
  17496. weight: math.unit(220, "lb"),
  17497. name: "Back",
  17498. image: {
  17499. source: "./media/characters/max-calore/back.svg",
  17500. extra: 1700 / 1648,
  17501. bottom: 0.01
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(6 + 3 / 12, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17515. {
  17516. side: {
  17517. height: math.unit(2 + 8 / 12, "feet"),
  17518. weight: math.unit(99, "lb"),
  17519. name: "Side",
  17520. image: {
  17521. source: "./media/characters/aspen/side.svg",
  17522. extra: 152 / 138,
  17523. bottom: 0.032
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(2 + 8 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17537. {
  17538. side: {
  17539. height: math.unit(3 + 2 / 12, "feet"),
  17540. weight: math.unit(224, "lb"),
  17541. name: "Side",
  17542. image: {
  17543. source: "./media/characters/sheila-feral-wolf/side.svg",
  17544. extra: 179 / 166,
  17545. bottom: 0.03
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(3 + 2 / 12, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17559. {
  17560. side: {
  17561. height: math.unit(1 + 9 / 12, "feet"),
  17562. weight: math.unit(38, "lb"),
  17563. name: "Side",
  17564. image: {
  17565. source: "./media/characters/michelle/side.svg",
  17566. extra: 147 / 136.7,
  17567. bottom: 0.03
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(1 + 9 / 12, "feet"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(1.54, "feet"),
  17584. weight: math.unit(50, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/nino/front.svg"
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(1.54, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(1.49, "feet"),
  17604. weight: math.unit(45, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/viola/front.svg"
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(1.49, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(6 + 5 / 12, "feet"),
  17624. weight: math.unit(580, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/atlas/front.svg",
  17628. extra: 298.5 / 290,
  17629. bottom: 0.015
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(6 + 5 / 12, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17643. {
  17644. side: {
  17645. height: math.unit(15.6, "inches"),
  17646. weight: math.unit(10, "lb"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/davy/side.svg",
  17650. extra: 200 / 170,
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(15.6, "inches"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17665. {
  17666. side: {
  17667. height: math.unit(4 + 8 / 12, "feet"),
  17668. weight: math.unit(166, "lb"),
  17669. name: "Side",
  17670. image: {
  17671. source: "./media/characters/fiona/side.svg",
  17672. extra: 232 / 220,
  17673. bottom: 0.03
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(4 + 8 / 12, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17687. {
  17688. front: {
  17689. height: math.unit(26, "inches"),
  17690. weight: math.unit(35, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/lyla/front.svg",
  17694. bottom: 0.1
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(3, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17708. {
  17709. side: {
  17710. height: math.unit(1.8, "feet"),
  17711. weight: math.unit(44, "lb"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/perseus/side.svg",
  17715. bottom: 0.21
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(1.8, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17729. {
  17730. side: {
  17731. height: math.unit(4 + 2 / 12, "feet"),
  17732. weight: math.unit(20, "lb"),
  17733. name: "Side",
  17734. image: {
  17735. source: "./media/characters/remus/side.svg"
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(4 + 2 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(4 + 11 / 12, "feet"),
  17752. weight: math.unit(114, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/raf/front.svg",
  17756. extra: 1504/1339,
  17757. bottom: 26/1530
  17758. }
  17759. },
  17760. side: {
  17761. height: math.unit(4 + 11 / 12, "feet"),
  17762. weight: math.unit(114, "lb"),
  17763. name: "Side",
  17764. image: {
  17765. source: "./media/characters/raf/side.svg",
  17766. extra: 1466/1316,
  17767. bottom: 29/1495
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Micro",
  17774. height: math.unit(2, "inches")
  17775. },
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(4 + 11 / 12, "feet"),
  17779. default: true
  17780. },
  17781. {
  17782. name: "Macro",
  17783. height: math.unit(70, "feet")
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17789. {
  17790. front: {
  17791. height: math.unit(1.5, "meters"),
  17792. weight: math.unit(68, "kg"),
  17793. name: "Front",
  17794. image: {
  17795. source: "./media/characters/liam-einarr/front.svg",
  17796. extra: 2822 / 2666
  17797. }
  17798. },
  17799. back: {
  17800. height: math.unit(1.5, "meters"),
  17801. weight: math.unit(68, "kg"),
  17802. name: "Back",
  17803. image: {
  17804. source: "./media/characters/liam-einarr/back.svg",
  17805. extra: 2822 / 2666,
  17806. bottom: 0.015
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1.5, "meters"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(150, "meters")
  17819. },
  17820. {
  17821. name: "Megamacro",
  17822. height: math.unit(35, "km")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(6, "feet"),
  17831. weight: math.unit(75, "kg"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/linda/front.svg",
  17835. extra: 930 / 874,
  17836. bottom: 0.004
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(6, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6 + 8 / 12, "feet"),
  17853. weight: math.unit(220, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/caylex/front.svg",
  17857. extra: 821 / 772,
  17858. bottom: 0.07
  17859. }
  17860. },
  17861. back: {
  17862. height: math.unit(6 + 8 / 12, "feet"),
  17863. weight: math.unit(220, "lb"),
  17864. name: "Back",
  17865. image: {
  17866. source: "./media/characters/caylex/back.svg",
  17867. extra: 821 / 772,
  17868. bottom: 0.022
  17869. }
  17870. },
  17871. hand: {
  17872. height: math.unit(1.25, "feet"),
  17873. name: "Hand",
  17874. image: {
  17875. source: "./media/characters/caylex/hand.svg"
  17876. }
  17877. },
  17878. foot: {
  17879. height: math.unit(1.6, "feet"),
  17880. name: "Foot",
  17881. image: {
  17882. source: "./media/characters/caylex/foot.svg"
  17883. }
  17884. },
  17885. armored: {
  17886. height: math.unit(6 + 8 / 12, "feet"),
  17887. weight: math.unit(250, "lb"),
  17888. name: "Armored",
  17889. image: {
  17890. source: "./media/characters/caylex/armored.svg",
  17891. extra: 1420 / 1310,
  17892. bottom: 0.045
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(6 + 8 / 12, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Normal+",
  17904. height: math.unit(12, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(7 + 6 / 12, "feet"),
  17913. weight: math.unit(288, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/alana/front.svg",
  17917. extra: 679 / 653,
  17918. bottom: 22.5 / 701
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(7 + 6 / 12, "feet")
  17926. },
  17927. {
  17928. name: "Large",
  17929. height: math.unit(50, "feet")
  17930. },
  17931. {
  17932. name: "Macro",
  17933. height: math.unit(100, "feet"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Macro+",
  17938. height: math.unit(200, "feet")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6 + 1 / 12, "feet"),
  17947. weight: math.unit(210, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/hasani/front.svg",
  17951. extra: 244 / 232,
  17952. bottom: 0.01
  17953. }
  17954. },
  17955. back: {
  17956. height: math.unit(6 + 1 / 12, "feet"),
  17957. weight: math.unit(210, "lb"),
  17958. name: "Back",
  17959. image: {
  17960. source: "./media/characters/hasani/back.svg",
  17961. extra: 244 / 232,
  17962. bottom: 0.01
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(6 + 1 / 12, "feet")
  17970. },
  17971. {
  17972. name: "Macro",
  17973. height: math.unit(175, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(1.82, "meters"),
  17983. weight: math.unit(140, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/nita/front.svg",
  17987. extra: 2473 / 2363,
  17988. bottom: 0.01
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(1.82, "m")
  17996. },
  17997. {
  17998. name: "Macro",
  17999. height: math.unit(300, "m")
  18000. },
  18001. {
  18002. name: "Mistake Canon",
  18003. height: math.unit(0.5, "miles"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Big Mistake",
  18008. height: math.unit(13, "miles")
  18009. },
  18010. {
  18011. name: "Playing God",
  18012. height: math.unit(2450, "miles")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(4, "feet"),
  18021. weight: math.unit(120, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/shiriko/front.svg",
  18025. extra: 970/934,
  18026. bottom: 5/975
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(4, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6, "feet"),
  18043. name: "front",
  18044. image: {
  18045. source: "./media/characters/deja/front.svg",
  18046. extra: 926 / 840,
  18047. bottom: 0.07
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Planck Length",
  18054. height: math.unit(1.6e-35, "meters")
  18055. },
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(30.48, "meters"),
  18059. default: true
  18060. },
  18061. {
  18062. name: "Universal",
  18063. height: math.unit(8.8e26, "meters")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18069. {
  18070. side: {
  18071. height: math.unit(8, "feet"),
  18072. weight: math.unit(6300, "lb"),
  18073. name: "Side",
  18074. image: {
  18075. source: "./media/characters/anima/side.svg",
  18076. bottom: 0.035
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(8, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(8, "feet"),
  18093. weight: math.unit(350, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/bianca/front.svg",
  18097. extra: 234 / 225,
  18098. bottom: 0.03
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(8, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(150, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/adinia/front.svg",
  18119. extra: 1845 / 1672,
  18120. bottom: 0.02
  18121. }
  18122. },
  18123. back: {
  18124. height: math.unit(6, "feet"),
  18125. weight: math.unit(150, "lb"),
  18126. name: "Back",
  18127. image: {
  18128. source: "./media/characters/adinia/back.svg",
  18129. extra: 1845 / 1672,
  18130. bottom: 0.002
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Normal",
  18137. height: math.unit(11 + 5 / 12, "feet"),
  18138. default: true
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18144. {
  18145. front: {
  18146. height: math.unit(3, "meters"),
  18147. weight: math.unit(200, "kg"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/lykasa/front.svg",
  18151. extra: 1076 / 976,
  18152. bottom: 0.06
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(3, "meters")
  18160. },
  18161. {
  18162. name: "Kaiju",
  18163. height: math.unit(120, "meters"),
  18164. default: true
  18165. },
  18166. {
  18167. name: "Mega Kaiju",
  18168. height: math.unit(240, "km")
  18169. },
  18170. {
  18171. name: "Giga Kaiju",
  18172. height: math.unit(400, "megameters")
  18173. },
  18174. {
  18175. name: "Tera Kaiju",
  18176. height: math.unit(800, "gigameters")
  18177. },
  18178. {
  18179. name: "Kaiju Dragon Goddess",
  18180. height: math.unit(26, "zettaparsecs")
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18186. {
  18187. side: {
  18188. height: math.unit(283 / 124 * 6, "feet"),
  18189. weight: math.unit(35000, "lb"),
  18190. name: "Side",
  18191. image: {
  18192. source: "./media/characters/malfaren/side.svg",
  18193. extra: 1310/529,
  18194. bottom: 24/1334
  18195. }
  18196. },
  18197. front: {
  18198. height: math.unit(22.36, "feet"),
  18199. weight: math.unit(35000, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/malfaren/front.svg",
  18203. extra: 1237/1115,
  18204. bottom: 32/1269
  18205. }
  18206. },
  18207. maw: {
  18208. height: math.unit(6.9, "feet"),
  18209. name: "Maw",
  18210. image: {
  18211. source: "./media/characters/malfaren/maw.svg"
  18212. }
  18213. },
  18214. dick: {
  18215. height: math.unit(6.19, "feet"),
  18216. name: "Dick",
  18217. image: {
  18218. source: "./media/characters/malfaren/dick.svg"
  18219. }
  18220. },
  18221. eye: {
  18222. height: math.unit(0.69, "feet"),
  18223. name: "Eye",
  18224. image: {
  18225. source: "./media/characters/malfaren/eye.svg"
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Big",
  18232. height: math.unit(283 / 162 * 6, "feet"),
  18233. },
  18234. {
  18235. name: "Bigger",
  18236. height: math.unit(283 / 124 * 6, "feet")
  18237. },
  18238. {
  18239. name: "Massive",
  18240. height: math.unit(283 / 92 * 6, "feet"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "👀💦",
  18245. height: math.unit(283 / 73 * 6, "feet"),
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(1.7, "m"),
  18254. weight: math.unit(70, "kg"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/kernel/front.svg",
  18258. extra: 222 / 210,
  18259. bottom: 0.007
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Nano",
  18266. height: math.unit(17, "micrometers")
  18267. },
  18268. {
  18269. name: "Micro",
  18270. height: math.unit(1.7, "mm")
  18271. },
  18272. {
  18273. name: "Small",
  18274. height: math.unit(1.7, "cm")
  18275. },
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(1.7, "m"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(1.75, "meters"),
  18288. weight: math.unit(65, "kg"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/jayne-folest/front.svg",
  18292. extra: 2115 / 2007,
  18293. bottom: 0.02
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(1.75, "meters"),
  18298. weight: math.unit(65, "kg"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/jayne-folest/back.svg",
  18302. extra: 2115 / 2007,
  18303. bottom: 0.005
  18304. }
  18305. },
  18306. frontClothed: {
  18307. height: math.unit(1.75, "meters"),
  18308. weight: math.unit(65, "kg"),
  18309. name: "Front (Clothed)",
  18310. image: {
  18311. source: "./media/characters/jayne-folest/front-clothed.svg",
  18312. extra: 2115 / 2007,
  18313. bottom: 0.035
  18314. }
  18315. },
  18316. hand: {
  18317. height: math.unit(1 / 1.260, "feet"),
  18318. name: "Hand",
  18319. image: {
  18320. source: "./media/characters/jayne-folest/hand.svg"
  18321. }
  18322. },
  18323. foot: {
  18324. height: math.unit(1 / 0.918, "feet"),
  18325. name: "Foot",
  18326. image: {
  18327. source: "./media/characters/jayne-folest/foot.svg"
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Micro",
  18334. height: math.unit(4, "cm")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(1.75, "meters")
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(47.5, "meters"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(180, "cm"),
  18352. weight: math.unit(70, "kg"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/algier/front.svg",
  18356. extra: 596 / 572,
  18357. bottom: 0.04
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(180, "cm"),
  18362. weight: math.unit(70, "kg"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/algier/back.svg",
  18366. extra: 596 / 572,
  18367. bottom: 0.025
  18368. }
  18369. },
  18370. frontdressed: {
  18371. height: math.unit(180, "cm"),
  18372. weight: math.unit(150, "kg"),
  18373. name: "Front-dressed",
  18374. image: {
  18375. source: "./media/characters/algier/front-dressed.svg",
  18376. extra: 596 / 572,
  18377. bottom: 0.038
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Micro",
  18384. height: math.unit(5, "cm")
  18385. },
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(180, "cm"),
  18389. default: true
  18390. },
  18391. {
  18392. name: "Macro",
  18393. height: math.unit(64, "m")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18399. {
  18400. upright: {
  18401. height: math.unit(7, "feet"),
  18402. weight: math.unit(300, "lb"),
  18403. name: "Upright",
  18404. image: {
  18405. source: "./media/characters/pretzel/upright.svg",
  18406. extra: 534 / 522,
  18407. bottom: 0.065
  18408. }
  18409. },
  18410. sprawling: {
  18411. height: math.unit(3.75, "feet"),
  18412. weight: math.unit(300, "lb"),
  18413. name: "Sprawling",
  18414. image: {
  18415. source: "./media/characters/pretzel/sprawling.svg",
  18416. extra: 314 / 281,
  18417. bottom: 0.1
  18418. }
  18419. },
  18420. tongue: {
  18421. height: math.unit(2, "feet"),
  18422. name: "Tongue",
  18423. image: {
  18424. source: "./media/characters/pretzel/tongue.svg"
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(7, "feet"),
  18432. default: true
  18433. },
  18434. {
  18435. name: "Oversized",
  18436. height: math.unit(15, "feet")
  18437. },
  18438. {
  18439. name: "Huge",
  18440. height: math.unit(30, "feet")
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(250, "feet")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18450. {
  18451. sideFront: {
  18452. height: math.unit(5 + 2 / 12, "feet"),
  18453. weight: math.unit(120, "lb"),
  18454. name: "Front Side",
  18455. image: {
  18456. source: "./media/characters/roxi/side-front.svg",
  18457. extra: 2924 / 2717,
  18458. bottom: 0.08
  18459. }
  18460. },
  18461. sideBack: {
  18462. height: math.unit(5 + 2 / 12, "feet"),
  18463. weight: math.unit(120, "lb"),
  18464. name: "Back Side",
  18465. image: {
  18466. source: "./media/characters/roxi/side-back.svg",
  18467. extra: 2904 / 2693,
  18468. bottom: 0.06
  18469. }
  18470. },
  18471. front: {
  18472. height: math.unit(5 + 2 / 12, "feet"),
  18473. weight: math.unit(120, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/roxi/front.svg",
  18477. extra: 2028 / 1907,
  18478. bottom: 0.01
  18479. }
  18480. },
  18481. frontAlt: {
  18482. height: math.unit(5 + 2 / 12, "feet"),
  18483. weight: math.unit(120, "lb"),
  18484. name: "Front (Alt)",
  18485. image: {
  18486. source: "./media/characters/roxi/front-alt.svg",
  18487. extra: 1828 / 1798,
  18488. bottom: 0.01
  18489. }
  18490. },
  18491. sitting: {
  18492. height: math.unit(2.8, "feet"),
  18493. weight: math.unit(120, "lb"),
  18494. name: "Sitting",
  18495. image: {
  18496. source: "./media/characters/roxi/sitting.svg",
  18497. extra: 2660 / 2462,
  18498. bottom: 0.1
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(5 + 2 / 12, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18512. {
  18513. side: {
  18514. height: math.unit(55, "feet"),
  18515. weight: math.unit(153, "tons"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/shadow/side.svg",
  18519. extra: 701 / 628,
  18520. bottom: 0.02
  18521. }
  18522. },
  18523. flying: {
  18524. height: math.unit(145, "feet"),
  18525. weight: math.unit(153, "tons"),
  18526. name: "Flying",
  18527. image: {
  18528. source: "./media/characters/shadow/flying.svg"
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(55, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(6, "feet"),
  18545. weight: math.unit(200, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/marcie/front.svg",
  18549. extra: 960 / 876,
  18550. bottom: 58 / 1017.87
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(1, "mile"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(7, "feet"),
  18567. weight: math.unit(200, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/kachina/front.svg",
  18571. extra: 1290.68 / 1119,
  18572. bottom: 36.5 / 1327.18
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(7, "feet"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18586. {
  18587. looking: {
  18588. height: math.unit(2, "meters"),
  18589. weight: math.unit(300, "kg"),
  18590. name: "Looking",
  18591. image: {
  18592. source: "./media/characters/kash/looking.svg",
  18593. extra: 474 / 344,
  18594. bottom: 0.03
  18595. }
  18596. },
  18597. side: {
  18598. height: math.unit(2, "meters"),
  18599. weight: math.unit(300, "kg"),
  18600. name: "Side",
  18601. image: {
  18602. source: "./media/characters/kash/side.svg",
  18603. extra: 302 / 251,
  18604. bottom: 0.03
  18605. }
  18606. },
  18607. front: {
  18608. height: math.unit(2, "meters"),
  18609. weight: math.unit(300, "kg"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/kash/front.svg",
  18613. extra: 495 / 360,
  18614. bottom: 0.015
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(2, "meters"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Big",
  18626. height: math.unit(3, "meters")
  18627. },
  18628. {
  18629. name: "Large",
  18630. height: math.unit(5, "meters")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18636. {
  18637. feeding: {
  18638. height: math.unit(6.7, "feet"),
  18639. weight: math.unit(350, "lb"),
  18640. name: "Feeding",
  18641. image: {
  18642. source: "./media/characters/lalim/feeding.svg",
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(6.7, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(9.5, "feet"),
  18659. weight: math.unit(600, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/de'vout/front.svg",
  18663. extra: 1443 / 1328,
  18664. bottom: 0.025
  18665. }
  18666. },
  18667. back: {
  18668. height: math.unit(9.5, "feet"),
  18669. weight: math.unit(600, "lb"),
  18670. name: "Back",
  18671. image: {
  18672. source: "./media/characters/de'vout/back.svg",
  18673. extra: 1443 / 1328
  18674. }
  18675. },
  18676. frontDressed: {
  18677. height: math.unit(9.5, "feet"),
  18678. weight: math.unit(600, "lb"),
  18679. name: "Front (Dressed",
  18680. image: {
  18681. source: "./media/characters/de'vout/front-dressed.svg",
  18682. extra: 1443 / 1328,
  18683. bottom: 0.025
  18684. }
  18685. },
  18686. backDressed: {
  18687. height: math.unit(9.5, "feet"),
  18688. weight: math.unit(600, "lb"),
  18689. name: "Back (Dressed",
  18690. image: {
  18691. source: "./media/characters/de'vout/back-dressed.svg",
  18692. extra: 1443 / 1328
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(9.5, "feet"),
  18700. default: true
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18706. {
  18707. front: {
  18708. height: math.unit(8, "feet"),
  18709. weight: math.unit(225, "lb"),
  18710. name: "Front",
  18711. image: {
  18712. source: "./media/characters/talana/front.svg",
  18713. extra: 1410 / 1300,
  18714. bottom: 0.015
  18715. }
  18716. },
  18717. frontDressed: {
  18718. height: math.unit(8, "feet"),
  18719. weight: math.unit(225, "lb"),
  18720. name: "Front (Dressed",
  18721. image: {
  18722. source: "./media/characters/talana/front-dressed.svg",
  18723. extra: 1410 / 1300,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(8, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18738. {
  18739. side: {
  18740. height: math.unit(7.2, "feet"),
  18741. weight: math.unit(150, "lb"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/xeauvok/side.svg",
  18745. extra: 1975 / 1523,
  18746. bottom: 0.07
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(7.2, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18760. {
  18761. side: {
  18762. height: math.unit(10, "feet"),
  18763. weight: math.unit(900, "kg"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/zara/side.svg",
  18767. extra: 504 / 498
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(10, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18781. {
  18782. side: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(150, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/richard-dragon/side.svg",
  18788. extra: 845 / 340,
  18789. bottom: 0.017
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(2.97, "feet"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/richard-dragon/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(4, "feet"),
  18808. weight: math.unit(100, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/richard-smeargle/front.svg",
  18812. extra: 2952 / 2820,
  18813. bottom: 0.028
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(4, "feet"),
  18821. default: true
  18822. },
  18823. {
  18824. name: "Dynamax",
  18825. height: math.unit(20, "meters")
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(110, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/klay/front.svg",
  18838. extra: 962 / 883,
  18839. bottom: 0.04
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(110, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/klay/back.svg",
  18848. extra: 962 / 883
  18849. }
  18850. },
  18851. beans: {
  18852. height: math.unit(1.15, "feet"),
  18853. name: "Beans",
  18854. image: {
  18855. source: "./media/characters/klay/beans.svg"
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(6, "inches")
  18863. },
  18864. {
  18865. name: "Mini",
  18866. height: math.unit(3, "feet")
  18867. },
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(6, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Big",
  18875. height: math.unit(25, "feet")
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(100, "feet")
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(400, "feet")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6, "feet"),
  18892. weight: math.unit(160, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/marcus/front.svg",
  18896. extra: 734 / 676,
  18897. bottom: 0.03
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Little",
  18904. height: math.unit(6, "feet")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(110, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(250, "feet")
  18914. },
  18915. {
  18916. name: "Megamacro",
  18917. height: math.unit(1000, "feet")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(7, "feet"),
  18926. weight: math.unit(275, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/claude-delroute/front.svg",
  18930. extra: 902/827,
  18931. bottom: 26/928
  18932. }
  18933. },
  18934. side: {
  18935. height: math.unit(7, "feet"),
  18936. weight: math.unit(275, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/claude-delroute/side.svg",
  18940. extra: 908/853,
  18941. bottom: 16/924
  18942. }
  18943. },
  18944. back: {
  18945. height: math.unit(7, "feet"),
  18946. weight: math.unit(275, "lb"),
  18947. name: "Back",
  18948. image: {
  18949. source: "./media/characters/claude-delroute/back.svg",
  18950. extra: 911/829,
  18951. bottom: 18/929
  18952. }
  18953. },
  18954. maw: {
  18955. height: math.unit(0.6407, "meters"),
  18956. name: "Maw",
  18957. image: {
  18958. source: "./media/characters/claude-delroute/maw.svg"
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(7, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Lorge",
  18970. height: math.unit(20, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(8 + 4 / 12, "feet"),
  18979. weight: math.unit(600, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/dragonien/front.svg",
  18983. extra: 100 / 94,
  18984. bottom: 3.3 / 103.3445
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(8 + 4 / 12, "feet"),
  18989. weight: math.unit(600, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/dragonien/back.svg",
  18993. extra: 776 / 746,
  18994. bottom: 6.4 / 782.0616
  18995. }
  18996. },
  18997. foot: {
  18998. height: math.unit(1.54, "feet"),
  18999. name: "Foot",
  19000. image: {
  19001. source: "./media/characters/dragonien/foot.svg",
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(8 + 4 / 12, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Macro",
  19013. height: math.unit(200, "feet")
  19014. },
  19015. {
  19016. name: "Megamacro",
  19017. height: math.unit(1, "mile")
  19018. },
  19019. {
  19020. name: "Gigamacro",
  19021. height: math.unit(1000, "miles")
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(5 + 2 / 12, "feet"),
  19030. weight: math.unit(110, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/desta/front.svg",
  19034. extra: 767 / 726,
  19035. bottom: 11.7 / 779
  19036. }
  19037. },
  19038. back: {
  19039. height: math.unit(5 + 2 / 12, "feet"),
  19040. weight: math.unit(110, "lb"),
  19041. name: "Back",
  19042. image: {
  19043. source: "./media/characters/desta/back.svg",
  19044. extra: 777 / 728,
  19045. bottom: 6 / 784
  19046. }
  19047. },
  19048. frontAlt: {
  19049. height: math.unit(5 + 2 / 12, "feet"),
  19050. weight: math.unit(110, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/desta/front-alt.svg",
  19054. extra: 1482 / 1417
  19055. }
  19056. },
  19057. side: {
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. weight: math.unit(110, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/desta/side.svg",
  19063. extra: 2579 / 2491,
  19064. bottom: 0.053
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Micro",
  19071. height: math.unit(6, "inches")
  19072. },
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(5 + 2 / 12, "feet"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Macro",
  19080. height: math.unit(62, "feet")
  19081. },
  19082. {
  19083. name: "Megamacro",
  19084. height: math.unit(1800, "feet")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(10, "feet"),
  19093. weight: math.unit(700, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/storm-alystar/front.svg",
  19097. extra: 2112 / 1898,
  19098. bottom: 0.034
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Micro",
  19105. height: math.unit(3.5, "inches")
  19106. },
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(10, "feet"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(400, "feet")
  19115. },
  19116. {
  19117. name: "Deific",
  19118. height: math.unit(60, "miles")
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(2.35, "meters"),
  19127. weight: math.unit(119, "kg"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/ilia/front.svg",
  19131. extra: 1285 / 1255,
  19132. bottom: 0.06
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(2.35, "meters")
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(140, "meters"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Megamacro",
  19148. height: math.unit(100, "miles")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6 + 5 / 12, "feet"),
  19157. weight: math.unit(190, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/kingdead/front.svg",
  19161. extra: 1228 / 1177
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(7, "inches")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(6 + 5 / 12, "feet")
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(150, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Megamacro",
  19181. height: math.unit(200, "miles")
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(8, "feet"),
  19190. weight: math.unit(600, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/kyrehx/front.svg",
  19194. extra: 1195 / 1095,
  19195. bottom: 0.034
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Micro",
  19202. height: math.unit(2, "inches")
  19203. },
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(8, "feet"),
  19207. default: true
  19208. },
  19209. {
  19210. name: "Macro",
  19211. height: math.unit(255, "feet")
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19220. weight: math.unit(184, "lb"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/xang/front.svg",
  19224. extra: 845 / 755
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(0.935 * 146, "feet")
  19237. },
  19238. {
  19239. name: "Megamacro",
  19240. height: math.unit(0.935 * 3, "miles")
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19246. {
  19247. frontDressed: {
  19248. height: math.unit(5 + 7 / 12, "feet"),
  19249. weight: math.unit(140, "lb"),
  19250. name: "Front (Dressed)",
  19251. image: {
  19252. source: "./media/characters/doc-weardno/front-dressed.svg",
  19253. extra: 263 / 234
  19254. }
  19255. },
  19256. backDressed: {
  19257. height: math.unit(5 + 7 / 12, "feet"),
  19258. weight: math.unit(140, "lb"),
  19259. name: "Back (Dressed)",
  19260. image: {
  19261. source: "./media/characters/doc-weardno/back-dressed.svg",
  19262. extra: 266 / 238
  19263. }
  19264. },
  19265. front: {
  19266. height: math.unit(5 + 7 / 12, "feet"),
  19267. weight: math.unit(140, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/doc-weardno/front.svg",
  19271. extra: 254 / 233
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(3, "inches")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(5 + 7 / 12, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(25, "feet")
  19288. },
  19289. {
  19290. name: "Megamacro",
  19291. height: math.unit(2, "miles")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6 + 2 / 12, "feet"),
  19300. weight: math.unit(153, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/seth-whilst/front.svg",
  19304. bottom: 0.07
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Micro",
  19311. height: math.unit(5, "inches")
  19312. },
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 2 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(3, "inches"),
  19325. weight: math.unit(8, "grams"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/pocket-jabari/front.svg",
  19329. extra: 1024 / 974,
  19330. bottom: 0.039
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Minimicro",
  19337. height: math.unit(8, "mm")
  19338. },
  19339. {
  19340. name: "Micro",
  19341. height: math.unit(3, "inches"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(3, "feet")
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19352. {
  19353. frontDressed: {
  19354. height: math.unit(15, "feet"),
  19355. weight: math.unit(3280, "lb"),
  19356. name: "Front (Dressed)",
  19357. image: {
  19358. source: "./media/characters/sapphy/front-dressed.svg",
  19359. extra: 1951/1654,
  19360. bottom: 194/2145
  19361. },
  19362. form: "anthro",
  19363. default: true
  19364. },
  19365. backDressed: {
  19366. height: math.unit(15, "feet"),
  19367. weight: math.unit(3280, "lb"),
  19368. name: "Back (Dressed)",
  19369. image: {
  19370. source: "./media/characters/sapphy/back-dressed.svg",
  19371. extra: 2058/1918,
  19372. bottom: 125/2183
  19373. },
  19374. form: "anthro"
  19375. },
  19376. frontNude: {
  19377. height: math.unit(15, "feet"),
  19378. weight: math.unit(3280, "lb"),
  19379. name: "Front (Nude)",
  19380. image: {
  19381. source: "./media/characters/sapphy/front-nude.svg",
  19382. extra: 1951/1654,
  19383. bottom: 194/2145
  19384. },
  19385. form: "anthro"
  19386. },
  19387. backNude: {
  19388. height: math.unit(15, "feet"),
  19389. weight: math.unit(3280, "lb"),
  19390. name: "Back (Nude)",
  19391. image: {
  19392. source: "./media/characters/sapphy/back-nude.svg",
  19393. extra: 2058/1918,
  19394. bottom: 125/2183
  19395. },
  19396. form: "anthro"
  19397. },
  19398. full: {
  19399. height: math.unit(15, "feet"),
  19400. weight: math.unit(3280, "lb"),
  19401. name: "Full",
  19402. image: {
  19403. source: "./media/characters/sapphy/full.svg",
  19404. extra: 1396/1317,
  19405. bottom: 44/1440
  19406. },
  19407. form: "anthro"
  19408. },
  19409. dick: {
  19410. height: math.unit(3.8, "feet"),
  19411. name: "Dick",
  19412. image: {
  19413. source: "./media/characters/sapphy/dick.svg"
  19414. },
  19415. form: "anthro"
  19416. },
  19417. feral: {
  19418. height: math.unit(35, "feet"),
  19419. weight: math.unit(160, "tons"),
  19420. name: "Feral",
  19421. image: {
  19422. source: "./media/characters/sapphy/feral.svg",
  19423. extra: 1050/573,
  19424. bottom: 60/1110
  19425. },
  19426. form: "feral",
  19427. default: true
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(15, "feet"),
  19434. form: "anthro"
  19435. },
  19436. {
  19437. name: "Casual Macro",
  19438. height: math.unit(120, "feet"),
  19439. form: "anthro"
  19440. },
  19441. {
  19442. name: "Macro",
  19443. height: math.unit(2150, "feet"),
  19444. default: true,
  19445. form: "anthro"
  19446. },
  19447. {
  19448. name: "Megamacro",
  19449. height: math.unit(8, "miles"),
  19450. form: "anthro"
  19451. },
  19452. {
  19453. name: "Galaxy Mom",
  19454. height: math.unit(6, "megalightyears"),
  19455. form: "anthro"
  19456. },
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(35, "feet"),
  19460. form: "feral",
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(300, "feet"),
  19466. form: "feral"
  19467. },
  19468. {
  19469. name: "Galaxy Mom",
  19470. height: math.unit(10, "megalightyears"),
  19471. form: "feral"
  19472. },
  19473. ],
  19474. {
  19475. "anthro": {
  19476. name: "Anthro",
  19477. default: true
  19478. },
  19479. "feral": {
  19480. name: "Feral"
  19481. }
  19482. }
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(6, "feet"),
  19489. weight: math.unit(170, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/kiro/front.svg",
  19493. extra: 1064 / 1012,
  19494. bottom: 0.052
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Micro",
  19501. height: math.unit(6, "inches")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(6, "feet"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(72, "feet")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(5 + 9 / 12, "feet"),
  19519. weight: math.unit(175, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/irishfox/front.svg",
  19523. extra: 1912 / 1680,
  19524. bottom: 0.02
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Nano",
  19531. height: math.unit(1, "mm")
  19532. },
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(2, "inches")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(5 + 9 / 12, "feet"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro",
  19544. height: math.unit(45, "feet")
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(75, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/aronai-sieyes/front.svg",
  19557. extra: 1532/1450,
  19558. bottom: 42/1574
  19559. }
  19560. },
  19561. side: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(75, "lb"),
  19564. name: "Side",
  19565. image: {
  19566. source: "./media/characters/aronai-sieyes/side.svg",
  19567. extra: 1422/1365,
  19568. bottom: 148/1570
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(6 + 1 / 12, "feet"),
  19573. weight: math.unit(75, "lb"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/aronai-sieyes/back.svg",
  19577. extra: 1526/1464,
  19578. bottom: 51/1577
  19579. }
  19580. },
  19581. dressed: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(75, "lb"),
  19584. name: "Dressed",
  19585. image: {
  19586. source: "./media/characters/aronai-sieyes/dressed.svg",
  19587. extra: 1559/1483,
  19588. bottom: 39/1598
  19589. }
  19590. },
  19591. slit: {
  19592. height: math.unit(1.3, "feet"),
  19593. name: "Slit",
  19594. image: {
  19595. source: "./media/characters/aronai-sieyes/slit.svg"
  19596. }
  19597. },
  19598. slitSpread: {
  19599. height: math.unit(0.9, "feet"),
  19600. name: "Slit (Spread)",
  19601. image: {
  19602. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19603. }
  19604. },
  19605. rump: {
  19606. height: math.unit(1.3, "feet"),
  19607. name: "Rump",
  19608. image: {
  19609. source: "./media/characters/aronai-sieyes/rump.svg"
  19610. }
  19611. },
  19612. maw: {
  19613. height: math.unit(1.25, "feet"),
  19614. name: "Maw",
  19615. image: {
  19616. source: "./media/characters/aronai-sieyes/maw.svg"
  19617. }
  19618. },
  19619. feral: {
  19620. height: math.unit(18, "feet"),
  19621. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19622. name: "Feral",
  19623. image: {
  19624. source: "./media/characters/aronai-sieyes/feral.svg",
  19625. extra: 1530 / 1240,
  19626. bottom: 0.035
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Micro",
  19633. height: math.unit(2, "inches")
  19634. },
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(6 + 1 / 12, "feet"),
  19638. default: true
  19639. }
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(12, "feet"),
  19647. weight: math.unit(410, "kg"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/xuna/front.svg",
  19651. extra: 2184 / 1980
  19652. }
  19653. },
  19654. side: {
  19655. height: math.unit(12, "feet"),
  19656. weight: math.unit(410, "kg"),
  19657. name: "Side",
  19658. image: {
  19659. source: "./media/characters/xuna/side.svg",
  19660. extra: 2184 / 1980
  19661. }
  19662. },
  19663. back: {
  19664. height: math.unit(12, "feet"),
  19665. weight: math.unit(410, "kg"),
  19666. name: "Back",
  19667. image: {
  19668. source: "./media/characters/xuna/back.svg",
  19669. extra: 2184 / 1980
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Nano glow",
  19676. height: math.unit(10, "nm")
  19677. },
  19678. {
  19679. name: "Micro floof",
  19680. height: math.unit(0.3, "m")
  19681. },
  19682. {
  19683. name: "Huggable softy boi",
  19684. height: math.unit(3.6576, "m"),
  19685. default: true
  19686. },
  19687. {
  19688. name: "Admirable floof",
  19689. height: math.unit(80, "meters")
  19690. },
  19691. {
  19692. name: "Gentle macro",
  19693. height: math.unit(300, "meters")
  19694. },
  19695. {
  19696. name: "Very careful floof",
  19697. height: math.unit(3200, "meters")
  19698. },
  19699. {
  19700. name: "The mega floof",
  19701. height: math.unit(36000, "meters")
  19702. },
  19703. {
  19704. name: "Giga-fur-Wicker",
  19705. height: math.unit(4800000, "meters")
  19706. },
  19707. {
  19708. name: "Licky world",
  19709. height: math.unit(20000000, "meters")
  19710. },
  19711. {
  19712. name: "Floofy cyan sun",
  19713. height: math.unit(1500000000, "meters")
  19714. },
  19715. {
  19716. name: "Milky Wicker",
  19717. height: math.unit(1000000000000000000000, "meters")
  19718. },
  19719. {
  19720. name: "The observing Wicker",
  19721. height: math.unit(999999999999999999999999999, "meters")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(5 + 9 / 12, "feet"),
  19730. weight: math.unit(150, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/arokha-sieyes/front.svg",
  19734. extra: 1425 / 1284,
  19735. bottom: 0.05
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(5 + 9 / 12, "feet")
  19743. },
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(30, "meters"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(6, "feet"),
  19756. weight: math.unit(180, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/arokh-sieyes/front.svg",
  19760. extra: 1830 / 1769,
  19761. bottom: 0.01
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(6, "feet")
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(30, "meters"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19779. {
  19780. side: {
  19781. height: math.unit(13 + 1 / 12, "feet"),
  19782. weight: math.unit(8.5, "tonnes"),
  19783. name: "Side",
  19784. image: {
  19785. source: "./media/characters/goldeneye/side.svg",
  19786. extra: 1182 / 778,
  19787. bottom: 0.067
  19788. }
  19789. },
  19790. paw: {
  19791. height: math.unit(3.4, "feet"),
  19792. name: "Paw",
  19793. image: {
  19794. source: "./media/characters/goldeneye/paw.svg"
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(13 + 1 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19808. {
  19809. front: {
  19810. height: math.unit(6 + 1 / 12, "feet"),
  19811. weight: math.unit(210, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/leonardo-lycheborne/front.svg",
  19815. extra: 776/723,
  19816. bottom: 34/810
  19817. }
  19818. },
  19819. side: {
  19820. height: math.unit(6 + 1 / 12, "feet"),
  19821. weight: math.unit(210, "lb"),
  19822. name: "Side",
  19823. image: {
  19824. source: "./media/characters/leonardo-lycheborne/side.svg",
  19825. extra: 780/728,
  19826. bottom: 12/792
  19827. }
  19828. },
  19829. back: {
  19830. height: math.unit(6 + 1 / 12, "feet"),
  19831. weight: math.unit(210, "lb"),
  19832. name: "Back",
  19833. image: {
  19834. source: "./media/characters/leonardo-lycheborne/back.svg",
  19835. extra: 775/721,
  19836. bottom: 17/792
  19837. }
  19838. },
  19839. hand: {
  19840. height: math.unit(1.08, "feet"),
  19841. name: "Hand",
  19842. image: {
  19843. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19844. }
  19845. },
  19846. foot: {
  19847. height: math.unit(1.32, "feet"),
  19848. name: "Foot",
  19849. image: {
  19850. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19851. }
  19852. },
  19853. maw: {
  19854. height: math.unit(1, "feet"),
  19855. name: "Maw",
  19856. image: {
  19857. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19858. }
  19859. },
  19860. were: {
  19861. height: math.unit(20, "feet"),
  19862. weight: math.unit(7800, "lb"),
  19863. name: "Were",
  19864. image: {
  19865. source: "./media/characters/leonardo-lycheborne/were.svg",
  19866. extra: 1224/1165,
  19867. bottom: 72/1296
  19868. }
  19869. },
  19870. feral: {
  19871. height: math.unit(7.5, "feet"),
  19872. weight: math.unit(600, "lb"),
  19873. name: "Feral",
  19874. image: {
  19875. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19876. extra: 797/702,
  19877. bottom: 139/936
  19878. }
  19879. },
  19880. taur: {
  19881. height: math.unit(11, "feet"),
  19882. weight: math.unit(3300, "lb"),
  19883. name: "Taur",
  19884. image: {
  19885. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19886. extra: 1271/1197,
  19887. bottom: 47/1318
  19888. }
  19889. },
  19890. barghest: {
  19891. height: math.unit(11, "feet"),
  19892. weight: math.unit(1300, "lb"),
  19893. name: "Barghest",
  19894. image: {
  19895. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19896. extra: 1291/1204,
  19897. bottom: 37/1328
  19898. }
  19899. },
  19900. dick: {
  19901. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19902. name: "Dick",
  19903. image: {
  19904. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19905. }
  19906. },
  19907. dickWere: {
  19908. height: math.unit((20) / 3.8, "feet"),
  19909. name: "Dick (Were)",
  19910. image: {
  19911. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(6 + 1 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(10, "feet"),
  19928. weight: math.unit(350, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/jet/front.svg",
  19932. extra: 2050 / 1980,
  19933. bottom: 0.013
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(10, "feet"),
  19938. weight: math.unit(350, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/jet/back.svg",
  19942. extra: 2050 / 1980,
  19943. bottom: 0.013
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(6, "inches")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(10, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(100, "feet")
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(15, "feet"),
  19968. weight: math.unit(2800, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/tanarath/front.svg",
  19972. extra: 2392 / 2220,
  19973. bottom: 0.03
  19974. }
  19975. },
  19976. back: {
  19977. height: math.unit(15, "feet"),
  19978. weight: math.unit(2800, "lb"),
  19979. name: "Back",
  19980. image: {
  19981. source: "./media/characters/tanarath/back.svg",
  19982. extra: 2392 / 2220,
  19983. bottom: 0.03
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(15, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(7 + 1 / 12, "feet"),
  20000. weight: math.unit(175, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/patty-cattybatty/front.svg",
  20004. extra: 908 / 874,
  20005. bottom: 0.025
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Micro",
  20012. height: math.unit(1, "inch")
  20013. },
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(7 + 1 / 12, "feet")
  20017. },
  20018. {
  20019. name: "Mini Macro",
  20020. height: math.unit(155, "feet")
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(1077, "feet")
  20025. },
  20026. {
  20027. name: "Mega Macro",
  20028. height: math.unit(47650, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Giga Macro",
  20033. height: math.unit(440, "miles")
  20034. },
  20035. {
  20036. name: "Tera Macro",
  20037. height: math.unit(8700, "miles")
  20038. },
  20039. {
  20040. name: "Planetary Macro",
  20041. height: math.unit(32700, "miles")
  20042. },
  20043. {
  20044. name: "Solar Macro",
  20045. height: math.unit(550000, "miles")
  20046. },
  20047. {
  20048. name: "Celestial Macro",
  20049. height: math.unit(2.5, "AU")
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(4 + 5 / 12, "feet"),
  20058. weight: math.unit(90, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/cappu/front.svg",
  20062. extra: 1247 / 1152,
  20063. bottom: 0.012
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(4 + 5 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20077. {
  20078. frontDressed: {
  20079. height: math.unit(70, "cm"),
  20080. weight: math.unit(6, "kg"),
  20081. name: "Front (Dressed)",
  20082. image: {
  20083. source: "./media/characters/sebi/front-dressed.svg",
  20084. extra: 713.5 / 686.5,
  20085. bottom: 0.003
  20086. }
  20087. },
  20088. front: {
  20089. height: math.unit(70, "cm"),
  20090. weight: math.unit(5, "kg"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/sebi/front.svg",
  20094. extra: 713.5 / 686.5,
  20095. bottom: 0.003
  20096. }
  20097. }
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(70, "cm"),
  20103. default: true
  20104. },
  20105. {
  20106. name: "Macro",
  20107. height: math.unit(8, "meters")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(6, "feet"),
  20116. weight: math.unit(150, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/typhek/front.svg",
  20120. extra: 1948 / 1929,
  20121. bottom: 0.025
  20122. }
  20123. },
  20124. side: {
  20125. height: math.unit(6, "feet"),
  20126. weight: math.unit(150, "lb"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/typhek/side.svg",
  20130. extra: 2034 / 2010,
  20131. bottom: 0.003
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(6, "feet"),
  20136. weight: math.unit(150, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/typhek/back.svg",
  20140. extra: 2005 / 1978,
  20141. bottom: 0.004
  20142. }
  20143. },
  20144. palm: {
  20145. height: math.unit(1.2, "feet"),
  20146. name: "Palm",
  20147. image: {
  20148. source: "./media/characters/typhek/palm.svg"
  20149. }
  20150. },
  20151. fist: {
  20152. height: math.unit(1.1, "feet"),
  20153. name: "Fist",
  20154. image: {
  20155. source: "./media/characters/typhek/fist.svg"
  20156. }
  20157. },
  20158. foot: {
  20159. height: math.unit(1.57, "feet"),
  20160. name: "Foot",
  20161. image: {
  20162. source: "./media/characters/typhek/foot.svg"
  20163. }
  20164. },
  20165. sole: {
  20166. height: math.unit(2.05, "feet"),
  20167. name: "Sole",
  20168. image: {
  20169. source: "./media/characters/typhek/sole.svg"
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(40, "stories"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Megamacro",
  20181. height: math.unit(1, "mile")
  20182. },
  20183. {
  20184. name: "Gigamacro",
  20185. height: math.unit(4000, "solarradii")
  20186. },
  20187. {
  20188. name: "Universal",
  20189. height: math.unit(1.1, "universes")
  20190. }
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20195. {
  20196. side: {
  20197. height: math.unit(5 + 7 / 12, "feet"),
  20198. weight: math.unit(150, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/kassy/side.svg",
  20202. extra: 1280 / 1225,
  20203. bottom: 0.002
  20204. }
  20205. },
  20206. front: {
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. weight: math.unit(150, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/kassy/front.svg",
  20212. extra: 1280 / 1225,
  20213. bottom: 0.025
  20214. }
  20215. },
  20216. back: {
  20217. height: math.unit(5 + 7 / 12, "feet"),
  20218. weight: math.unit(150, "lb"),
  20219. name: "Back",
  20220. image: {
  20221. source: "./media/characters/kassy/back.svg",
  20222. extra: 1280 / 1225,
  20223. bottom: 0.002
  20224. }
  20225. },
  20226. foot: {
  20227. height: math.unit(1.266, "feet"),
  20228. name: "Foot",
  20229. image: {
  20230. source: "./media/characters/kassy/foot.svg"
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(5 + 7 / 12, "feet")
  20238. },
  20239. {
  20240. name: "Macro",
  20241. height: math.unit(137, "feet"),
  20242. default: true
  20243. },
  20244. {
  20245. name: "Megamacro",
  20246. height: math.unit(1, "mile")
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(6 + 1 / 12, "feet"),
  20255. weight: math.unit(200, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/neil/front.svg",
  20259. extra: 1326 / 1250,
  20260. bottom: 0.023
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(6 + 1 / 12, "feet"),
  20268. default: true
  20269. },
  20270. {
  20271. name: "Macro",
  20272. height: math.unit(200, "feet")
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(5 + 9 / 12, "feet"),
  20281. weight: math.unit(190, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/atticus/front.svg",
  20285. extra: 2934 / 2785,
  20286. bottom: 0.025
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(5 + 9 / 12, "feet"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(180, "feet")
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20304. {
  20305. side: {
  20306. height: math.unit(9, "feet"),
  20307. weight: math.unit(650, "lb"),
  20308. name: "Side",
  20309. image: {
  20310. source: "./media/characters/milo/side.svg",
  20311. extra: 2644 / 2310,
  20312. bottom: 0.032
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(9, "feet"),
  20320. default: true
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(300, "feet")
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20330. {
  20331. side: {
  20332. height: math.unit(8, "meters"),
  20333. weight: math.unit(90000, "kg"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/ijzer/side.svg",
  20337. extra: 2756 / 1600,
  20338. bottom: 0.01
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Small",
  20345. height: math.unit(3, "meters")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(8, "meters"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Normal+",
  20354. height: math.unit(10, "meters")
  20355. },
  20356. {
  20357. name: "Bigger",
  20358. height: math.unit(24, "meters")
  20359. },
  20360. {
  20361. name: "Huge",
  20362. height: math.unit(80, "meters")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(6 + 2 / 12, "feet"),
  20371. weight: math.unit(153, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/luca-cervicum/front.svg",
  20375. extra: 370 / 327,
  20376. bottom: 0.015
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(6 + 2 / 12, "feet"),
  20381. weight: math.unit(153, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/luca-cervicum/back.svg",
  20385. extra: 367 / 333,
  20386. bottom: 0.005
  20387. }
  20388. },
  20389. frontGear: {
  20390. height: math.unit(6 + 2 / 12, "feet"),
  20391. weight: math.unit(173, "lb"),
  20392. name: "Front (Gear)",
  20393. image: {
  20394. source: "./media/characters/luca-cervicum/front-gear.svg",
  20395. extra: 377 / 333,
  20396. bottom: 0.006
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(6 + 2 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(6 + 1 / 12, "feet"),
  20413. weight: math.unit(304, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/oliver/front.svg",
  20417. extra: 157 / 143,
  20418. bottom: 0.08
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(6 + 1 / 12, "feet"),
  20426. default: true
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(5 + 7 / 12, "feet"),
  20435. weight: math.unit(140, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/shane/front.svg",
  20439. extra: 304 / 289,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 9 / 12, "feet"),
  20457. weight: math.unit(178, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/shin/front.svg",
  20461. extra: 159 / 151,
  20462. bottom: 0.015
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(5 + 9 / 12, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5 + 10 / 12, "feet"),
  20479. weight: math.unit(168, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/xerxes/front.svg",
  20483. extra: 282 / 260,
  20484. bottom: 0.045
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(5 + 10 / 12, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(6 + 7 / 12, "feet"),
  20501. weight: math.unit(208, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/chaska/front.svg",
  20505. extra: 332 / 319,
  20506. bottom: 0.015
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Normal",
  20513. height: math.unit(6 + 7 / 12, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(5 + 8 / 12, "feet"),
  20523. weight: math.unit(208, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/enuk/front.svg",
  20527. extra: 437 / 406,
  20528. bottom: 0.02
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 8 / 12, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 10 / 12, "feet"),
  20545. weight: math.unit(252, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/bruun/front.svg",
  20549. extra: 197 / 187,
  20550. bottom: 0.012
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(5 + 10 / 12, "feet"),
  20558. default: true
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(6 + 10 / 12, "feet"),
  20567. weight: math.unit(255, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/alexeev/front.svg",
  20571. extra: 213 / 200,
  20572. bottom: 0.05
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(6 + 10 / 12, "feet"),
  20580. default: true
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(2 + 8 / 12, "feet"),
  20589. weight: math.unit(22, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/evelyn/front.svg",
  20593. extra: 208 / 180
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(2 + 8 / 12, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(5 + 9 / 12, "feet"),
  20610. weight: math.unit(139, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/inca/front.svg",
  20614. extra: 294 / 291,
  20615. bottom: 0.03
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 9 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(6 + 3 / 12, "feet"),
  20632. weight: math.unit(185, "lb"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/mera/front.svg",
  20636. extra: 291 / 277,
  20637. bottom: 0.03
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(6 + 3 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(6 + 7 / 12, "feet"),
  20654. weight: math.unit(160, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/ceres/front.svg",
  20658. extra: 1023 / 950,
  20659. bottom: 0.027
  20660. }
  20661. },
  20662. back: {
  20663. height: math.unit(6 + 7 / 12, "feet"),
  20664. weight: math.unit(160, "lb"),
  20665. name: "Back",
  20666. image: {
  20667. source: "./media/characters/ceres/back.svg",
  20668. extra: 1023 / 950
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(6 + 7 / 12, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(5 + 10 / 12, "feet"),
  20685. weight: math.unit(150, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/kris/front.svg",
  20689. extra: 885 / 803,
  20690. bottom: 0.03
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 10 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(7, "feet"),
  20707. weight: math.unit(120, "kg"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/taluthus/front.svg",
  20711. extra: 903 / 833,
  20712. bottom: 0.015
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(7, "feet"),
  20720. default: true
  20721. },
  20722. {
  20723. name: "Macro",
  20724. height: math.unit(300, "feet")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(5 + 9 / 12, "feet"),
  20733. weight: math.unit(145, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/dawn/front.svg",
  20737. extra: 2094 / 2016,
  20738. bottom: 0.025
  20739. }
  20740. },
  20741. back: {
  20742. height: math.unit(5 + 9 / 12, "feet"),
  20743. weight: math.unit(160, "lb"),
  20744. name: "Back",
  20745. image: {
  20746. source: "./media/characters/dawn/back.svg",
  20747. extra: 2112 / 2080,
  20748. bottom: 0.005
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(6 + 7 / 12, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20762. {
  20763. anthro: {
  20764. height: math.unit(8 + 3 / 12, "feet"),
  20765. weight: math.unit(450, "lb"),
  20766. name: "Anthro",
  20767. image: {
  20768. source: "./media/characters/arador/anthro.svg",
  20769. extra: 1835 / 1718,
  20770. bottom: 0.025
  20771. }
  20772. },
  20773. feral: {
  20774. height: math.unit(4, "feet"),
  20775. weight: math.unit(200, "lb"),
  20776. name: "Feral",
  20777. image: {
  20778. source: "./media/characters/arador/feral.svg",
  20779. extra: 1683 / 1514,
  20780. bottom: 0.07
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(8 + 3 / 12, "feet")
  20788. },
  20789. {
  20790. name: "Macro",
  20791. height: math.unit(82.5, "feet"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(5 + 10 / 12, "feet"),
  20801. weight: math.unit(125, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/dharsi/front.svg",
  20805. extra: 716 / 630,
  20806. bottom: 0.035
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Nano",
  20813. height: math.unit(100, "nm")
  20814. },
  20815. {
  20816. name: "Micro",
  20817. height: math.unit(2, "inches")
  20818. },
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(5 + 10 / 12, "feet"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Macro",
  20826. height: math.unit(1000, "feet")
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(10, "miles")
  20831. },
  20832. {
  20833. name: "Gigamacro",
  20834. height: math.unit(3000, "miles")
  20835. },
  20836. {
  20837. name: "Teramacro",
  20838. height: math.unit(500000, "miles")
  20839. },
  20840. {
  20841. name: "Teramacro+",
  20842. height: math.unit(30, "galaxies")
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(6, "feet"),
  20851. weight: math.unit(150, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/deathy/front.svg",
  20855. extra: 1552 / 1463,
  20856. bottom: 0.025
  20857. }
  20858. },
  20859. side: {
  20860. height: math.unit(6, "feet"),
  20861. weight: math.unit(150, "lb"),
  20862. name: "Side",
  20863. image: {
  20864. source: "./media/characters/deathy/side.svg",
  20865. extra: 1604 / 1455,
  20866. bottom: 0.025
  20867. }
  20868. },
  20869. back: {
  20870. height: math.unit(6, "feet"),
  20871. weight: math.unit(150, "lb"),
  20872. name: "Back",
  20873. image: {
  20874. source: "./media/characters/deathy/back.svg",
  20875. extra: 1580 / 1463,
  20876. bottom: 0.005
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Micro",
  20883. height: math.unit(5, "millimeters")
  20884. },
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(6 + 5 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20894. {
  20895. front: {
  20896. height: math.unit(16, "feet"),
  20897. weight: math.unit(4000, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/juniper/front.svg",
  20901. bottom: 0.04
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(16, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(6, "feet"),
  20918. weight: math.unit(150, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/hipster/front.svg",
  20922. extra: 1312 / 1209,
  20923. bottom: 0.025
  20924. }
  20925. },
  20926. back: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(150, "lb"),
  20929. name: "Back",
  20930. image: {
  20931. source: "./media/characters/hipster/back.svg",
  20932. extra: 1281 / 1196,
  20933. bottom: 0.01
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Micro",
  20940. height: math.unit(1, "mm")
  20941. },
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(4, "inches"),
  20945. default: true
  20946. },
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(500, "feet")
  20950. },
  20951. {
  20952. name: "Megamacro",
  20953. height: math.unit(1000, "miles")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(6, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/tendirmuldr/front.svg",
  20966. extra: 1878 / 1772,
  20967. bottom: 0.015
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Megamacro",
  20974. height: math.unit(1500, "miles"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20981. {
  20982. front: {
  20983. height: math.unit(14, "feet"),
  20984. weight: math.unit(12000, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/mort/front.svg",
  20988. extra: 365 / 318,
  20989. bottom: 0.01
  20990. }
  20991. },
  20992. side: {
  20993. height: math.unit(14, "feet"),
  20994. weight: math.unit(12000, "lb"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/mort/side.svg",
  20998. extra: 365 / 318,
  20999. bottom: 0.052
  21000. },
  21001. default: true
  21002. },
  21003. back: {
  21004. height: math.unit(14, "feet"),
  21005. weight: math.unit(12000, "lb"),
  21006. name: "Back",
  21007. image: {
  21008. source: "./media/characters/mort/back.svg",
  21009. extra: 371 / 332,
  21010. bottom: 0.18
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(14, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21024. {
  21025. front: {
  21026. height: math.unit(8, "feet"),
  21027. weight: math.unit(1, "ton"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/lycoa/front.svg",
  21031. extra: 1836/1728,
  21032. bottom: 81/1917
  21033. }
  21034. },
  21035. back: {
  21036. height: math.unit(8, "feet"),
  21037. weight: math.unit(1, "ton"),
  21038. name: "Back",
  21039. image: {
  21040. source: "./media/characters/lycoa/back.svg",
  21041. extra: 1785/1720,
  21042. bottom: 91/1876
  21043. }
  21044. },
  21045. head: {
  21046. height: math.unit(1.6243, "feet"),
  21047. name: "Head",
  21048. image: {
  21049. source: "./media/characters/lycoa/head.svg",
  21050. extra: 1011/782,
  21051. bottom: 0/1011
  21052. }
  21053. },
  21054. tailmaw: {
  21055. height: math.unit(1.9, "feet"),
  21056. name: "Tailmaw",
  21057. image: {
  21058. source: "./media/characters/lycoa/tailmaw.svg"
  21059. }
  21060. },
  21061. tentacles: {
  21062. height: math.unit(2.1, "feet"),
  21063. name: "Tentacles",
  21064. image: {
  21065. source: "./media/characters/lycoa/tentacles.svg"
  21066. }
  21067. },
  21068. dick: {
  21069. height: math.unit(1.73, "feet"),
  21070. name: "Dick",
  21071. image: {
  21072. source: "./media/characters/lycoa/dick.svg"
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(8, "feet"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(30, "feet")
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21090. {
  21091. front: {
  21092. height: math.unit(4 + 2 / 12, "feet"),
  21093. weight: math.unit(70, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/naldara/front.svg",
  21097. extra: 1664/1387,
  21098. bottom: 81/1745
  21099. },
  21100. form: "anthro",
  21101. default: true
  21102. },
  21103. naga: {
  21104. height: math.unit(20, "feet"),
  21105. weight: math.unit(15000, "kg"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/naldara/naga.svg",
  21109. extra: 1590/1396,
  21110. bottom: 285/1875
  21111. },
  21112. form: "naga",
  21113. default: true
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(4 + 2 / 12, "feet"),
  21120. form: "anthro",
  21121. default: true
  21122. },
  21123. {
  21124. name: "Normal",
  21125. height: math.unit(20, "feet"),
  21126. form: "naga",
  21127. default: true
  21128. },
  21129. ],
  21130. {
  21131. "anthro": {
  21132. name: "Anthro",
  21133. default: true
  21134. },
  21135. "naga": {
  21136. name: "Naga"
  21137. }
  21138. }
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(13 + 7 / 12, "feet"),
  21145. weight: math.unit(1500, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/briar/front.svg",
  21149. extra: 1223/1157,
  21150. bottom: 123/1346
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(13 + 7 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21164. {
  21165. side: {
  21166. height: math.unit(16, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/vanguard/side.svg",
  21171. extra: 1022/914,
  21172. bottom: 30/1052
  21173. }
  21174. },
  21175. sideAlt: {
  21176. height: math.unit(10, "feet"),
  21177. weight: math.unit(500, "lb"),
  21178. name: "Side (Alt)",
  21179. image: {
  21180. source: "./media/characters/vanguard/side-alt.svg",
  21181. extra: 502 / 425,
  21182. bottom: 0.087
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(17.71, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(7.5, "feet"),
  21199. weight: math.unit(2, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/artemis/work-safe-front.svg",
  21203. extra: 1192 / 1075,
  21204. bottom: 0.07
  21205. },
  21206. form: "work-safe",
  21207. default: true
  21208. },
  21209. frontNsfw: {
  21210. height: math.unit(7.5, "feet"),
  21211. weight: math.unit(2, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/artemis/calibrating-front.svg",
  21215. extra: 1192 / 1075,
  21216. bottom: 0.07
  21217. },
  21218. form: "calibrating",
  21219. default: true
  21220. },
  21221. frontNsfwer: {
  21222. height: math.unit(7.5, "feet"),
  21223. weight: math.unit(2, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/artemis/oversize-load-front.svg",
  21227. extra: 1192 / 1075,
  21228. bottom: 0.07
  21229. },
  21230. form: "oversize-load",
  21231. default: true
  21232. },
  21233. side: {
  21234. height: math.unit(7.5, "feet"),
  21235. weight: math.unit(2, "lb"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/artemis/work-safe-side.svg",
  21239. extra: 1192 / 1075,
  21240. bottom: 0.07
  21241. },
  21242. form: "work-safe"
  21243. },
  21244. sideNsfw: {
  21245. height: math.unit(7.5, "feet"),
  21246. weight: math.unit(2, "lb"),
  21247. name: "Side",
  21248. image: {
  21249. source: "./media/characters/artemis/calibrating-side.svg",
  21250. extra: 1192 / 1075,
  21251. bottom: 0.07
  21252. },
  21253. form: "calibrating"
  21254. },
  21255. sideNsfwer: {
  21256. height: math.unit(7.5, "feet"),
  21257. weight: math.unit(2, "lb"),
  21258. name: "Side",
  21259. image: {
  21260. source: "./media/characters/artemis/oversize-load-side.svg",
  21261. extra: 1192 / 1075,
  21262. bottom: 0.07
  21263. },
  21264. form: "oversize-load"
  21265. },
  21266. maw: {
  21267. height: math.unit(1.1, "feet"),
  21268. name: "Maw",
  21269. image: {
  21270. source: "./media/characters/artemis/maw.svg"
  21271. },
  21272. form: "work-safe"
  21273. },
  21274. stomach: {
  21275. height: math.unit(0.95, "feet"),
  21276. name: "Stomach",
  21277. image: {
  21278. source: "./media/characters/artemis/stomach.svg"
  21279. },
  21280. form: "work-safe"
  21281. },
  21282. dickCanine: {
  21283. height: math.unit(1, "feet"),
  21284. name: "Dick (Canine)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-canine.svg"
  21287. },
  21288. form: "calibrating"
  21289. },
  21290. dickEquine: {
  21291. height: math.unit(0.85, "feet"),
  21292. name: "Dick (Equine)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-equine.svg"
  21295. },
  21296. form: "calibrating"
  21297. },
  21298. dickExotic: {
  21299. height: math.unit(0.85, "feet"),
  21300. name: "Dick (Exotic)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-exotic.svg"
  21303. },
  21304. form: "calibrating"
  21305. },
  21306. dickCanineBigger: {
  21307. height: math.unit(1 * 1.33, "feet"),
  21308. name: "Dick (Canine)",
  21309. image: {
  21310. source: "./media/characters/artemis/dick-canine.svg"
  21311. },
  21312. form: "oversize-load"
  21313. },
  21314. dickEquineBigger: {
  21315. height: math.unit(0.85 * 1.33, "feet"),
  21316. name: "Dick (Equine)",
  21317. image: {
  21318. source: "./media/characters/artemis/dick-equine.svg"
  21319. },
  21320. form: "oversize-load"
  21321. },
  21322. dickExoticBigger: {
  21323. height: math.unit(0.85 * 1.33, "feet"),
  21324. name: "Dick (Exotic)",
  21325. image: {
  21326. source: "./media/characters/artemis/dick-exotic.svg"
  21327. },
  21328. form: "oversize-load"
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(7.5, "feet"),
  21335. form: "work-safe",
  21336. default: true
  21337. },
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(7.5, "feet"),
  21341. form: "calibrating",
  21342. default: true
  21343. },
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(7.5, "feet"),
  21347. form: "oversize-load",
  21348. default: true
  21349. },
  21350. {
  21351. name: "Enlarged",
  21352. height: math.unit(12, "feet"),
  21353. form: "work-safe",
  21354. },
  21355. {
  21356. name: "Enlarged",
  21357. height: math.unit(12, "feet"),
  21358. form: "calibrating",
  21359. },
  21360. {
  21361. name: "Enlarged",
  21362. height: math.unit(12, "feet"),
  21363. form: "oversize-load",
  21364. },
  21365. ],
  21366. {
  21367. "work-safe": {
  21368. name: "Work-Safe",
  21369. default: true
  21370. },
  21371. "calibrating": {
  21372. name: "Calibrating"
  21373. },
  21374. "oversize-load": {
  21375. name: "Oversize Load"
  21376. }
  21377. }
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(5 + 3 / 12, "feet"),
  21384. weight: math.unit(160, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/kira/front.svg",
  21388. extra: 906 / 786,
  21389. bottom: 0.01
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(5 + 3 / 12, "feet"),
  21394. weight: math.unit(160, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/kira/back.svg",
  21398. extra: 882 / 757,
  21399. bottom: 0.005
  21400. }
  21401. },
  21402. frontDressed: {
  21403. height: math.unit(5 + 3 / 12, "feet"),
  21404. weight: math.unit(160, "lb"),
  21405. name: "Front (Dressed)",
  21406. image: {
  21407. source: "./media/characters/kira/front-dressed.svg",
  21408. extra: 906 / 786,
  21409. bottom: 0.01
  21410. }
  21411. },
  21412. beans: {
  21413. height: math.unit(0.92, "feet"),
  21414. name: "Beans",
  21415. image: {
  21416. source: "./media/characters/kira/beans.svg"
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(5 + 3 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 4 / 12, "feet"),
  21433. weight: math.unit(145, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/scramble/front.svg",
  21437. extra: 763 / 727,
  21438. bottom: 0.05
  21439. }
  21440. },
  21441. back: {
  21442. height: math.unit(5 + 4 / 12, "feet"),
  21443. weight: math.unit(145, "lb"),
  21444. name: "Back",
  21445. image: {
  21446. source: "./media/characters/scramble/back.svg",
  21447. extra: 826 / 737,
  21448. bottom: 0.002
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(5 + 4 / 12, "feet"),
  21456. default: true
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21462. {
  21463. side: {
  21464. height: math.unit(6 + 2 / 12, "feet"),
  21465. weight: math.unit(190, "lb"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/biscuit/side.svg",
  21469. extra: 858 / 791,
  21470. bottom: 0.044
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(6 + 2 / 12, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(5 + 2 / 12, "feet"),
  21487. weight: math.unit(120, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/poffin/front.svg",
  21491. extra: 786 / 680,
  21492. bottom: 0.005
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(5 + 2 / 12, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(6 + 3 / 12, "feet"),
  21509. weight: math.unit(519, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/dhari/front.svg",
  21513. extra: 1048 / 946,
  21514. bottom: 0.015
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(6 + 3 / 12, "feet"),
  21519. weight: math.unit(519, "lb"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/dhari/back.svg",
  21523. extra: 1048 / 931,
  21524. bottom: 0.005
  21525. }
  21526. },
  21527. frontDressed: {
  21528. height: math.unit(6 + 3 / 12, "feet"),
  21529. weight: math.unit(519, "lb"),
  21530. name: "Front (Dressed)",
  21531. image: {
  21532. source: "./media/characters/dhari/front-dressed.svg",
  21533. extra: 1713 / 1546,
  21534. bottom: 0.02
  21535. }
  21536. },
  21537. backDressed: {
  21538. height: math.unit(6 + 3 / 12, "feet"),
  21539. weight: math.unit(519, "lb"),
  21540. name: "Back (Dressed)",
  21541. image: {
  21542. source: "./media/characters/dhari/back-dressed.svg",
  21543. extra: 1699 / 1537,
  21544. bottom: 0.01
  21545. }
  21546. },
  21547. maw: {
  21548. height: math.unit(0.95, "feet"),
  21549. name: "Maw",
  21550. image: {
  21551. source: "./media/characters/dhari/maw.svg"
  21552. }
  21553. },
  21554. wereFront: {
  21555. height: math.unit(12 + 8 / 12, "feet"),
  21556. weight: math.unit(4000, "lb"),
  21557. name: "Front (Were)",
  21558. image: {
  21559. source: "./media/characters/dhari/were-front.svg",
  21560. extra: 1065 / 969,
  21561. bottom: 0.015
  21562. }
  21563. },
  21564. wereBack: {
  21565. height: math.unit(12 + 8 / 12, "feet"),
  21566. weight: math.unit(4000, "lb"),
  21567. name: "Back (Were)",
  21568. image: {
  21569. source: "./media/characters/dhari/were-back.svg",
  21570. extra: 1065 / 969,
  21571. bottom: 0.012
  21572. }
  21573. },
  21574. wereMaw: {
  21575. height: math.unit(0.625, "meters"),
  21576. name: "Maw (Were)",
  21577. image: {
  21578. source: "./media/characters/dhari/were-maw.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(6 + 3 / 12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21592. {
  21593. anthro: {
  21594. height: math.unit(5 + 7 / 12, "feet"),
  21595. weight: math.unit(175, "lb"),
  21596. name: "Anthro",
  21597. image: {
  21598. source: "./media/characters/rena-dyne/anthro.svg",
  21599. extra: 1849 / 1785,
  21600. bottom: 0.005
  21601. }
  21602. },
  21603. taur: {
  21604. height: math.unit(15 + 6 / 12, "feet"),
  21605. weight: math.unit(8000, "lb"),
  21606. name: "Taur",
  21607. image: {
  21608. source: "./media/characters/rena-dyne/taur.svg",
  21609. extra: 2315 / 2234,
  21610. bottom: 0.033
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(5 + 7 / 12, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(8, "feet"),
  21627. weight: math.unit(600, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/weremeep/front.svg",
  21631. extra: 967 / 862,
  21632. bottom: 0.01
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(8, "feet"),
  21640. default: true
  21641. },
  21642. {
  21643. name: "Lorg",
  21644. height: math.unit(12, "feet")
  21645. },
  21646. {
  21647. name: "Oh Lawd She Comin'",
  21648. height: math.unit(20, "feet")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21654. {
  21655. front: {
  21656. height: math.unit(4, "feet"),
  21657. weight: math.unit(90, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/reza/front.svg",
  21661. extra: 1183 / 1111,
  21662. bottom: 0.017
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(4, "feet"),
  21667. weight: math.unit(90, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/reza/back.svg",
  21671. extra: 1183 / 1111,
  21672. bottom: 0.01
  21673. }
  21674. },
  21675. drake: {
  21676. height: math.unit(30, "feet"),
  21677. weight: math.unit(246960, "lb"),
  21678. name: "Drake",
  21679. image: {
  21680. source: "./media/characters/reza/drake.svg",
  21681. extra: 2350 / 2024,
  21682. bottom: 60.7 / 2403
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(4, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21696. {
  21697. side: {
  21698. height: math.unit(15, "feet"),
  21699. weight: math.unit(14, "tons"),
  21700. name: "Side",
  21701. image: {
  21702. source: "./media/characters/athea/side.svg",
  21703. extra: 960 / 540,
  21704. bottom: 0.003
  21705. }
  21706. },
  21707. sitting: {
  21708. height: math.unit(6 * 2.85, "feet"),
  21709. weight: math.unit(14, "tons"),
  21710. name: "Sitting",
  21711. image: {
  21712. source: "./media/characters/athea/sitting.svg",
  21713. extra: 621 / 581,
  21714. bottom: 0.075
  21715. }
  21716. },
  21717. maw: {
  21718. height: math.unit(7.59498031496063, "feet"),
  21719. name: "Maw",
  21720. image: {
  21721. source: "./media/characters/athea/maw.svg"
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Lap Cat",
  21728. height: math.unit(2.5, "feet")
  21729. },
  21730. {
  21731. name: "Minimacro",
  21732. height: math.unit(15, "feet"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(120, "feet")
  21738. },
  21739. {
  21740. name: "Macro+",
  21741. height: math.unit(640, "feet")
  21742. },
  21743. {
  21744. name: "Colossus",
  21745. height: math.unit(2.2, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(8 + 8 / 12, "feet"),
  21754. weight: math.unit(130, "kg"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/seroko/front.svg",
  21758. extra: 1385 / 1280,
  21759. bottom: 0.025
  21760. }
  21761. },
  21762. back: {
  21763. height: math.unit(8 + 8 / 12, "feet"),
  21764. weight: math.unit(130, "kg"),
  21765. name: "Back",
  21766. image: {
  21767. source: "./media/characters/seroko/back.svg",
  21768. extra: 1369 / 1238,
  21769. bottom: 0.018
  21770. }
  21771. },
  21772. frontDressed: {
  21773. height: math.unit(8 + 8 / 12, "feet"),
  21774. weight: math.unit(130, "kg"),
  21775. name: "Front (Dressed)",
  21776. image: {
  21777. source: "./media/characters/seroko/front-dressed.svg",
  21778. extra: 1366 / 1275,
  21779. bottom: 0.03
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(8 + 8 / 12, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(5.5, "feet"),
  21796. weight: math.unit(160, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/quatzi/front.svg",
  21800. extra: 2346 / 2242,
  21801. bottom: 0.015
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(5.5, "feet"),
  21809. default: true
  21810. },
  21811. {
  21812. name: "Big",
  21813. height: math.unit(7.7, "feet")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(5 + 11 / 12, "feet"),
  21822. weight: math.unit(180, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/sen/front.svg",
  21826. extra: 1321 / 1254,
  21827. bottom: 0.015
  21828. }
  21829. },
  21830. side: {
  21831. height: math.unit(5 + 11 / 12, "feet"),
  21832. weight: math.unit(180, "lb"),
  21833. name: "Side",
  21834. image: {
  21835. source: "./media/characters/sen/side.svg",
  21836. extra: 1321 / 1254,
  21837. bottom: 0.007
  21838. }
  21839. },
  21840. back: {
  21841. height: math.unit(5 + 11 / 12, "feet"),
  21842. weight: math.unit(180, "lb"),
  21843. name: "Back",
  21844. image: {
  21845. source: "./media/characters/sen/back.svg",
  21846. extra: 1321 / 1254
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(5 + 11 / 12, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(166.6, "cm"),
  21863. weight: math.unit(66.6, "kg"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/fruity/front.svg",
  21867. extra: 1510 / 1386,
  21868. bottom: 0.04
  21869. }
  21870. },
  21871. back: {
  21872. height: math.unit(166.6, "cm"),
  21873. weight: math.unit(66.6, "lb"),
  21874. name: "Back",
  21875. image: {
  21876. source: "./media/characters/fruity/back.svg",
  21877. extra: 1563 / 1435,
  21878. bottom: 0.005
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(166.6, "cm"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Demonic",
  21890. height: math.unit(166.6, "feet")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21896. {
  21897. side: {
  21898. height: math.unit(10, "feet"),
  21899. weight: math.unit(500, "lb"),
  21900. name: "Side",
  21901. image: {
  21902. source: "./media/characters/zost/side.svg",
  21903. extra: 2870/2533,
  21904. bottom: 252/3122
  21905. }
  21906. },
  21907. mawFront: {
  21908. height: math.unit(1.08, "meters"),
  21909. name: "Maw (Front)",
  21910. image: {
  21911. source: "./media/characters/zost/maw-front.svg"
  21912. }
  21913. },
  21914. mawSide: {
  21915. height: math.unit(2.66, "feet"),
  21916. name: "Maw (Side)",
  21917. image: {
  21918. source: "./media/characters/zost/maw-side.svg"
  21919. }
  21920. },
  21921. wingspan: {
  21922. height: math.unit(7.4, "feet"),
  21923. name: "Wingspan",
  21924. image: {
  21925. source: "./media/characters/zost/wingspan.svg"
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(10, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5 + 4 / 12, "feet"),
  21942. weight: math.unit(120, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/luci/front.svg",
  21946. extra: 1985 / 1884,
  21947. bottom: 0.04
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(5 + 4 / 12, "feet"),
  21952. weight: math.unit(120, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/luci/back.svg",
  21956. extra: 1892 / 1791,
  21957. bottom: 0.002
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 4 / 12, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(1500, "feet"),
  21974. weight: math.unit(3.8e6, "tons"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/2th/front.svg",
  21978. extra: 3489 / 3350,
  21979. bottom: 0.1
  21980. }
  21981. },
  21982. foot: {
  21983. height: math.unit(461, "feet"),
  21984. name: "Foot",
  21985. image: {
  21986. source: "./media/characters/2th/foot.svg"
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "\"Micro\"",
  21993. height: math.unit(15 + 7 / 12, "feet")
  21994. },
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(1500, "feet"),
  21998. default: true
  21999. },
  22000. {
  22001. name: "Macro",
  22002. height: math.unit(5000, "feet")
  22003. },
  22004. {
  22005. name: "Megamacro",
  22006. height: math.unit(15, "miles")
  22007. },
  22008. {
  22009. name: "Gigamacro",
  22010. height: math.unit(4000, "miles")
  22011. },
  22012. {
  22013. name: "Galactic",
  22014. height: math.unit(50, "AU")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 6 / 12, "feet"),
  22023. weight: math.unit(220, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/amethyst/front.svg",
  22027. extra: 2078 / 2040,
  22028. bottom: 0.045
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(5 + 6 / 12, "feet"),
  22033. weight: math.unit(220, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/amethyst/back.svg",
  22037. extra: 2021 / 1989,
  22038. bottom: 0.02
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 6 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(4 + 11 / 12, "feet"),
  22055. weight: math.unit(120, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/yumi-akiyama/front.svg",
  22059. extra: 1327 / 1235,
  22060. bottom: 0.02
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(4 + 11 / 12, "feet"),
  22065. weight: math.unit(120, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/yumi-akiyama/back.svg",
  22069. extra: 1287 / 1245,
  22070. bottom: 0.002
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Galactic",
  22077. height: math.unit(50, "galaxies"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Universal",
  22082. height: math.unit(100, "universes")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(8, "feet"),
  22091. weight: math.unit(500, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/rifter-yrmori/front.svg",
  22095. extra: 1180 / 1125,
  22096. bottom: 0.02
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(8, "feet"),
  22101. weight: math.unit(500, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/rifter-yrmori/back.svg",
  22105. extra: 1190 / 1145,
  22106. bottom: 0.001
  22107. }
  22108. },
  22109. wings: {
  22110. height: math.unit(7.75, "feet"),
  22111. weight: math.unit(500, "lb"),
  22112. name: "Wings",
  22113. image: {
  22114. source: "./media/characters/rifter-yrmori/wings.svg",
  22115. extra: 1357 / 1285
  22116. }
  22117. },
  22118. maw: {
  22119. height: math.unit(0.8, "feet"),
  22120. name: "Maw",
  22121. image: {
  22122. source: "./media/characters/rifter-yrmori/maw.svg"
  22123. }
  22124. },
  22125. mawfront: {
  22126. height: math.unit(1.45, "feet"),
  22127. name: "Maw (Front)",
  22128. image: {
  22129. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(8, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(42, "meters")
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22147. {
  22148. were: {
  22149. height: math.unit(25 + 6 / 12, "feet"),
  22150. weight: math.unit(10000, "lb"),
  22151. name: "Were",
  22152. image: {
  22153. source: "./media/characters/tahajin/were.svg",
  22154. extra: 801 / 770,
  22155. bottom: 0.042
  22156. }
  22157. },
  22158. aquatic: {
  22159. height: math.unit(6 + 4 / 12, "feet"),
  22160. weight: math.unit(160, "lb"),
  22161. name: "Aquatic",
  22162. image: {
  22163. source: "./media/characters/tahajin/aquatic.svg",
  22164. extra: 572 / 542,
  22165. bottom: 0.04
  22166. }
  22167. },
  22168. chow: {
  22169. height: math.unit(8 + 11 / 12, "feet"),
  22170. weight: math.unit(450, "lb"),
  22171. name: "Chow",
  22172. image: {
  22173. source: "./media/characters/tahajin/chow.svg",
  22174. extra: 660 / 640,
  22175. bottom: 0.015
  22176. }
  22177. },
  22178. demiNaga: {
  22179. height: math.unit(6 + 8 / 12, "feet"),
  22180. weight: math.unit(300, "lb"),
  22181. name: "Demi Naga",
  22182. image: {
  22183. source: "./media/characters/tahajin/demi-naga.svg",
  22184. extra: 643 / 615,
  22185. bottom: 0.1
  22186. }
  22187. },
  22188. data: {
  22189. height: math.unit(5, "inches"),
  22190. weight: math.unit(0.1, "lb"),
  22191. name: "Data",
  22192. image: {
  22193. source: "./media/characters/tahajin/data.svg"
  22194. }
  22195. },
  22196. fluu: {
  22197. height: math.unit(5 + 7 / 12, "feet"),
  22198. weight: math.unit(140, "lb"),
  22199. name: "Fluu",
  22200. image: {
  22201. source: "./media/characters/tahajin/fluu.svg",
  22202. extra: 628 / 592,
  22203. bottom: 0.02
  22204. }
  22205. },
  22206. starWarrior: {
  22207. height: math.unit(4 + 5 / 12, "feet"),
  22208. weight: math.unit(50, "lb"),
  22209. name: "Star Warrior",
  22210. image: {
  22211. source: "./media/characters/tahajin/star-warrior.svg"
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(25 + 6 / 12, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(8, "feet"),
  22228. weight: math.unit(350, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/gabira/front.svg",
  22232. extra: 608 / 580,
  22233. bottom: 0.03
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(8, "feet"),
  22238. weight: math.unit(350, "lb"),
  22239. name: "Back",
  22240. image: {
  22241. source: "./media/characters/gabira/back.svg",
  22242. extra: 608 / 580,
  22243. bottom: 0.03
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(8, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(5 + 3 / 12, "feet"),
  22260. weight: math.unit(137, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/sasha-katraine/front.svg",
  22264. extra: 1745/1694,
  22265. bottom: 37/1782
  22266. }
  22267. },
  22268. back: {
  22269. height: math.unit(5 + 3 / 12, "feet"),
  22270. weight: math.unit(137, "lb"),
  22271. name: "Back",
  22272. image: {
  22273. source: "./media/characters/sasha-katraine/back.svg",
  22274. extra: 1776/1699,
  22275. bottom: 26/1802
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Micro",
  22282. height: math.unit(5, "inches")
  22283. },
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(5 + 3 / 12, "feet"),
  22287. default: true
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22293. {
  22294. side: {
  22295. height: math.unit(4, "inches"),
  22296. weight: math.unit(200, "grams"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/der/side.svg",
  22300. extra: 719 / 400,
  22301. bottom: 30.6 / 749.9187
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Micro",
  22308. height: math.unit(4, "inches"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22315. {
  22316. side: {
  22317. height: math.unit(30, "meters"),
  22318. weight: math.unit(700, "tonnes"),
  22319. name: "Side",
  22320. image: {
  22321. source: "./media/characters/fixerdragon/side.svg",
  22322. extra: (1293.0514 - 116.03) / 1106.86,
  22323. bottom: 116.03 / 1293.0514
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Planck",
  22330. height: math.unit(1.6e-35, "meters")
  22331. },
  22332. {
  22333. name: "Micro",
  22334. height: math.unit(0.4, "meters")
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(30, "meters"),
  22339. default: true
  22340. },
  22341. {
  22342. name: "Megamacro",
  22343. height: math.unit(1.2, "megameters")
  22344. },
  22345. {
  22346. name: "Teramacro",
  22347. height: math.unit(130, "terameters")
  22348. },
  22349. {
  22350. name: "Yottamacro",
  22351. height: math.unit(6200, "yottameters")
  22352. },
  22353. ]
  22354. ));
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(8, "feet"),
  22360. weight: math.unit(250, "lb"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/kite/front.svg",
  22364. extra: 2796 / 2659,
  22365. bottom: 0.002
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(8, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(360, "feet")
  22378. },
  22379. {
  22380. name: "Megamacro",
  22381. height: math.unit(1500, "feet")
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(5 + 11/12, "feet"),
  22390. weight: math.unit(170, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/poojawa-vynar/front.svg",
  22394. extra: 1735/1585,
  22395. bottom: 96/1831
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(5 + 11/12, "feet"),
  22400. weight: math.unit(170, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/poojawa-vynar/back.svg",
  22404. extra: 1749/1607,
  22405. bottom: 28/1777
  22406. }
  22407. },
  22408. male: {
  22409. height: math.unit(5 + 11/12, "feet"),
  22410. weight: math.unit(170, "lb"),
  22411. name: "Male",
  22412. image: {
  22413. source: "./media/characters/poojawa-vynar/male.svg",
  22414. extra: 1855/1713,
  22415. bottom: 63/1918
  22416. }
  22417. },
  22418. taur: {
  22419. height: math.unit(5 + 11/12, "feet"),
  22420. weight: math.unit(170, "lb"),
  22421. name: "Taur",
  22422. image: {
  22423. source: "./media/characters/poojawa-vynar/taur.svg",
  22424. extra: 1151/1059,
  22425. bottom: 356/1507
  22426. }
  22427. },
  22428. frontDressed: {
  22429. height: math.unit(5 + 11/12, "feet"),
  22430. weight: math.unit(170, "lb"),
  22431. name: "Front (Dressed)",
  22432. image: {
  22433. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22434. extra: 1735/1585,
  22435. bottom: 96/1831
  22436. }
  22437. },
  22438. backDressed: {
  22439. height: math.unit(5 + 11/12, "feet"),
  22440. weight: math.unit(170, "lb"),
  22441. name: "Back (Dressed)",
  22442. image: {
  22443. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22444. extra: 1749/1607,
  22445. bottom: 28/1777
  22446. }
  22447. },
  22448. maleDressed: {
  22449. height: math.unit(5 + 11/12, "feet"),
  22450. weight: math.unit(170, "lb"),
  22451. name: "Male (Dressed)",
  22452. image: {
  22453. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22454. extra: 1855/1713,
  22455. bottom: 63/1918
  22456. }
  22457. },
  22458. taurDressed: {
  22459. height: math.unit(5 + 11/12, "feet"),
  22460. weight: math.unit(170, "lb"),
  22461. name: "Taur (Dressed)",
  22462. image: {
  22463. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22464. extra: 1151/1059,
  22465. bottom: 356/1507
  22466. }
  22467. },
  22468. maw: {
  22469. height: math.unit(1.46, "feet"),
  22470. name: "Maw",
  22471. image: {
  22472. source: "./media/characters/poojawa-vynar/maw.svg"
  22473. }
  22474. },
  22475. head: {
  22476. height: math.unit(2.34, "feet"),
  22477. name: "Head",
  22478. image: {
  22479. source: "./media/characters/poojawa-vynar/head.svg"
  22480. }
  22481. },
  22482. paw: {
  22483. height: math.unit(1.61, "feet"),
  22484. name: "Paw",
  22485. image: {
  22486. source: "./media/characters/poojawa-vynar/paw.svg"
  22487. }
  22488. },
  22489. pawToering: {
  22490. height: math.unit(1.72, "feet"),
  22491. name: "Paw (Toering)",
  22492. image: {
  22493. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22494. }
  22495. },
  22496. toering: {
  22497. height: math.unit(2.9, "inches"),
  22498. name: "Toering",
  22499. image: {
  22500. source: "./media/characters/poojawa-vynar/toering.svg"
  22501. }
  22502. },
  22503. shaft: {
  22504. height: math.unit(0.625, "feet"),
  22505. name: "Shaft",
  22506. image: {
  22507. source: "./media/characters/poojawa-vynar/shaft.svg"
  22508. }
  22509. },
  22510. spade: {
  22511. height: math.unit(0.42, "feet"),
  22512. name: "Spade",
  22513. image: {
  22514. source: "./media/characters/poojawa-vynar/spade.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Shortstack",
  22521. height: math.unit(4, "feet")
  22522. },
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(5 + 11 / 12, "feet"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Tauric",
  22530. height: math.unit(4, "meters")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22536. {
  22537. front: {
  22538. height: math.unit(293, "meters"),
  22539. weight: math.unit(70400, "tons"),
  22540. name: "Front",
  22541. image: {
  22542. source: "./media/characters/violette/front.svg",
  22543. extra: 1227 / 1180,
  22544. bottom: 0.005
  22545. }
  22546. },
  22547. back: {
  22548. height: math.unit(293, "meters"),
  22549. weight: math.unit(70400, "tons"),
  22550. name: "Back",
  22551. image: {
  22552. source: "./media/characters/violette/back.svg",
  22553. extra: 1227 / 1180,
  22554. bottom: 0.005
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Macro",
  22561. height: math.unit(293, "meters"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(1050, "feet"),
  22571. weight: math.unit(200000, "tons"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/alessandra/front.svg",
  22575. extra: 960 / 912,
  22576. bottom: 0.06
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(1050, "feet")
  22584. },
  22585. {
  22586. name: "Macro+",
  22587. height: math.unit(900, "meters"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(5, "feet"),
  22597. weight: math.unit(187, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/person/front.svg",
  22601. extra: 3087 / 2945,
  22602. bottom: 91 / 3181
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Micro",
  22609. height: math.unit(3, "inches")
  22610. },
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5, "feet"),
  22614. default: true
  22615. },
  22616. {
  22617. name: "Macro",
  22618. height: math.unit(90, "feet")
  22619. },
  22620. {
  22621. name: "Max Size",
  22622. height: math.unit(280, "feet")
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(4.5, "meters"),
  22631. weight: math.unit(3200, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/ty/front.svg",
  22635. extra: 1038 / 960,
  22636. bottom: 31.156 / 1068
  22637. }
  22638. },
  22639. back: {
  22640. height: math.unit(4.5, "meters"),
  22641. weight: math.unit(3200, "lb"),
  22642. name: "Back",
  22643. image: {
  22644. source: "./media/characters/ty/back.svg",
  22645. extra: 1044 / 966,
  22646. bottom: 7.48 / 1049
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(4.5, "meters"),
  22654. default: true
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(5 + 4 / 12, "feet"),
  22663. weight: math.unit(115, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/rocky/front.svg",
  22667. extra: 1012 / 975,
  22668. bottom: 54 / 1066
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(5 + 4 / 12, "feet"),
  22676. default: true
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22682. {
  22683. upright: {
  22684. height: math.unit(6, "meters"),
  22685. weight: math.unit(4000, "kg"),
  22686. name: "Upright",
  22687. image: {
  22688. source: "./media/characters/ruin/upright.svg",
  22689. extra: 668 / 661,
  22690. bottom: 42 / 799.8396
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Normal",
  22697. height: math.unit(6, "meters"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(5, "feet"),
  22707. weight: math.unit(106, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/robin/front.svg",
  22711. extra: 862 / 799,
  22712. bottom: 42.4 / 914.8856
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(5, "feet"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22726. {
  22727. side: {
  22728. height: math.unit(3, "feet"),
  22729. weight: math.unit(225, "lb"),
  22730. name: "Side",
  22731. image: {
  22732. source: "./media/characters/saian/side.svg",
  22733. extra: 566 / 356,
  22734. bottom: 79.7 / 643
  22735. }
  22736. },
  22737. maw: {
  22738. height: math.unit(2.85, "feet"),
  22739. name: "Maw",
  22740. image: {
  22741. source: "./media/characters/saian/maw.svg"
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Normal",
  22748. height: math.unit(3, "feet"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22755. {
  22756. side: {
  22757. height: math.unit(8, "feet"),
  22758. weight: math.unit(300, "lb"),
  22759. name: "Side",
  22760. image: {
  22761. source: "./media/characters/equus-silvermane/side.svg",
  22762. extra: 2176 / 2050,
  22763. bottom: 65.7 / 2245
  22764. }
  22765. },
  22766. front: {
  22767. height: math.unit(8, "feet"),
  22768. weight: math.unit(300, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/equus-silvermane/front.svg",
  22772. extra: 4633 / 4400,
  22773. bottom: 71.3 / 4706.915
  22774. }
  22775. },
  22776. sideStepping: {
  22777. height: math.unit(8, "feet"),
  22778. weight: math.unit(300, "lb"),
  22779. name: "Side (Stepping)",
  22780. image: {
  22781. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22782. extra: 1968 / 1860,
  22783. bottom: 16.4 / 1989
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(8, "feet")
  22791. },
  22792. {
  22793. name: "Minimacro",
  22794. height: math.unit(75, "feet"),
  22795. default: true
  22796. },
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(150, "feet")
  22800. },
  22801. {
  22802. name: "Macro+",
  22803. height: math.unit(1000, "feet")
  22804. },
  22805. {
  22806. name: "Megamacro",
  22807. height: math.unit(1, "mile")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22813. {
  22814. side: {
  22815. height: math.unit(20, "feet"),
  22816. weight: math.unit(30000, "kg"),
  22817. name: "Side",
  22818. image: {
  22819. source: "./media/characters/windar/side.svg",
  22820. extra: 1491 / 1248,
  22821. bottom: 82.56 / 1568
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(20, "feet"),
  22829. default: true
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22835. {
  22836. side: {
  22837. height: math.unit(15.66, "feet"),
  22838. weight: math.unit(150, "lb"),
  22839. name: "Side",
  22840. image: {
  22841. source: "./media/characters/melody/side.svg",
  22842. extra: 1097 / 944,
  22843. bottom: 11.8 / 1109
  22844. }
  22845. },
  22846. sideOutfit: {
  22847. height: math.unit(15.66, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Side (Outfit)",
  22850. image: {
  22851. source: "./media/characters/melody/side-outfit.svg",
  22852. extra: 1097 / 944,
  22853. bottom: 11.8 / 1109
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(15.66, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(8, "feet"),
  22870. weight: math.unit(325, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/windera/front.svg",
  22874. extra: 3180 / 2845,
  22875. bottom: 178 / 3365
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(8, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22889. {
  22890. front: {
  22891. height: math.unit(28.75, "feet"),
  22892. weight: math.unit(2000, "kg"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/sonear/front.svg",
  22896. extra: 1041.1 / 964.9,
  22897. bottom: 53.7 / 1096.6
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(28.75, "feet"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22911. {
  22912. side: {
  22913. height: math.unit(25.5, "feet"),
  22914. weight: math.unit(23000, "kg"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/kanara/side.svg"
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(25.5, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22931. {
  22932. side: {
  22933. height: math.unit(10, "feet"),
  22934. weight: math.unit(1000, "kg"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/ereus/side.svg",
  22938. extra: 1157 / 959,
  22939. bottom: 153 / 1312.5
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(10, "feet"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22953. {
  22954. side: {
  22955. height: math.unit(4.5, "feet"),
  22956. weight: math.unit(500, "lb"),
  22957. name: "Side",
  22958. image: {
  22959. source: "./media/characters/e-ter/side.svg",
  22960. extra: 1550 / 1248,
  22961. bottom: 146 / 1694
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(4.5, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(9.7, "feet"),
  22978. weight: math.unit(4000, "kg"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/yamie/side.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(9.7, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(50, "feet"),
  22998. weight: math.unit(50000, "kg"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/anders/front.svg",
  23002. extra: 570 / 539,
  23003. bottom: 14.7 / 586.7
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Large",
  23010. height: math.unit(50, "feet")
  23011. },
  23012. {
  23013. name: "Macro",
  23014. height: math.unit(2000, "feet"),
  23015. default: true
  23016. },
  23017. {
  23018. name: "Megamacro",
  23019. height: math.unit(12, "miles")
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(7 + 2 / 12, "feet"),
  23028. weight: math.unit(300, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/reban/front.svg",
  23032. extra: 1287/1212,
  23033. bottom: 148/1435
  23034. }
  23035. },
  23036. head: {
  23037. height: math.unit(1.95, "feet"),
  23038. name: "Head",
  23039. image: {
  23040. source: "./media/characters/reban/head.svg"
  23041. }
  23042. },
  23043. maw: {
  23044. height: math.unit(0.95, "feet"),
  23045. name: "Maw",
  23046. image: {
  23047. source: "./media/characters/reban/maw.svg"
  23048. }
  23049. },
  23050. foot: {
  23051. height: math.unit(1.65, "feet"),
  23052. name: "Foot",
  23053. image: {
  23054. source: "./media/characters/reban/foot.svg"
  23055. }
  23056. },
  23057. dick: {
  23058. height: math.unit(7 / 5, "feet"),
  23059. name: "Dick",
  23060. image: {
  23061. source: "./media/characters/reban/dick.svg"
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Natural Height",
  23068. height: math.unit(7 + 2 / 12, "feet")
  23069. },
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(500, "feet"),
  23073. default: true
  23074. },
  23075. {
  23076. name: "Canon Height",
  23077. height: math.unit(50, "AU")
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/terrance-keayes/front.svg",
  23090. extra: 1.005,
  23091. bottom: 151 / 1615
  23092. }
  23093. },
  23094. side: {
  23095. height: math.unit(6, "feet"),
  23096. weight: math.unit(150, "lb"),
  23097. name: "Side",
  23098. image: {
  23099. source: "./media/characters/terrance-keayes/side.svg",
  23100. extra: 1.005,
  23101. bottom: 129.4 / 1544
  23102. }
  23103. },
  23104. back: {
  23105. height: math.unit(6, "feet"),
  23106. weight: math.unit(150, "lb"),
  23107. name: "Back",
  23108. image: {
  23109. source: "./media/characters/terrance-keayes/back.svg",
  23110. extra: 1.005,
  23111. bottom: 58.4 / 1557.3
  23112. }
  23113. },
  23114. dick: {
  23115. height: math.unit(6 * 0.208, "feet"),
  23116. name: "Dick",
  23117. image: {
  23118. source: "./media/characters/terrance-keayes/dick.svg"
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Canon Height",
  23125. height: math.unit(35, "miles"),
  23126. default: true
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23132. {
  23133. front: {
  23134. height: math.unit(6, "feet"),
  23135. weight: math.unit(150, "lb"),
  23136. name: "Front",
  23137. image: {
  23138. source: "./media/characters/ofelia/front.svg",
  23139. extra: 1130/1117,
  23140. bottom: 91/1221
  23141. }
  23142. },
  23143. back: {
  23144. height: math.unit(6, "feet"),
  23145. weight: math.unit(150, "lb"),
  23146. name: "Back",
  23147. image: {
  23148. source: "./media/characters/ofelia/back.svg",
  23149. extra: 1172/1159,
  23150. bottom: 28/1200
  23151. }
  23152. },
  23153. maw: {
  23154. height: math.unit(1, "feet"),
  23155. name: "Maw",
  23156. image: {
  23157. source: "./media/characters/ofelia/maw.svg"
  23158. }
  23159. },
  23160. foot: {
  23161. height: math.unit(1.949, "feet"),
  23162. name: "Foot",
  23163. image: {
  23164. source: "./media/characters/ofelia/foot.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Canon Height",
  23171. height: math.unit(2000, "miles"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(6, "feet"),
  23181. weight: math.unit(150, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/samuel/front.svg",
  23185. extra: 265 / 258,
  23186. bottom: 2 / 266.1566
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Macro",
  23193. height: math.unit(100, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Full Size",
  23198. height: math.unit(1000, "miles")
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(6, "feet"),
  23207. weight: math.unit(300, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/beishir-kiel/front.svg",
  23211. extra: 569 / 547,
  23212. bottom: 41.9 / 609
  23213. }
  23214. },
  23215. maw: {
  23216. height: math.unit(6 * 0.202, "feet"),
  23217. name: "Maw",
  23218. image: {
  23219. source: "./media/characters/beishir-kiel/maw.svg"
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(300, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(5 + 7/12, "feet"),
  23236. weight: math.unit(120, "lb"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/logan-grey/front.svg",
  23240. extra: 1836/1738,
  23241. bottom: 108/1944
  23242. }
  23243. },
  23244. back: {
  23245. height: math.unit(5 + 7/12, "feet"),
  23246. weight: math.unit(120, "lb"),
  23247. name: "Back",
  23248. image: {
  23249. source: "./media/characters/logan-grey/back.svg",
  23250. extra: 1880/1794,
  23251. bottom: 24/1904
  23252. }
  23253. },
  23254. frontSfw: {
  23255. height: math.unit(5 + 7/12, "feet"),
  23256. weight: math.unit(120, "lb"),
  23257. name: "Front (SFW)",
  23258. image: {
  23259. source: "./media/characters/logan-grey/front-sfw.svg",
  23260. extra: 1836/1738,
  23261. bottom: 108/1944
  23262. }
  23263. },
  23264. backSfw: {
  23265. height: math.unit(5 + 7/12, "feet"),
  23266. weight: math.unit(120, "lb"),
  23267. name: "Back (SFW)",
  23268. image: {
  23269. source: "./media/characters/logan-grey/back-sfw.svg",
  23270. extra: 1880/1794,
  23271. bottom: 24/1904
  23272. }
  23273. },
  23274. hands: {
  23275. height: math.unit(0.84, "feet"),
  23276. name: "Hands",
  23277. image: {
  23278. source: "./media/characters/logan-grey/hands.svg"
  23279. }
  23280. },
  23281. paws: {
  23282. height: math.unit(0.72, "feet"),
  23283. name: "Paws",
  23284. image: {
  23285. source: "./media/characters/logan-grey/paws.svg"
  23286. }
  23287. },
  23288. cock: {
  23289. height: math.unit(1.45, "feet"),
  23290. name: "Cock",
  23291. image: {
  23292. source: "./media/characters/logan-grey/cock.svg"
  23293. }
  23294. },
  23295. cockAlt: {
  23296. height: math.unit(1.437, "feet"),
  23297. name: "Cock (alt)",
  23298. image: {
  23299. source: "./media/characters/logan-grey/cock-alt.svg"
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(5 + 8 / 12, "feet")
  23307. },
  23308. {
  23309. name: "The 500 Foot Femboy",
  23310. height: math.unit(500, "feet"),
  23311. default: true
  23312. },
  23313. {
  23314. name: "Megmacro",
  23315. height: math.unit(20, "miles")
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(8 + 2 / 12, "feet"),
  23324. weight: math.unit(275, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/draganta/front.svg",
  23328. extra: 1177 / 1135,
  23329. bottom: 33.46 / 1212.1
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(8 + 6 / 12, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Macro",
  23341. height: math.unit(150, "feet")
  23342. },
  23343. {
  23344. name: "Megamacro",
  23345. height: math.unit(1000, "miles")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(1.72, "m"),
  23354. weight: math.unit(80, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/voski/front.svg",
  23358. extra: 2076.22 / 2022.4,
  23359. bottom: 102.7 / 2177.3866
  23360. }
  23361. },
  23362. frontFlaccid: {
  23363. height: math.unit(1.72, "m"),
  23364. weight: math.unit(80, "lb"),
  23365. name: "Front (Flaccid)",
  23366. image: {
  23367. source: "./media/characters/voski/front-flaccid.svg",
  23368. extra: 2076.22 / 2022.4,
  23369. bottom: 102.7 / 2177.3866
  23370. }
  23371. },
  23372. frontErect: {
  23373. height: math.unit(1.72, "m"),
  23374. weight: math.unit(80, "lb"),
  23375. name: "Front (Erect)",
  23376. image: {
  23377. source: "./media/characters/voski/front-erect.svg",
  23378. extra: 2076.22 / 2022.4,
  23379. bottom: 102.7 / 2177.3866
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(1.72, "m"),
  23384. weight: math.unit(80, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/voski/back.svg",
  23388. extra: 2104 / 2051,
  23389. bottom: 10.45 / 2113.63
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(1.72, "m")
  23397. },
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(55, "m"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro+",
  23405. height: math.unit(300, "m")
  23406. },
  23407. {
  23408. name: "Macro++",
  23409. height: math.unit(700, "m")
  23410. },
  23411. {
  23412. name: "Macro+++",
  23413. height: math.unit(4500, "m")
  23414. },
  23415. {
  23416. name: "Macro++++",
  23417. height: math.unit(45, "km")
  23418. },
  23419. {
  23420. name: "Macro+++++",
  23421. height: math.unit(1220, "km")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(2.3, "m"),
  23430. weight: math.unit(304, "kg"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/icowom-lee/front.svg",
  23434. extra: 985 / 955,
  23435. bottom: 25.4 / 1012
  23436. }
  23437. },
  23438. fronttentacles: {
  23439. height: math.unit(2.3, "m"),
  23440. weight: math.unit(304, "kg"),
  23441. name: "Front-tentacles",
  23442. image: {
  23443. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23444. extra: 985 / 955,
  23445. bottom: 25.4 / 1012
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(2.3, "m"),
  23450. weight: math.unit(304, "kg"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/icowom-lee/back.svg",
  23454. extra: 975 / 954,
  23455. bottom: 9.5 / 985
  23456. }
  23457. },
  23458. backtentacles: {
  23459. height: math.unit(2.3, "m"),
  23460. weight: math.unit(304, "kg"),
  23461. name: "Back-tentacles",
  23462. image: {
  23463. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23464. extra: 975 / 954,
  23465. bottom: 9.5 / 985
  23466. }
  23467. },
  23468. frontDressed: {
  23469. height: math.unit(2.3, "m"),
  23470. weight: math.unit(304, "kg"),
  23471. name: "Front (Dressed)",
  23472. image: {
  23473. source: "./media/characters/icowom-lee/front-dressed.svg",
  23474. extra: 3076 / 2933,
  23475. bottom: 51.4 / 3125.1889
  23476. }
  23477. },
  23478. rump: {
  23479. height: math.unit(0.776, "meters"),
  23480. name: "Rump",
  23481. image: {
  23482. source: "./media/characters/icowom-lee/rump.svg"
  23483. }
  23484. },
  23485. genitals: {
  23486. height: math.unit(0.78, "meters"),
  23487. name: "Genitals",
  23488. image: {
  23489. source: "./media/characters/icowom-lee/genitals.svg"
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(2.3, "meters"),
  23497. default: true
  23498. },
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(94, "meters"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(22, "meters"),
  23511. weight: math.unit(21000, "kg"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/shock-diamond/front.svg",
  23515. extra: 2204 / 2053,
  23516. bottom: 65 / 2239.47
  23517. }
  23518. },
  23519. frontNude: {
  23520. height: math.unit(22, "meters"),
  23521. weight: math.unit(21000, "kg"),
  23522. name: "Front (Nude)",
  23523. image: {
  23524. source: "./media/characters/shock-diamond/front-nude.svg",
  23525. extra: 2514 / 2285,
  23526. bottom: 13 / 2527.56
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(3, "meters")
  23534. },
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(22, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(5 + 4 / 12, "feet"),
  23547. weight: math.unit(120, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/rory/front.svg",
  23551. extra: 1318/1241,
  23552. bottom: 42/1360
  23553. }
  23554. },
  23555. back: {
  23556. height: math.unit(5 + 4 / 12, "feet"),
  23557. weight: math.unit(120, "lb"),
  23558. name: "Back",
  23559. image: {
  23560. source: "./media/characters/rory/back.svg",
  23561. extra: 1318/1241,
  23562. bottom: 42/1360
  23563. }
  23564. },
  23565. butt: {
  23566. height: math.unit(1.74, "feet"),
  23567. name: "Butt",
  23568. image: {
  23569. source: "./media/characters/rory/butt.svg"
  23570. }
  23571. },
  23572. dick: {
  23573. height: math.unit(1.02, "feet"),
  23574. name: "Dick",
  23575. image: {
  23576. source: "./media/characters/rory/dick.svg"
  23577. }
  23578. },
  23579. paws: {
  23580. height: math.unit(1, "feet"),
  23581. name: "Paws",
  23582. image: {
  23583. source: "./media/characters/rory/paws.svg"
  23584. }
  23585. },
  23586. frontAlt: {
  23587. height: math.unit(5 + 4 / 12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front (Alt)",
  23590. image: {
  23591. source: "./media/characters/rory/front-alt.svg",
  23592. extra: 589 / 556,
  23593. bottom: 45.7 / 635.76
  23594. }
  23595. },
  23596. frontAltNude: {
  23597. height: math.unit(5 + 4 / 12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Front (Alt, Nude)",
  23600. image: {
  23601. source: "./media/characters/rory/front-alt-nude.svg",
  23602. extra: 589 / 556,
  23603. bottom: 45.7 / 635.76
  23604. }
  23605. },
  23606. side: {
  23607. height: math.unit(5 + 4 / 12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Side",
  23610. image: {
  23611. source: "./media/characters/rory/side.svg",
  23612. extra: 597 / 564,
  23613. bottom: 55 / 653
  23614. }
  23615. },
  23616. backAlt: {
  23617. height: math.unit(5 + 4 / 12, "feet"),
  23618. weight: math.unit(120, "lb"),
  23619. name: "Back (Alt)",
  23620. image: {
  23621. source: "./media/characters/rory/back-alt.svg",
  23622. extra: 620 / 585,
  23623. bottom: 8.86 / 630.43
  23624. }
  23625. },
  23626. dickAlt: {
  23627. height: math.unit(0.86, "feet"),
  23628. name: "Dick (Alt)",
  23629. image: {
  23630. source: "./media/characters/rory/dick-alt.svg"
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Normal",
  23637. height: math.unit(5 + 4 / 12, "feet"),
  23638. default: true
  23639. },
  23640. {
  23641. name: "Macro",
  23642. height: math.unit(100, "feet")
  23643. },
  23644. {
  23645. name: "Macro+",
  23646. height: math.unit(140, "feet")
  23647. },
  23648. {
  23649. name: "Macro++",
  23650. height: math.unit(300, "feet")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(5 + 9 / 12, "feet"),
  23659. weight: math.unit(190, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/sprisk/front.svg",
  23663. extra: 1225 / 1180,
  23664. bottom: 42.7 / 1266.4
  23665. }
  23666. },
  23667. frontNsfw: {
  23668. height: math.unit(5 + 9 / 12, "feet"),
  23669. weight: math.unit(190, "lb"),
  23670. name: "Front (NSFW)",
  23671. image: {
  23672. source: "./media/characters/sprisk/front-nsfw.svg",
  23673. extra: 1225 / 1180,
  23674. bottom: 42.7 / 1266.4
  23675. }
  23676. },
  23677. back: {
  23678. height: math.unit(5 + 9 / 12, "feet"),
  23679. weight: math.unit(190, "lb"),
  23680. name: "Back",
  23681. image: {
  23682. source: "./media/characters/sprisk/back.svg",
  23683. extra: 1247 / 1200,
  23684. bottom: 5.6 / 1253.04
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Tiny",
  23691. height: math.unit(2, "inches")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5 + 9 / 12, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Mini Macro",
  23700. height: math.unit(18, "feet")
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(100, "feet")
  23705. },
  23706. {
  23707. name: "MACRO",
  23708. height: math.unit(50, "miles")
  23709. },
  23710. {
  23711. name: "M A C R O",
  23712. height: math.unit(300, "miles")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23718. {
  23719. side: {
  23720. height: math.unit(15.6, "meters"),
  23721. weight: math.unit(700000, "kg"),
  23722. name: "Side",
  23723. image: {
  23724. source: "./media/characters/bunsen/side.svg",
  23725. extra: 1644 / 358
  23726. }
  23727. },
  23728. foot: {
  23729. height: math.unit(1.611 * 1644 / 358, "meter"),
  23730. name: "Foot",
  23731. image: {
  23732. source: "./media/characters/bunsen/foot.svg"
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Small",
  23739. height: math.unit(10, "feet")
  23740. },
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(15.6, "meters"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(4 + 11 / 12, "feet"),
  23753. weight: math.unit(140, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/sesh/front.svg",
  23757. extra: 3420 / 3231,
  23758. bottom: 72 / 3949.5
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(4 + 11 / 12, "feet")
  23766. },
  23767. {
  23768. name: "Grown",
  23769. height: math.unit(15, "feet"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Macro",
  23774. height: math.unit(1500, "feet")
  23775. },
  23776. {
  23777. name: "Megamacro",
  23778. height: math.unit(30, "miles")
  23779. },
  23780. {
  23781. name: "Continental",
  23782. height: math.unit(3000, "miles")
  23783. },
  23784. {
  23785. name: "Gravity Mass",
  23786. height: math.unit(300000, "miles")
  23787. },
  23788. {
  23789. name: "Planet Buster",
  23790. height: math.unit(30000000, "miles")
  23791. },
  23792. {
  23793. name: "Big",
  23794. height: math.unit(3000000000, "miles")
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23800. {
  23801. front: {
  23802. height: math.unit(9, "feet"),
  23803. weight: math.unit(350, "lb"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/pepper/front.svg",
  23807. extra: 1448 / 1312,
  23808. bottom: 9.4 / 1457.88
  23809. }
  23810. },
  23811. back: {
  23812. height: math.unit(9, "feet"),
  23813. weight: math.unit(350, "lb"),
  23814. name: "Back",
  23815. image: {
  23816. source: "./media/characters/pepper/back.svg",
  23817. extra: 1423 / 1300,
  23818. bottom: 4.6 / 1429
  23819. }
  23820. },
  23821. maw: {
  23822. height: math.unit(0.932, "feet"),
  23823. name: "Maw",
  23824. image: {
  23825. source: "./media/characters/pepper/maw.svg"
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(9, "feet"),
  23833. default: true
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(6, "feet"),
  23842. weight: math.unit(150, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/maelstrom/front.svg",
  23846. extra: 2100 / 1883,
  23847. bottom: 94 / 2196.7
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Less Kaiju",
  23854. height: math.unit(200, "feet")
  23855. },
  23856. {
  23857. name: "Kaiju",
  23858. height: math.unit(400, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Kaiju-er",
  23863. height: math.unit(600, "feet")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(6 + 5 / 12, "feet"),
  23872. weight: math.unit(180, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/lexir/front.svg",
  23876. extra: 180 / 172,
  23877. bottom: 12 / 192
  23878. }
  23879. },
  23880. back: {
  23881. height: math.unit(6 + 5 / 12, "feet"),
  23882. weight: math.unit(180, "lb"),
  23883. name: "Back",
  23884. image: {
  23885. source: "./media/characters/lexir/back.svg",
  23886. extra: 1273/1201,
  23887. bottom: 39/1312
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Very Smal",
  23894. height: math.unit(1, "nm")
  23895. },
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(6 + 5 / 12, "feet"),
  23899. default: true
  23900. },
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(1, "mile")
  23904. },
  23905. {
  23906. name: "Megamacro",
  23907. height: math.unit(50, "miles")
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(1.5, "meters"),
  23916. weight: math.unit(100, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/maksio/front.svg",
  23920. extra: 1549 / 1531,
  23921. bottom: 123.7 / 1674.5429
  23922. }
  23923. },
  23924. back: {
  23925. height: math.unit(1.5, "meters"),
  23926. weight: math.unit(100, "lb"),
  23927. name: "Back",
  23928. image: {
  23929. source: "./media/characters/maksio/back.svg",
  23930. extra: 1541 / 1509,
  23931. bottom: 97 / 1639
  23932. }
  23933. },
  23934. hand: {
  23935. height: math.unit(0.621, "feet"),
  23936. name: "Hand",
  23937. image: {
  23938. source: "./media/characters/maksio/hand.svg"
  23939. }
  23940. },
  23941. foot: {
  23942. height: math.unit(1.611, "feet"),
  23943. name: "Foot",
  23944. image: {
  23945. source: "./media/characters/maksio/foot.svg"
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Shrunken",
  23952. height: math.unit(10, "cm")
  23953. },
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(150, "cm"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(100, "feet"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/erza-bear/front.svg",
  23969. extra: 2449 / 2390,
  23970. bottom: 46 / 2494
  23971. }
  23972. },
  23973. back: {
  23974. height: math.unit(100, "feet"),
  23975. name: "Back",
  23976. image: {
  23977. source: "./media/characters/erza-bear/back.svg",
  23978. extra: 2489 / 2430,
  23979. bottom: 85.4 / 2480
  23980. }
  23981. },
  23982. tail: {
  23983. height: math.unit(42, "feet"),
  23984. name: "Tail",
  23985. image: {
  23986. source: "./media/characters/erza-bear/tail.svg"
  23987. }
  23988. },
  23989. tongue: {
  23990. height: math.unit(8, "feet"),
  23991. name: "Tongue",
  23992. image: {
  23993. source: "./media/characters/erza-bear/tongue.svg"
  23994. }
  23995. },
  23996. dick: {
  23997. height: math.unit(10.5, "feet"),
  23998. name: "Dick",
  23999. image: {
  24000. source: "./media/characters/erza-bear/dick.svg"
  24001. }
  24002. },
  24003. dickVertical: {
  24004. height: math.unit(16.9, "feet"),
  24005. name: "Dick (Vertical)",
  24006. image: {
  24007. source: "./media/characters/erza-bear/dick-vertical.svg"
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(100, "feet"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(172, "cm"),
  24024. weight: math.unit(73, "kg"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/violet-flor/front.svg",
  24028. extra: 1530 / 1442,
  24029. bottom: 61.9 / 1588.8
  24030. }
  24031. },
  24032. back: {
  24033. height: math.unit(180, "cm"),
  24034. weight: math.unit(73, "kg"),
  24035. name: "Back",
  24036. image: {
  24037. source: "./media/characters/violet-flor/back.svg",
  24038. extra: 1692 / 1630,
  24039. bottom: 20 / 1712
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(172, "cm"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(6, "feet"),
  24056. weight: math.unit(220, "lb"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/lynn-rhea/front.svg",
  24060. extra: 310 / 273
  24061. }
  24062. },
  24063. back: {
  24064. height: math.unit(6, "feet"),
  24065. weight: math.unit(220, "lb"),
  24066. name: "Back",
  24067. image: {
  24068. source: "./media/characters/lynn-rhea/back.svg",
  24069. extra: 310 / 273
  24070. }
  24071. },
  24072. dicks: {
  24073. height: math.unit(0.9, "feet"),
  24074. name: "Dicks",
  24075. image: {
  24076. source: "./media/characters/lynn-rhea/dicks.svg"
  24077. }
  24078. },
  24079. slit: {
  24080. height: math.unit(0.4, "feet"),
  24081. name: "Slit",
  24082. image: {
  24083. source: "./media/characters/lynn-rhea/slit.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Micro",
  24090. height: math.unit(1, "inch")
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(60, "feet"),
  24095. default: true
  24096. },
  24097. {
  24098. name: "Megamacro",
  24099. height: math.unit(2, "miles")
  24100. },
  24101. {
  24102. name: "Gigamacro",
  24103. height: math.unit(3, "earths")
  24104. },
  24105. {
  24106. name: "Galactic",
  24107. height: math.unit(0.8, "galaxies")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24113. {
  24114. front: {
  24115. height: math.unit(1600, "feet"),
  24116. weight: math.unit(85758785169, "kg"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/valathos/front.svg",
  24120. extra: 1451 / 1339
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Macro",
  24127. height: math.unit(1600, "feet"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(7 + 5 / 12, "feet"),
  24137. weight: math.unit(300, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/azula/front.svg",
  24141. extra: 3208 / 2880,
  24142. bottom: 80.2 / 3277
  24143. }
  24144. },
  24145. back: {
  24146. height: math.unit(7 + 5 / 12, "feet"),
  24147. weight: math.unit(300, "lb"),
  24148. name: "Back",
  24149. image: {
  24150. source: "./media/characters/azula/back.svg",
  24151. extra: 3169 / 2822,
  24152. bottom: 150.6 / 3321
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(7 + 5 / 12, "feet"),
  24160. default: true
  24161. },
  24162. {
  24163. name: "Big",
  24164. height: math.unit(20, "feet")
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(5 + 1 / 12, "feet"),
  24173. weight: math.unit(110, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/rupert/front.svg",
  24177. extra: 1549 / 1495,
  24178. bottom: 54.2 / 1604.4
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(5 + 1 / 12, "feet"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24192. {
  24193. front: {
  24194. height: math.unit(8 + 4 / 12, "feet"),
  24195. weight: math.unit(350, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/sheera-castellar/front.svg",
  24199. extra: 1957 / 1894,
  24200. bottom: 26.97 / 1975.017
  24201. }
  24202. },
  24203. side: {
  24204. height: math.unit(8 + 4 / 12, "feet"),
  24205. weight: math.unit(350, "lb"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/sheera-castellar/side.svg",
  24209. extra: 1957 / 1894
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(8 + 4 / 12, "feet"),
  24214. weight: math.unit(350, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/sheera-castellar/back.svg",
  24218. extra: 1957 / 1894
  24219. }
  24220. },
  24221. angled: {
  24222. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24223. weight: math.unit(350, "lb"),
  24224. name: "Angled",
  24225. image: {
  24226. source: "./media/characters/sheera-castellar/angled.svg",
  24227. extra: 1807 / 1707,
  24228. bottom: 68 / 1875
  24229. }
  24230. },
  24231. genitals: {
  24232. height: math.unit(2.2, "feet"),
  24233. name: "Genitals",
  24234. image: {
  24235. source: "./media/characters/sheera-castellar/genitals.svg"
  24236. }
  24237. },
  24238. taur: {
  24239. height: math.unit(10 + 6/12, "feet"),
  24240. name: "Taur",
  24241. image: {
  24242. source: "./media/characters/sheera-castellar/taur.svg",
  24243. extra: 2017/1909,
  24244. bottom: 185/2202
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(8 + 4 / 12, "feet")
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(150, "feet"),
  24256. default: true
  24257. },
  24258. {
  24259. name: "Macro+",
  24260. height: math.unit(800, "feet")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(6, "feet"),
  24269. weight: math.unit(150, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/jaipur/front.svg",
  24273. extra: 3860 / 3731,
  24274. bottom: 287 / 4140
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(6, "feet"),
  24279. weight: math.unit(150, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/jaipur/back.svg",
  24283. extra: 1637/1561,
  24284. bottom: 154/1791
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(1.85, "meters"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(150, "meters")
  24297. },
  24298. {
  24299. name: "Macro+",
  24300. height: math.unit(0.5, "miles")
  24301. },
  24302. {
  24303. name: "Macro++",
  24304. height: math.unit(2.5, "miles")
  24305. },
  24306. {
  24307. name: "Macro+++",
  24308. height: math.unit(12, "miles")
  24309. },
  24310. {
  24311. name: "Macro++++",
  24312. height: math.unit(120, "miles")
  24313. },
  24314. {
  24315. name: "Macro+++++",
  24316. height: math.unit(1200, "miles")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(6, "feet"),
  24325. weight: math.unit(150, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/sheila-wolf/front.svg",
  24329. extra: 1931 / 1808,
  24330. bottom: 29.5 / 1960
  24331. }
  24332. },
  24333. dick: {
  24334. height: math.unit(1.464, "feet"),
  24335. name: "Dick",
  24336. image: {
  24337. source: "./media/characters/sheila-wolf/dick.svg"
  24338. }
  24339. },
  24340. muzzle: {
  24341. height: math.unit(0.513, "feet"),
  24342. name: "Muzzle",
  24343. image: {
  24344. source: "./media/characters/sheila-wolf/muzzle.svg"
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(70, "feet"),
  24352. default: true
  24353. },
  24354. ]
  24355. ))
  24356. characterMakers.push(() => makeCharacter(
  24357. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24358. {
  24359. front: {
  24360. height: math.unit(32, "meters"),
  24361. weight: math.unit(300000, "kg"),
  24362. name: "Front",
  24363. image: {
  24364. source: "./media/characters/almor/front.svg",
  24365. extra: 1408 / 1322,
  24366. bottom: 94.6 / 1506.5
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(32, "meters"),
  24374. default: true
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(7, "feet"),
  24383. weight: math.unit(200, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/silver/front.svg",
  24387. extra: 472.1 / 450.5,
  24388. bottom: 26.5 / 499.424
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(7, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(800, "feet")
  24401. },
  24402. {
  24403. name: "Megamacro",
  24404. height: math.unit(250, "miles")
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(6, "feet"),
  24413. weight: math.unit(150, "lb"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/pliskin/front.svg",
  24417. extra: 1469 / 1359,
  24418. bottom: 70 / 1540
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Micro",
  24425. height: math.unit(3, "inches")
  24426. },
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(5 + 11 / 12, "feet"),
  24430. default: true
  24431. },
  24432. {
  24433. name: "Macro",
  24434. height: math.unit(120, "feet")
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(6, "feet"),
  24443. weight: math.unit(150, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/sammy/front.svg",
  24447. extra: 1193 / 1089,
  24448. bottom: 30.5 / 1226
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Macro",
  24455. height: math.unit(1700, "feet"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Examacro",
  24460. height: math.unit(2.5e9, "lightyears")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(21, "meters"),
  24469. weight: math.unit(12, "tonnes"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/kuru/front.svg",
  24473. extra: 4301 / 3785,
  24474. bottom: 371.3 / 4691
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(21, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(23, "meters"),
  24491. weight: math.unit(12.2, "tonnes"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/rakka/front.svg",
  24495. extra: 4670 / 4169,
  24496. bottom: 301 / 4968.7
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(23, "meters"),
  24504. default: true
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(6, "feet"),
  24513. weight: math.unit(150, "lb"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/rhys-feline/front.svg",
  24517. extra: 2488 / 2308,
  24518. bottom: 35.67 / 2519.19
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Really Small",
  24525. height: math.unit(1, "nm")
  24526. },
  24527. {
  24528. name: "Micro",
  24529. height: math.unit(4, "inches")
  24530. },
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(4 + 10 / 12, "feet"),
  24534. default: true
  24535. },
  24536. {
  24537. name: "Macro",
  24538. height: math.unit(100, "feet")
  24539. },
  24540. {
  24541. name: "Megamacto",
  24542. height: math.unit(50, "miles")
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24548. {
  24549. side: {
  24550. height: math.unit(30, "feet"),
  24551. weight: math.unit(35000, "kg"),
  24552. name: "Side",
  24553. image: {
  24554. source: "./media/characters/alydar/side.svg",
  24555. extra: 234 / 222,
  24556. bottom: 6.5 / 241
  24557. }
  24558. },
  24559. front: {
  24560. height: math.unit(30, "feet"),
  24561. weight: math.unit(35000, "kg"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/alydar/front.svg",
  24565. extra: 223.37 / 210.2,
  24566. bottom: 22.3 / 246.76
  24567. }
  24568. },
  24569. top: {
  24570. height: math.unit(64.54, "feet"),
  24571. weight: math.unit(35000, "kg"),
  24572. name: "Top",
  24573. image: {
  24574. source: "./media/characters/alydar/top.svg"
  24575. }
  24576. },
  24577. anthro: {
  24578. height: math.unit(30, "feet"),
  24579. weight: math.unit(9000, "kg"),
  24580. name: "Anthro",
  24581. image: {
  24582. source: "./media/characters/alydar/anthro.svg",
  24583. extra: 432 / 421,
  24584. bottom: 7.18 / 440
  24585. }
  24586. },
  24587. maw: {
  24588. height: math.unit(11.693, "feet"),
  24589. name: "Maw",
  24590. image: {
  24591. source: "./media/characters/alydar/maw.svg"
  24592. }
  24593. },
  24594. head: {
  24595. height: math.unit(11.693, "feet"),
  24596. name: "Head",
  24597. image: {
  24598. source: "./media/characters/alydar/head.svg"
  24599. }
  24600. },
  24601. headAlt: {
  24602. height: math.unit(12.861, "feet"),
  24603. name: "Head (Alt)",
  24604. image: {
  24605. source: "./media/characters/alydar/head-alt.svg"
  24606. }
  24607. },
  24608. wing: {
  24609. height: math.unit(20.712, "feet"),
  24610. name: "Wing",
  24611. image: {
  24612. source: "./media/characters/alydar/wing.svg"
  24613. }
  24614. },
  24615. wingFeather: {
  24616. height: math.unit(9.662, "feet"),
  24617. name: "Wing Feather",
  24618. image: {
  24619. source: "./media/characters/alydar/wing-feather.svg"
  24620. }
  24621. },
  24622. countourFeather: {
  24623. height: math.unit(4.154, "feet"),
  24624. name: "Contour Feather",
  24625. image: {
  24626. source: "./media/characters/alydar/contour-feather.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Diplomatic",
  24633. height: math.unit(13, "feet"),
  24634. default: true
  24635. },
  24636. {
  24637. name: "Small",
  24638. height: math.unit(30, "feet")
  24639. },
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(95, "feet"),
  24643. default: true
  24644. },
  24645. {
  24646. name: "Large",
  24647. height: math.unit(285, "feet")
  24648. },
  24649. {
  24650. name: "Incomprehensible",
  24651. height: math.unit(450, "megameters")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24657. {
  24658. side: {
  24659. height: math.unit(11, "feet"),
  24660. weight: math.unit(1750, "kg"),
  24661. name: "Side",
  24662. image: {
  24663. source: "./media/characters/selicia/side.svg",
  24664. extra: 440 / 396,
  24665. bottom: 24.8 / 465.979
  24666. }
  24667. },
  24668. maw: {
  24669. height: math.unit(4.665, "feet"),
  24670. name: "Maw",
  24671. image: {
  24672. source: "./media/characters/selicia/maw.svg"
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(11, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24686. {
  24687. side: {
  24688. height: math.unit(2 + 6 / 12, "feet"),
  24689. weight: math.unit(30, "lb"),
  24690. name: "Side",
  24691. image: {
  24692. source: "./media/characters/layla/side.svg",
  24693. extra: 244 / 188,
  24694. bottom: 18.2 / 262.1
  24695. }
  24696. },
  24697. back: {
  24698. height: math.unit(2 + 6 / 12, "feet"),
  24699. weight: math.unit(30, "lb"),
  24700. name: "Back",
  24701. image: {
  24702. source: "./media/characters/layla/back.svg",
  24703. extra: 308 / 241.5,
  24704. bottom: 8.9 / 316.8
  24705. }
  24706. },
  24707. cumming: {
  24708. height: math.unit(2 + 6 / 12, "feet"),
  24709. weight: math.unit(30, "lb"),
  24710. name: "Cumming",
  24711. image: {
  24712. source: "./media/characters/layla/cumming.svg",
  24713. extra: 342 / 279,
  24714. bottom: 595 / 938
  24715. }
  24716. },
  24717. dickFlaccid: {
  24718. height: math.unit(2.595, "feet"),
  24719. name: "Flaccid Genitals",
  24720. image: {
  24721. source: "./media/characters/layla/dick-flaccid.svg"
  24722. }
  24723. },
  24724. dickErect: {
  24725. height: math.unit(2.359, "feet"),
  24726. name: "Erect Genitals",
  24727. image: {
  24728. source: "./media/characters/layla/dick-erect.svg"
  24729. }
  24730. },
  24731. dragon: {
  24732. height: math.unit(40, "feet"),
  24733. name: "Dragon",
  24734. image: {
  24735. source: "./media/characters/layla/dragon.svg",
  24736. extra: 610/535,
  24737. bottom: 367/977
  24738. }
  24739. },
  24740. taur: {
  24741. height: math.unit(30, "feet"),
  24742. name: "Taur",
  24743. image: {
  24744. source: "./media/characters/layla/taur.svg",
  24745. extra: 1268/1199,
  24746. bottom: 112/1380
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Micro",
  24753. height: math.unit(1, "inch")
  24754. },
  24755. {
  24756. name: "Small",
  24757. height: math.unit(1, "foot")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(2 + 6 / 12, "feet"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(200, "feet")
  24767. },
  24768. {
  24769. name: "Megamacro",
  24770. height: math.unit(1000, "miles")
  24771. },
  24772. {
  24773. name: "Planetary",
  24774. height: math.unit(8000, "miles")
  24775. },
  24776. {
  24777. name: "True Layla",
  24778. height: math.unit(200000 * 7, "multiverses")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24784. {
  24785. back: {
  24786. height: math.unit(10.5, "feet"),
  24787. weight: math.unit(800, "lb"),
  24788. name: "Back",
  24789. image: {
  24790. source: "./media/characters/knox/back.svg",
  24791. extra: 1486 / 1089,
  24792. bottom: 107 / 1601.4
  24793. }
  24794. },
  24795. side: {
  24796. height: math.unit(10.5, "feet"),
  24797. weight: math.unit(800, "lb"),
  24798. name: "Side",
  24799. image: {
  24800. source: "./media/characters/knox/side.svg",
  24801. extra: 244 / 218,
  24802. bottom: 14 / 260
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Compact",
  24809. height: math.unit(10.5, "feet"),
  24810. default: true
  24811. },
  24812. {
  24813. name: "Dynamax",
  24814. height: math.unit(210, "feet")
  24815. },
  24816. {
  24817. name: "Full Macro",
  24818. height: math.unit(850, "feet")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(28, "feet"),
  24827. weight: math.unit(10500, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/kayda/front.svg",
  24831. extra: 1536 / 1428,
  24832. bottom: 68.7 / 1603
  24833. }
  24834. },
  24835. back: {
  24836. height: math.unit(28, "feet"),
  24837. weight: math.unit(10500, "lb"),
  24838. name: "Back",
  24839. image: {
  24840. source: "./media/characters/kayda/back.svg",
  24841. extra: 1557 / 1464,
  24842. bottom: 39.5 / 1597.49
  24843. }
  24844. },
  24845. dick: {
  24846. height: math.unit(3.858, "feet"),
  24847. name: "Dick",
  24848. image: {
  24849. source: "./media/characters/kayda/dick.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(28, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(10 + 11 / 12, "feet"),
  24866. weight: math.unit(1400, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/brian/front.svg",
  24870. extra: 737 / 692,
  24871. bottom: 55.4 / 785
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(10 + 11 / 12, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(5 + 8 / 12, "feet"),
  24888. weight: math.unit(140, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/khemri/front.svg",
  24892. extra: 4780 / 4059,
  24893. bottom: 80.1 / 4859.25
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Micro",
  24900. height: math.unit(6, "inches")
  24901. },
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(5 + 8 / 12, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24911. {
  24912. front: {
  24913. height: math.unit(13, "feet"),
  24914. weight: math.unit(1700, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/felix-braveheart/front.svg",
  24918. extra: 1222 / 1157,
  24919. bottom: 53.2 / 1280
  24920. }
  24921. },
  24922. back: {
  24923. height: math.unit(13, "feet"),
  24924. weight: math.unit(1700, "lb"),
  24925. name: "Back",
  24926. image: {
  24927. source: "./media/characters/felix-braveheart/back.svg",
  24928. extra: 1277 / 1203,
  24929. bottom: 50.2 / 1327
  24930. }
  24931. },
  24932. feral: {
  24933. height: math.unit(6, "feet"),
  24934. weight: math.unit(400, "lb"),
  24935. name: "Feral",
  24936. image: {
  24937. source: "./media/characters/felix-braveheart/feral.svg",
  24938. extra: 682 / 625,
  24939. bottom: 6.9 / 688
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(13, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24953. {
  24954. side: {
  24955. height: math.unit(5 + 11 / 12, "feet"),
  24956. weight: math.unit(1400, "lb"),
  24957. name: "Side",
  24958. image: {
  24959. source: "./media/characters/shadow-blade/side.svg",
  24960. extra: 1726 / 1267,
  24961. bottom: 58.4 / 1785
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(5 + 11 / 12, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(1 + 6 / 12, "feet"),
  24978. weight: math.unit(25, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/karla-halldor/front.svg",
  24982. extra: 1459 / 1383,
  24983. bottom: 12 / 1472
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(1 + 6 / 12, "feet"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(6 + 2 / 12, "feet"),
  25000. weight: math.unit(160, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/ariam/front.svg",
  25004. extra: 1073/976,
  25005. bottom: 52/1125
  25006. }
  25007. },
  25008. back: {
  25009. height: math.unit(6 + 2/12, "feet"),
  25010. weight: math.unit(160, "lb"),
  25011. name: "Back",
  25012. image: {
  25013. source: "./media/characters/ariam/back.svg",
  25014. extra: 1103/1023,
  25015. bottom: 9/1112
  25016. }
  25017. },
  25018. dressed: {
  25019. height: math.unit(6 + 2/12, "feet"),
  25020. weight: math.unit(160, "lb"),
  25021. name: "Dressed",
  25022. image: {
  25023. source: "./media/characters/ariam/dressed.svg",
  25024. extra: 1099/1009,
  25025. bottom: 25/1124
  25026. }
  25027. },
  25028. squatting: {
  25029. height: math.unit(4.1, "feet"),
  25030. weight: math.unit(160, "lb"),
  25031. name: "Squatting",
  25032. image: {
  25033. source: "./media/characters/ariam/squatting.svg",
  25034. extra: 2617 / 2112,
  25035. bottom: 61.2 / 2681,
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "Normal",
  25042. height: math.unit(6 + 2 / 12, "feet"),
  25043. default: true
  25044. },
  25045. {
  25046. name: "Normal+",
  25047. height: math.unit(4, "meters")
  25048. },
  25049. {
  25050. name: "Macro",
  25051. height: math.unit(50, "meters")
  25052. },
  25053. {
  25054. name: "Macro+",
  25055. height: math.unit(100, "meters")
  25056. },
  25057. {
  25058. name: "Megamacro",
  25059. height: math.unit(20, "km")
  25060. },
  25061. {
  25062. name: "Caretaker",
  25063. height: math.unit(444, "megameters")
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(1.67, "meters"),
  25072. weight: math.unit(140, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25076. extra: 438 / 410,
  25077. bottom: 0.75 / 439
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Shrunken",
  25084. height: math.unit(7.6, "cm")
  25085. },
  25086. {
  25087. name: "Human Scale",
  25088. height: math.unit(1.67, "meters")
  25089. },
  25090. {
  25091. name: "Wolxi Scale",
  25092. height: math.unit(36.7, "meters"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(1.73, "meters"),
  25102. weight: math.unit(240, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/izue-two-mothers/front.svg",
  25106. extra: 469 / 437,
  25107. bottom: 1.24 / 470.6
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Shrunken",
  25114. height: math.unit(7.86, "cm")
  25115. },
  25116. {
  25117. name: "Human Scale",
  25118. height: math.unit(1.73, "meters")
  25119. },
  25120. {
  25121. name: "Wolxi Scale",
  25122. height: math.unit(38, "meters"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(1.55, "meters"),
  25132. weight: math.unit(120, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/teeku-love-shack/front.svg",
  25136. extra: 387 / 362,
  25137. bottom: 1.51 / 388
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Shrunken",
  25144. height: math.unit(7, "cm")
  25145. },
  25146. {
  25147. name: "Human Scale",
  25148. height: math.unit(1.55, "meters")
  25149. },
  25150. {
  25151. name: "Wolxi Scale",
  25152. height: math.unit(34.1, "meters"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(1.83, "meters"),
  25162. weight: math.unit(135, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/dejma-the-red/front.svg",
  25166. extra: 480 / 458,
  25167. bottom: 1.8 / 482
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Shrunken",
  25174. height: math.unit(8.3, "cm")
  25175. },
  25176. {
  25177. name: "Human Scale",
  25178. height: math.unit(1.83, "meters")
  25179. },
  25180. {
  25181. name: "Wolxi Scale",
  25182. height: math.unit(40, "meters"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(1.78, "meters"),
  25192. weight: math.unit(65, "kg"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/aki/front.svg",
  25196. extra: 452 / 415
  25197. }
  25198. },
  25199. frontNsfw: {
  25200. height: math.unit(1.78, "meters"),
  25201. weight: math.unit(65, "kg"),
  25202. name: "Front (NSFW)",
  25203. image: {
  25204. source: "./media/characters/aki/front-nsfw.svg",
  25205. extra: 452 / 415
  25206. }
  25207. },
  25208. back: {
  25209. height: math.unit(1.78, "meters"),
  25210. weight: math.unit(65, "kg"),
  25211. name: "Back",
  25212. image: {
  25213. source: "./media/characters/aki/back.svg",
  25214. extra: 452 / 415
  25215. }
  25216. },
  25217. rump: {
  25218. height: math.unit(2.05, "feet"),
  25219. name: "Rump",
  25220. image: {
  25221. source: "./media/characters/aki/rump.svg"
  25222. }
  25223. },
  25224. dick: {
  25225. height: math.unit(0.95, "feet"),
  25226. name: "Dick",
  25227. image: {
  25228. source: "./media/characters/aki/dick.svg"
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Micro",
  25235. height: math.unit(15, "cm")
  25236. },
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(178, "cm"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(214, "m")
  25245. },
  25246. {
  25247. name: "Macro+",
  25248. height: math.unit(534, "m")
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(5 + 5 / 12, "feet"),
  25257. weight: math.unit(120, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/ari/front.svg",
  25261. extra: 1550/1471,
  25262. bottom: 39/1589
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(5 + 5 / 12, "feet")
  25270. },
  25271. {
  25272. name: "Macro",
  25273. height: math.unit(100, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Megamacro",
  25278. height: math.unit(100, "miles")
  25279. },
  25280. {
  25281. name: "Gigamacro",
  25282. height: math.unit(80000, "miles")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25288. {
  25289. side: {
  25290. height: math.unit(9, "feet"),
  25291. weight: math.unit(400, "kg"),
  25292. name: "Side",
  25293. image: {
  25294. source: "./media/characters/bolt/side.svg",
  25295. extra: 1126 / 896,
  25296. bottom: 60 / 1187.3,
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Micro",
  25303. height: math.unit(5, "inches")
  25304. },
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(9, "feet"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Macro",
  25312. height: math.unit(700, "feet")
  25313. },
  25314. {
  25315. name: "Max Size",
  25316. height: math.unit(1.52e22, "yottameters")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(4.3, "meters"),
  25325. weight: math.unit(3, "tons"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/draekon-sylviar/front.svg",
  25329. extra: 2072/1512,
  25330. bottom: 74/2146
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(4.3, "meters"),
  25335. weight: math.unit(3, "tons"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/draekon-sylviar/back.svg",
  25339. extra: 1639/1483,
  25340. bottom: 41/1680
  25341. }
  25342. },
  25343. feral: {
  25344. height: math.unit(1.15, "meters"),
  25345. weight: math.unit(3, "tons"),
  25346. name: "Feral",
  25347. image: {
  25348. source: "./media/characters/draekon-sylviar/feral.svg",
  25349. extra: 1033/395,
  25350. bottom: 130/1163
  25351. }
  25352. },
  25353. maw: {
  25354. height: math.unit(1.3, "meters"),
  25355. name: "Maw",
  25356. image: {
  25357. source: "./media/characters/draekon-sylviar/maw.svg"
  25358. }
  25359. },
  25360. mawSeparated: {
  25361. height: math.unit(1.53, "meters"),
  25362. name: "Separated Maw",
  25363. image: {
  25364. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25365. }
  25366. },
  25367. tail: {
  25368. height: math.unit(1.15, "meters"),
  25369. name: "Tail",
  25370. image: {
  25371. source: "./media/characters/draekon-sylviar/tail.svg"
  25372. }
  25373. },
  25374. tailDick: {
  25375. height: math.unit(1.15, "meters"),
  25376. name: "Tail (Dick)",
  25377. image: {
  25378. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25379. }
  25380. },
  25381. tailDickSeparated: {
  25382. height: math.unit(1.19, "meters"),
  25383. name: "Tail (Separated Dick)",
  25384. image: {
  25385. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25386. }
  25387. },
  25388. slit: {
  25389. height: math.unit(1, "meters"),
  25390. name: "Slit",
  25391. image: {
  25392. source: "./media/characters/draekon-sylviar/slit.svg"
  25393. }
  25394. },
  25395. dick: {
  25396. height: math.unit(1.15, "meters"),
  25397. name: "Dick",
  25398. image: {
  25399. source: "./media/characters/draekon-sylviar/dick.svg"
  25400. }
  25401. },
  25402. dickSeparated: {
  25403. height: math.unit(1.1, "meters"),
  25404. name: "Separated Dick",
  25405. image: {
  25406. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25407. }
  25408. },
  25409. sheath: {
  25410. height: math.unit(1.15, "meters"),
  25411. name: "Sheath",
  25412. image: {
  25413. source: "./media/characters/draekon-sylviar/sheath.svg"
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Small",
  25420. height: math.unit(4.53 / 2, "meters"),
  25421. default: true
  25422. },
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(4.53, "meters"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Large",
  25430. height: math.unit(4.53 * 2, "meters"),
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(6 + 2 / 12, "feet"),
  25439. weight: math.unit(180, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/brawler/front.svg",
  25443. extra: 3301 / 3027,
  25444. bottom: 138 / 3439
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(6 + 2 / 12, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(11, "feet"),
  25461. weight: math.unit(1000, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/alex/front.svg",
  25465. bottom: 44.5 / 620
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Micro",
  25472. height: math.unit(5, "inches")
  25473. },
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(11, "feet"),
  25477. default: true
  25478. },
  25479. {
  25480. name: "Macro",
  25481. height: math.unit(9.5e9, "feet")
  25482. },
  25483. {
  25484. name: "Max Size",
  25485. height: math.unit(1.4e283, "yottameters")
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25491. {
  25492. female: {
  25493. height: math.unit(29.9, "m"),
  25494. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25495. name: "Female",
  25496. image: {
  25497. source: "./media/characters/zenari/female.svg",
  25498. extra: 3281.6 / 3217,
  25499. bottom: 72.2 / 3353
  25500. }
  25501. },
  25502. male: {
  25503. height: math.unit(27.7, "m"),
  25504. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25505. name: "Male",
  25506. image: {
  25507. source: "./media/characters/zenari/male.svg",
  25508. extra: 3008 / 2991,
  25509. bottom: 54.6 / 3069
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(29.7, "meters"),
  25517. default: true
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25523. {
  25524. female: {
  25525. height: math.unit(23.8, "m"),
  25526. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25527. name: "Female",
  25528. image: {
  25529. source: "./media/characters/mactarian/female.svg",
  25530. extra: 2662 / 2569,
  25531. bottom: 73 / 2736
  25532. }
  25533. },
  25534. male: {
  25535. height: math.unit(23.8, "m"),
  25536. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25537. name: "Male",
  25538. image: {
  25539. source: "./media/characters/mactarian/male.svg",
  25540. extra: 2673 / 2600,
  25541. bottom: 76 / 2750
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Macro",
  25548. height: math.unit(23.8, "meters"),
  25549. default: true
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25555. {
  25556. female: {
  25557. height: math.unit(19.3, "m"),
  25558. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25559. name: "Female",
  25560. image: {
  25561. source: "./media/characters/umok/female.svg",
  25562. extra: 2186 / 2078,
  25563. bottom: 87 / 2277
  25564. }
  25565. },
  25566. male: {
  25567. height: math.unit(19.5, "m"),
  25568. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25569. name: "Male",
  25570. image: {
  25571. source: "./media/characters/umok/male.svg",
  25572. extra: 2233 / 2140,
  25573. bottom: 24.4 / 2258
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(19.3, "meters"),
  25581. default: true
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25587. {
  25588. female: {
  25589. height: math.unit(26.15, "m"),
  25590. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25591. name: "Female",
  25592. image: {
  25593. source: "./media/characters/joraxian/female.svg",
  25594. extra: 2912 / 2824,
  25595. bottom: 36 / 2956
  25596. }
  25597. },
  25598. male: {
  25599. height: math.unit(25.4, "m"),
  25600. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25601. name: "Male",
  25602. image: {
  25603. source: "./media/characters/joraxian/male.svg",
  25604. extra: 2877 / 2721,
  25605. bottom: 82 / 2967
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(26.15, "meters"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25619. {
  25620. female: {
  25621. height: math.unit(21.6, "m"),
  25622. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25623. name: "Female",
  25624. image: {
  25625. source: "./media/characters/sthara/female.svg",
  25626. extra: 2516 / 2347,
  25627. bottom: 21.5 / 2537
  25628. }
  25629. },
  25630. male: {
  25631. height: math.unit(24, "m"),
  25632. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25633. name: "Male",
  25634. image: {
  25635. source: "./media/characters/sthara/male.svg",
  25636. extra: 2732 / 2607,
  25637. bottom: 23 / 2732
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(21.6, "meters"),
  25645. default: true
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(6 + 4 / 12, "feet"),
  25654. weight: math.unit(175, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/luka-bryzant/front.svg",
  25658. extra: 311 / 289,
  25659. bottom: 4 / 315
  25660. }
  25661. },
  25662. back: {
  25663. height: math.unit(6 + 4 / 12, "feet"),
  25664. weight: math.unit(175, "lb"),
  25665. name: "Back",
  25666. image: {
  25667. source: "./media/characters/luka-bryzant/back.svg",
  25668. extra: 311 / 289,
  25669. bottom: 3.8 / 313.7
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Micro",
  25676. height: math.unit(10, "inches")
  25677. },
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(6 + 4 / 12, "feet"),
  25681. default: true
  25682. },
  25683. {
  25684. name: "Large",
  25685. height: math.unit(12, "feet")
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(5 + 7 / 12, "feet"),
  25694. weight: math.unit(185, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/aman-aquila/front.svg",
  25698. extra: 1013 / 976,
  25699. bottom: 45.6 / 1057
  25700. }
  25701. },
  25702. side: {
  25703. height: math.unit(5 + 7 / 12, "feet"),
  25704. weight: math.unit(185, "lb"),
  25705. name: "Side",
  25706. image: {
  25707. source: "./media/characters/aman-aquila/side.svg",
  25708. extra: 1054 / 1011,
  25709. bottom: 15 / 1070
  25710. }
  25711. },
  25712. back: {
  25713. height: math.unit(5 + 7 / 12, "feet"),
  25714. weight: math.unit(185, "lb"),
  25715. name: "Back",
  25716. image: {
  25717. source: "./media/characters/aman-aquila/back.svg",
  25718. extra: 1026 / 970,
  25719. bottom: 12 / 1039
  25720. }
  25721. },
  25722. head: {
  25723. height: math.unit(1.211, "feet"),
  25724. name: "Head",
  25725. image: {
  25726. source: "./media/characters/aman-aquila/head.svg",
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Minimicro",
  25733. height: math.unit(0.057, "inches")
  25734. },
  25735. {
  25736. name: "Micro",
  25737. height: math.unit(7, "inches")
  25738. },
  25739. {
  25740. name: "Mini",
  25741. height: math.unit(3 + 7 / 12, "feet")
  25742. },
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(5 + 7 / 12, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(157 + 7 / 12, "feet")
  25751. },
  25752. {
  25753. name: "Megamacro",
  25754. height: math.unit(1557 + 7 / 12, "feet")
  25755. },
  25756. {
  25757. name: "Gigamacro",
  25758. height: math.unit(15557 + 7 / 12, "feet")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(3 + 2 / 12, "inches"),
  25767. weight: math.unit(0.3, "ounces"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/hiphae/front.svg",
  25771. extra: 1931 / 1683,
  25772. bottom: 24 / 1955
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(3 + 1 / 2, "inches"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(5 + 10 / 12, "feet"),
  25789. weight: math.unit(165, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/nicky/front.svg",
  25793. extra: 3144 / 2886,
  25794. bottom: 45.6 / 3192
  25795. }
  25796. },
  25797. back: {
  25798. height: math.unit(5 + 10 / 12, "feet"),
  25799. weight: math.unit(165, "lb"),
  25800. name: "Back",
  25801. image: {
  25802. source: "./media/characters/nicky/back.svg",
  25803. extra: 3055 / 2804,
  25804. bottom: 28.4 / 3087
  25805. }
  25806. },
  25807. frontclothed: {
  25808. height: math.unit(5 + 10 / 12, "feet"),
  25809. weight: math.unit(165, "lb"),
  25810. name: "Front-clothed",
  25811. image: {
  25812. source: "./media/characters/nicky/front-clothed.svg",
  25813. extra: 3184.9 / 2926.9,
  25814. bottom: 86.5 / 3239.9
  25815. }
  25816. },
  25817. foot: {
  25818. height: math.unit(1.16, "feet"),
  25819. name: "Foot",
  25820. image: {
  25821. source: "./media/characters/nicky/foot.svg"
  25822. }
  25823. },
  25824. feet: {
  25825. height: math.unit(1.34, "feet"),
  25826. name: "Feet",
  25827. image: {
  25828. source: "./media/characters/nicky/feet.svg"
  25829. }
  25830. },
  25831. maw: {
  25832. height: math.unit(0.9, "feet"),
  25833. name: "Maw",
  25834. image: {
  25835. source: "./media/characters/nicky/maw.svg"
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(5 + 10 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(60, "feet")
  25848. },
  25849. {
  25850. name: "Megamacro",
  25851. height: math.unit(1, "mile")
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25857. {
  25858. side: {
  25859. height: math.unit(10, "feet"),
  25860. weight: math.unit(600, "lb"),
  25861. name: "Side",
  25862. image: {
  25863. source: "./media/characters/blair/side.svg",
  25864. bottom: 16.6 / 475,
  25865. extra: 458 / 431
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Micro",
  25872. height: math.unit(8, "inches")
  25873. },
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(10, "feet"),
  25877. default: true
  25878. },
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(180, "feet")
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(5 + 4 / 12, "feet"),
  25890. weight: math.unit(125, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/fisher/front.svg",
  25894. extra: 444 / 390,
  25895. bottom: 2 / 444.8
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Micro",
  25902. height: math.unit(4, "inches")
  25903. },
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(5 + 4 / 12, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(100, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(6.71, "feet"),
  25920. weight: math.unit(200, "lb"),
  25921. capacity: math.unit(1000000, "people"),
  25922. name: "Front",
  25923. image: {
  25924. source: "./media/characters/gliss/front.svg",
  25925. extra: 2347 / 2231,
  25926. bottom: 113 / 2462
  25927. }
  25928. },
  25929. hammerspaceSize: {
  25930. height: math.unit(6.71 * 717, "feet"),
  25931. weight: math.unit(200, "lb"),
  25932. capacity: math.unit(1000000, "people"),
  25933. name: "Hammerspace Size",
  25934. image: {
  25935. source: "./media/characters/gliss/front.svg",
  25936. extra: 2347 / 2231,
  25937. bottom: 113 / 2462
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(6.71, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25951. {
  25952. side: {
  25953. height: math.unit(1.44, "m"),
  25954. weight: math.unit(80, "kg"),
  25955. name: "Side",
  25956. image: {
  25957. source: "./media/characters/dune-anderson/side.svg",
  25958. bottom: 49 / 1426
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Wolf-sized",
  25965. height: math.unit(1.44, "meters")
  25966. },
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(5.05, "meters"),
  25970. default: true
  25971. },
  25972. {
  25973. name: "Big",
  25974. height: math.unit(14.4, "meters")
  25975. },
  25976. {
  25977. name: "Huge",
  25978. height: math.unit(144, "meters")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(7, "feet"),
  25987. weight: math.unit(425, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/hind/front.svg",
  25991. extra: 2091 / 1860,
  25992. bottom: 129 / 2220
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(7, "feet"),
  25997. weight: math.unit(425, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/hind/back.svg",
  26001. extra: 2091 / 1860,
  26002. bottom: 24.6 / 2309
  26003. }
  26004. },
  26005. tail: {
  26006. height: math.unit(2.8, "feet"),
  26007. name: "Tail",
  26008. image: {
  26009. source: "./media/characters/hind/tail.svg"
  26010. }
  26011. },
  26012. head: {
  26013. height: math.unit(2.55, "feet"),
  26014. name: "Head",
  26015. image: {
  26016. source: "./media/characters/hind/head.svg"
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "XS",
  26023. height: math.unit(0.7, "feet")
  26024. },
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(7, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "XL",
  26032. height: math.unit(70, "feet")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(2.1, "meters"),
  26041. weight: math.unit(150, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/tharquench-sizestealer/front.svg",
  26045. extra: 1605/1470,
  26046. bottom: 36/1641
  26047. }
  26048. },
  26049. frontAlt: {
  26050. height: math.unit(2.1, "meters"),
  26051. weight: math.unit(150, "lb"),
  26052. name: "Front (Alt)",
  26053. image: {
  26054. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26055. extra: 2318 / 2063,
  26056. bottom: 93.4 / 2410
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Nano",
  26063. height: math.unit(1, "mm")
  26064. },
  26065. {
  26066. name: "Micro",
  26067. height: math.unit(1, "cm")
  26068. },
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(2.1, "meters"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(7 + 5 / 12, "feet"),
  26081. weight: math.unit(357, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/solex-draconov/front.svg",
  26085. extra: 1993 / 1865,
  26086. bottom: 117 / 2111
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Natural Height",
  26093. height: math.unit(7 + 5 / 12, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Macro",
  26098. height: math.unit(350, "feet")
  26099. },
  26100. {
  26101. name: "Macro+",
  26102. height: math.unit(1000, "feet")
  26103. },
  26104. {
  26105. name: "Megamacro",
  26106. height: math.unit(20, "km")
  26107. },
  26108. {
  26109. name: "Megamacro+",
  26110. height: math.unit(1000, "km")
  26111. },
  26112. {
  26113. name: "Gigamacro",
  26114. height: math.unit(2.5, "Gm")
  26115. },
  26116. {
  26117. name: "Teramacro",
  26118. height: math.unit(15, "Tm")
  26119. },
  26120. {
  26121. name: "Galactic",
  26122. height: math.unit(30, "Zm")
  26123. },
  26124. {
  26125. name: "Universal",
  26126. height: math.unit(21000, "Ym")
  26127. },
  26128. {
  26129. name: "Omniversal",
  26130. height: math.unit(9.861e50, "Ym")
  26131. },
  26132. {
  26133. name: "Existential",
  26134. height: math.unit(1e300, "meters")
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26140. {
  26141. side: {
  26142. height: math.unit(25, "feet"),
  26143. weight: math.unit(90000, "lb"),
  26144. name: "Side",
  26145. image: {
  26146. source: "./media/characters/mandarax/side.svg",
  26147. extra: 614 / 332,
  26148. bottom: 55 / 630
  26149. }
  26150. },
  26151. lounging: {
  26152. height: math.unit(15.4, "feet"),
  26153. weight: math.unit(90000, "lb"),
  26154. name: "Lounging",
  26155. image: {
  26156. source: "./media/characters/mandarax/lounging.svg",
  26157. extra: 817/609,
  26158. bottom: 685/1502
  26159. }
  26160. },
  26161. head: {
  26162. height: math.unit(11.4, "feet"),
  26163. name: "Head",
  26164. image: {
  26165. source: "./media/characters/mandarax/head.svg"
  26166. }
  26167. },
  26168. belly: {
  26169. height: math.unit(33, "feet"),
  26170. name: "Belly",
  26171. capacity: math.unit(500, "people"),
  26172. image: {
  26173. source: "./media/characters/mandarax/belly.svg"
  26174. }
  26175. },
  26176. dick: {
  26177. height: math.unit(8.46, "feet"),
  26178. name: "Dick",
  26179. image: {
  26180. source: "./media/characters/mandarax/dick.svg"
  26181. }
  26182. },
  26183. top: {
  26184. height: math.unit(28, "meters"),
  26185. name: "Top",
  26186. image: {
  26187. source: "./media/characters/mandarax/top.svg"
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(25, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(5, "feet"),
  26204. weight: math.unit(90, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/pixil/front.svg",
  26208. extra: 2000 / 1618,
  26209. bottom: 12.3 / 2011
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(5, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Megamacro",
  26221. height: math.unit(10, "miles"),
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(7 + 2 / 12, "feet"),
  26230. weight: math.unit(200, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/angel/front.svg",
  26234. extra: 1830 / 1737,
  26235. bottom: 22.6 / 1854,
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(7 + 2 / 12, "feet"),
  26243. default: true
  26244. },
  26245. {
  26246. name: "Macro",
  26247. height: math.unit(1000, "feet")
  26248. },
  26249. {
  26250. name: "Megamacro",
  26251. height: math.unit(2, "miles")
  26252. },
  26253. {
  26254. name: "Gigamacro",
  26255. height: math.unit(20, "earths")
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(5, "feet"),
  26264. weight: math.unit(180, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/mekana/front.svg",
  26268. extra: 1671 / 1605,
  26269. bottom: 3.5 / 1691
  26270. }
  26271. },
  26272. side: {
  26273. height: math.unit(5, "feet"),
  26274. weight: math.unit(180, "lb"),
  26275. name: "Side",
  26276. image: {
  26277. source: "./media/characters/mekana/side.svg",
  26278. extra: 1671 / 1605,
  26279. bottom: 3.5 / 1691
  26280. }
  26281. },
  26282. back: {
  26283. height: math.unit(5, "feet"),
  26284. weight: math.unit(180, "lb"),
  26285. name: "Back",
  26286. image: {
  26287. source: "./media/characters/mekana/back.svg",
  26288. extra: 1671 / 1605,
  26289. bottom: 3.5 / 1691
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(5, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(4 + 6 / 12, "feet"),
  26306. weight: math.unit(80, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/pixie/front.svg",
  26310. extra: 1924 / 1825,
  26311. bottom: 22.4 / 1946
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(4 + 6 / 12, "feet"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Macro",
  26323. height: math.unit(40, "feet")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(2.1, "meters"),
  26332. weight: math.unit(200, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/the-lascivious/front.svg",
  26336. extra: 1 / 0.893,
  26337. bottom: 3.5 / 573.7
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Human Scale",
  26344. height: math.unit(2.1, "meters")
  26345. },
  26346. {
  26347. name: "Wolxi Scale",
  26348. height: math.unit(46.2, "m"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Boinker of Buildings",
  26353. height: math.unit(10, "km")
  26354. },
  26355. {
  26356. name: "Shagger of Skyscrapers",
  26357. height: math.unit(40, "km")
  26358. },
  26359. {
  26360. name: "Banger of Boroughs",
  26361. height: math.unit(4000, "km")
  26362. },
  26363. {
  26364. name: "Screwer of States",
  26365. height: math.unit(100000, "km")
  26366. },
  26367. {
  26368. name: "Pounder of Planets",
  26369. height: math.unit(2000000, "km")
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(6, "feet"),
  26378. weight: math.unit(150, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/aj/front.svg",
  26382. extra: 2039 / 1562,
  26383. bottom: 40 / 2079
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(11 + 6 / 12, "feet"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Megamacro",
  26395. height: math.unit(60, "megameters")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26401. {
  26402. side: {
  26403. height: math.unit(31 + 8 / 12, "feet"),
  26404. weight: math.unit(75000, "kg"),
  26405. name: "Side",
  26406. image: {
  26407. source: "./media/characters/koros/side.svg",
  26408. extra: 1442 / 1297,
  26409. bottom: 122.7 / 1562
  26410. }
  26411. },
  26412. dicksKingsCrown: {
  26413. height: math.unit(6, "feet"),
  26414. name: "Dicks (King's Crown)",
  26415. image: {
  26416. source: "./media/characters/koros/dicks-kings-crown.svg"
  26417. }
  26418. },
  26419. dicksTailSet: {
  26420. height: math.unit(3, "feet"),
  26421. name: "Dicks (Tail Set)",
  26422. image: {
  26423. source: "./media/characters/koros/dicks-tail-set.svg"
  26424. }
  26425. },
  26426. dickCumming: {
  26427. height: math.unit(7.98, "feet"),
  26428. name: "Dick (Cumming)",
  26429. image: {
  26430. source: "./media/characters/koros/dick-cumming.svg"
  26431. }
  26432. },
  26433. dicksBack: {
  26434. height: math.unit(5.9, "feet"),
  26435. name: "Dicks (Back)",
  26436. image: {
  26437. source: "./media/characters/koros/dicks-back.svg"
  26438. }
  26439. },
  26440. dicksFront: {
  26441. height: math.unit(3.72, "feet"),
  26442. name: "Dicks (Front)",
  26443. image: {
  26444. source: "./media/characters/koros/dicks-front.svg"
  26445. }
  26446. },
  26447. dicksPeeking: {
  26448. height: math.unit(3.0, "feet"),
  26449. name: "Dicks (Peeking)",
  26450. image: {
  26451. source: "./media/characters/koros/dicks-peeking.svg"
  26452. }
  26453. },
  26454. eye: {
  26455. height: math.unit(1.7, "feet"),
  26456. name: "Eye",
  26457. image: {
  26458. source: "./media/characters/koros/eye.svg"
  26459. }
  26460. },
  26461. headFront: {
  26462. height: math.unit(11.69, "feet"),
  26463. name: "Head (Front)",
  26464. image: {
  26465. source: "./media/characters/koros/head-front.svg"
  26466. }
  26467. },
  26468. headSide: {
  26469. height: math.unit(14, "feet"),
  26470. name: "Head (Side)",
  26471. image: {
  26472. source: "./media/characters/koros/head-side.svg"
  26473. }
  26474. },
  26475. leg: {
  26476. height: math.unit(17, "feet"),
  26477. name: "Leg",
  26478. image: {
  26479. source: "./media/characters/koros/leg.svg"
  26480. }
  26481. },
  26482. mawSide: {
  26483. height: math.unit(12.8, "feet"),
  26484. name: "Maw (Side)",
  26485. image: {
  26486. source: "./media/characters/koros/maw-side.svg"
  26487. }
  26488. },
  26489. mawSpitting: {
  26490. height: math.unit(17, "feet"),
  26491. name: "Maw (Spitting)",
  26492. image: {
  26493. source: "./media/characters/koros/maw-spitting.svg"
  26494. }
  26495. },
  26496. slit: {
  26497. height: math.unit(2.8, "feet"),
  26498. name: "Slit",
  26499. image: {
  26500. source: "./media/characters/koros/slit.svg"
  26501. }
  26502. },
  26503. stomach: {
  26504. height: math.unit(6.8, "feet"),
  26505. capacity: math.unit(20, "people"),
  26506. name: "Stomach",
  26507. image: {
  26508. source: "./media/characters/koros/stomach.svg"
  26509. }
  26510. },
  26511. wingspanBottom: {
  26512. height: math.unit(114, "feet"),
  26513. name: "Wingspan (Bottom)",
  26514. image: {
  26515. source: "./media/characters/koros/wingspan-bottom.svg"
  26516. }
  26517. },
  26518. wingspanTop: {
  26519. height: math.unit(104, "feet"),
  26520. name: "Wingspan (Top)",
  26521. image: {
  26522. source: "./media/characters/koros/wingspan-top.svg"
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(31 + 8 / 12, "feet"),
  26530. default: true
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(18 + 5 / 12, "feet"),
  26539. weight: math.unit(3750, "kg"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/vexx/front.svg",
  26543. extra: 426 / 396,
  26544. bottom: 31.5 / 458
  26545. }
  26546. },
  26547. maw: {
  26548. height: math.unit(6, "feet"),
  26549. name: "Maw",
  26550. image: {
  26551. source: "./media/characters/vexx/maw.svg"
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(18 + 5 / 12, "feet"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26565. {
  26566. front: {
  26567. height: math.unit(17 + 6 / 12, "feet"),
  26568. weight: math.unit(150, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/baadra/front.svg",
  26572. extra: 1694/1553,
  26573. bottom: 179/1873
  26574. }
  26575. },
  26576. frontAlt: {
  26577. height: math.unit(17 + 6 / 12, "feet"),
  26578. weight: math.unit(150, "lb"),
  26579. name: "Front (Alt)",
  26580. image: {
  26581. source: "./media/characters/baadra/front-alt.svg",
  26582. extra: 3137 / 2890,
  26583. bottom: 168.4 / 3305
  26584. }
  26585. },
  26586. back: {
  26587. height: math.unit(17 + 6 / 12, "feet"),
  26588. weight: math.unit(150, "lb"),
  26589. name: "Back",
  26590. image: {
  26591. source: "./media/characters/baadra/back.svg",
  26592. extra: 3142 / 2890,
  26593. bottom: 220 / 3371
  26594. }
  26595. },
  26596. head: {
  26597. height: math.unit(5.45, "feet"),
  26598. name: "Head",
  26599. image: {
  26600. source: "./media/characters/baadra/head.svg"
  26601. }
  26602. },
  26603. headAngry: {
  26604. height: math.unit(4.95, "feet"),
  26605. name: "Head (Angry)",
  26606. image: {
  26607. source: "./media/characters/baadra/head-angry.svg"
  26608. }
  26609. },
  26610. headOpen: {
  26611. height: math.unit(6, "feet"),
  26612. name: "Head (Open)",
  26613. image: {
  26614. source: "./media/characters/baadra/head-open.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(17 + 6 / 12, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(7 + 3 / 12, "feet"),
  26631. weight: math.unit(180, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/juri/front.svg",
  26635. extra: 1401 / 1237,
  26636. bottom: 18.5 / 1418
  26637. }
  26638. },
  26639. side: {
  26640. height: math.unit(7 + 3 / 12, "feet"),
  26641. weight: math.unit(180, "lb"),
  26642. name: "Side",
  26643. image: {
  26644. source: "./media/characters/juri/side.svg",
  26645. extra: 1424 / 1242,
  26646. bottom: 18.5 / 1447
  26647. }
  26648. },
  26649. sitting: {
  26650. height: math.unit(6, "feet"),
  26651. weight: math.unit(180, "lb"),
  26652. name: "Sitting",
  26653. image: {
  26654. source: "./media/characters/juri/sitting.svg",
  26655. extra: 1270 / 1143,
  26656. bottom: 100 / 1343
  26657. }
  26658. },
  26659. back: {
  26660. height: math.unit(7 + 3 / 12, "feet"),
  26661. weight: math.unit(180, "lb"),
  26662. name: "Back",
  26663. image: {
  26664. source: "./media/characters/juri/back.svg",
  26665. extra: 1377 / 1240,
  26666. bottom: 23.7 / 1405
  26667. }
  26668. },
  26669. maw: {
  26670. height: math.unit(2.8, "feet"),
  26671. name: "Maw",
  26672. image: {
  26673. source: "./media/characters/juri/maw.svg"
  26674. }
  26675. },
  26676. stomach: {
  26677. height: math.unit(0.89, "feet"),
  26678. capacity: math.unit(4, "liters"),
  26679. name: "Stomach",
  26680. image: {
  26681. source: "./media/characters/juri/stomach.svg"
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(7 + 3 / 12, "feet"),
  26689. default: true
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26695. {
  26696. fox: {
  26697. height: math.unit(5 + 6 / 12, "feet"),
  26698. weight: math.unit(140, "lb"),
  26699. name: "Fox",
  26700. image: {
  26701. source: "./media/characters/maxene-sita/fox.svg",
  26702. extra: 146 / 138,
  26703. bottom: 2.1 / 148.19
  26704. }
  26705. },
  26706. foxLaying: {
  26707. height: math.unit(1.70, "feet"),
  26708. weight: math.unit(140, "lb"),
  26709. name: "Fox (Laying)",
  26710. image: {
  26711. source: "./media/characters/maxene-sita/fox-laying.svg",
  26712. extra: 910 / 572,
  26713. bottom: 71 / 981
  26714. }
  26715. },
  26716. kitsune: {
  26717. height: math.unit(10, "feet"),
  26718. weight: math.unit(800, "lb"),
  26719. name: "Kitsune",
  26720. image: {
  26721. source: "./media/characters/maxene-sita/kitsune.svg",
  26722. extra: 185 / 176,
  26723. bottom: 4.7 / 189.9
  26724. }
  26725. },
  26726. hellhound: {
  26727. height: math.unit(10, "feet"),
  26728. weight: math.unit(700, "lb"),
  26729. name: "Hellhound",
  26730. image: {
  26731. source: "./media/characters/maxene-sita/hellhound.svg",
  26732. extra: 1600 / 1545,
  26733. bottom: 81 / 1681
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(5 + 6 / 12, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26747. {
  26748. front: {
  26749. height: math.unit(3 + 4 / 12, "feet"),
  26750. weight: math.unit(70, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/maia/front.svg",
  26754. extra: 227 / 219.5,
  26755. bottom: 40 / 267
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(3 + 4 / 12, "feet"),
  26760. weight: math.unit(70, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/maia/back.svg",
  26764. extra: 237 / 225
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(3 + 4 / 12, "feet"),
  26772. default: true
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(5 + 10 / 12, "feet"),
  26781. weight: math.unit(197, "lb"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/jabaro/front.svg",
  26785. extra: 225 / 216,
  26786. bottom: 5.06 / 230
  26787. }
  26788. },
  26789. back: {
  26790. height: math.unit(5 + 10 / 12, "feet"),
  26791. weight: math.unit(197, "lb"),
  26792. name: "Back",
  26793. image: {
  26794. source: "./media/characters/jabaro/back.svg",
  26795. extra: 225 / 219,
  26796. bottom: 1.9 / 227
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(5 + 10 / 12, "feet"),
  26804. default: true
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(5 + 8 / 12, "feet"),
  26813. weight: math.unit(139, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/risa/front.svg",
  26817. extra: 270 / 260,
  26818. bottom: 11.2 / 282
  26819. }
  26820. },
  26821. back: {
  26822. height: math.unit(5 + 8 / 12, "feet"),
  26823. weight: math.unit(139, "lb"),
  26824. name: "Back",
  26825. image: {
  26826. source: "./media/characters/risa/back.svg",
  26827. extra: 264 / 255,
  26828. bottom: 4 / 268
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(5 + 8 / 12, "feet"),
  26836. default: true
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(2 + 11 / 12, "feet"),
  26845. weight: math.unit(30, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/weatley/front.svg",
  26849. bottom: 10.7 / 414,
  26850. extra: 403.5 / 362
  26851. }
  26852. },
  26853. back: {
  26854. height: math.unit(2 + 11 / 12, "feet"),
  26855. weight: math.unit(30, "lb"),
  26856. name: "Back",
  26857. image: {
  26858. source: "./media/characters/weatley/back.svg",
  26859. bottom: 10.7 / 414,
  26860. extra: 403.5 / 362
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(2 + 11 / 12, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(5 + 2 / 12, "feet"),
  26877. weight: math.unit(50, "kg"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/mercury-crescent/front.svg",
  26881. extra: 1088 / 1033,
  26882. bottom: 18.9 / 1109
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(5 + 2 / 12, "feet"),
  26890. default: true
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(2, "feet"),
  26899. weight: math.unit(15, "kg"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/diamond-jones/front.svg",
  26903. extra: 727/723,
  26904. bottom: 46/773
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(2, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(3, "feet"),
  26921. weight: math.unit(30, "kg"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/sweet-bit/front.svg",
  26925. extra: 675 / 567,
  26926. bottom: 27.7 / 703
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(3, "feet"),
  26934. default: true
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26940. {
  26941. side: {
  26942. height: math.unit(9.178, "feet"),
  26943. weight: math.unit(500, "lb"),
  26944. name: "Side",
  26945. image: {
  26946. source: "./media/characters/umbrazen/side.svg",
  26947. extra: 1730 / 1473,
  26948. bottom: 34.6 / 1765
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(9.178, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(10, "feet"),
  26965. weight: math.unit(750, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/arlist/front.svg",
  26969. extra: 961 / 778,
  26970. bottom: 6.2 / 986
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(10, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5 + 1 / 12, "feet"),
  26987. weight: math.unit(110, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/aradel/front.svg",
  26991. extra: 324 / 303,
  26992. bottom: 3.6 / 329.4
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5 + 1 / 12, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27006. {
  27007. dressed: {
  27008. height: math.unit(3 + 8 / 12, "feet"),
  27009. weight: math.unit(50, "lb"),
  27010. name: "Dressed",
  27011. image: {
  27012. source: "./media/characters/serryn/dressed.svg",
  27013. extra: 1792 / 1656,
  27014. bottom: 43.5 / 1840
  27015. }
  27016. },
  27017. nude: {
  27018. height: math.unit(3 + 8 / 12, "feet"),
  27019. weight: math.unit(50, "lb"),
  27020. name: "Nude",
  27021. image: {
  27022. source: "./media/characters/serryn/nude.svg",
  27023. extra: 1792 / 1656,
  27024. bottom: 43.5 / 1840
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(3 + 8 / 12, "feet"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(7 + 10 / 12, "feet"),
  27041. weight: math.unit(255, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/xavier-thyme/front.svg",
  27045. extra: 3733 / 3642,
  27046. bottom: 131 / 3869
  27047. }
  27048. },
  27049. frontRaven: {
  27050. height: math.unit(7 + 10 / 12, "feet"),
  27051. weight: math.unit(255, "lb"),
  27052. name: "Front (Raven)",
  27053. image: {
  27054. source: "./media/characters/xavier-thyme/front-raven.svg",
  27055. extra: 4385 / 3642,
  27056. bottom: 131 / 4517
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(7 + 10 / 12, "feet"),
  27064. default: true
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(1.6, "m"),
  27073. weight: math.unit(50, "kg"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/kiki/front.svg",
  27077. extra: 4682 / 3610,
  27078. bottom: 115 / 4777
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(1.6, "meters"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(50, "m"),
  27095. weight: math.unit(500, "tonnes"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/ryoko/front.svg",
  27099. extra: 4632 / 3926,
  27100. bottom: 193 / 4823
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(50, "meters"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(30, "m"),
  27117. weight: math.unit(22, "tonnes"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/elio/front.svg",
  27121. extra: 4582 / 3720,
  27122. bottom: 236 / 4828
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(30, "meters"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(6 + 3 / 12, "feet"),
  27139. weight: math.unit(120, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/azura/front.svg",
  27143. extra: 1149 / 1135,
  27144. bottom: 45 / 1194
  27145. }
  27146. },
  27147. frontClothed: {
  27148. height: math.unit(6 + 3 / 12, "feet"),
  27149. weight: math.unit(120, "lb"),
  27150. name: "Front (Clothed)",
  27151. image: {
  27152. source: "./media/characters/azura/front-clothed.svg",
  27153. extra: 1149 / 1135,
  27154. bottom: 45 / 1194
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(6 + 3 / 12, "feet"),
  27162. default: true
  27163. },
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(20 + 6 / 12, "feet")
  27167. },
  27168. {
  27169. name: "Megamacro",
  27170. height: math.unit(12, "miles")
  27171. },
  27172. {
  27173. name: "Gigamacro",
  27174. height: math.unit(10000, "miles")
  27175. },
  27176. {
  27177. name: "Teramacro",
  27178. height: math.unit(900000, "miles")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(12, "feet"),
  27187. weight: math.unit(1, "ton"),
  27188. capacity: math.unit(660000, "gallons"),
  27189. name: "Front",
  27190. image: {
  27191. source: "./media/characters/zeus/front.svg",
  27192. extra: 5005 / 4717,
  27193. bottom: 363 / 5388
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Normal",
  27200. height: math.unit(12, "feet")
  27201. },
  27202. {
  27203. name: "Preferred Size",
  27204. height: math.unit(0.5, "miles"),
  27205. default: true
  27206. },
  27207. {
  27208. name: "Giga Horse",
  27209. height: math.unit(300, "miles")
  27210. },
  27211. {
  27212. name: "Riding Planets",
  27213. height: math.unit(30, "megameters")
  27214. },
  27215. {
  27216. name: "Cosmic Giant",
  27217. height: math.unit(3, "zettameters")
  27218. },
  27219. {
  27220. name: "Breeding God",
  27221. height: math.unit(9.92e22, "yottameters")
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27227. {
  27228. side: {
  27229. height: math.unit(9, "feet"),
  27230. weight: math.unit(1500, "kg"),
  27231. name: "Side",
  27232. image: {
  27233. source: "./media/characters/fang/side.svg",
  27234. extra: 924 / 866,
  27235. bottom: 47.5 / 972.3
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(9, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(75 + 6 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Teramacro",
  27251. height: math.unit(50000, "miles")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(10, "feet"),
  27260. weight: math.unit(2, "tons"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/rekhit/front.svg",
  27264. extra: 2796 / 2590,
  27265. bottom: 225 / 3022
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(10, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(500, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(7 + 6.451 / 12, "feet"),
  27286. weight: math.unit(310, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/dahlia-verrick/front.svg",
  27290. extra: 1488 / 1365,
  27291. bottom: 6.2 / 1495
  27292. }
  27293. },
  27294. back: {
  27295. height: math.unit(7 + 6.451 / 12, "feet"),
  27296. weight: math.unit(310, "lb"),
  27297. name: "Back",
  27298. image: {
  27299. source: "./media/characters/dahlia-verrick/back.svg",
  27300. extra: 1472 / 1351,
  27301. bottom: 5.28 / 1477
  27302. }
  27303. },
  27304. frontBusiness: {
  27305. height: math.unit(7 + 6.451 / 12, "feet"),
  27306. weight: math.unit(200, "lb"),
  27307. name: "Front (Business)",
  27308. image: {
  27309. source: "./media/characters/dahlia-verrick/front-business.svg",
  27310. extra: 1478 / 1381,
  27311. bottom: 5.5 / 1484
  27312. }
  27313. },
  27314. frontCasual: {
  27315. height: math.unit(7 + 6.451 / 12, "feet"),
  27316. weight: math.unit(200, "lb"),
  27317. name: "Front (Casual)",
  27318. image: {
  27319. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27320. extra: 1478 / 1381,
  27321. bottom: 5.5 / 1484
  27322. }
  27323. },
  27324. },
  27325. [
  27326. {
  27327. name: "Travel-Sized",
  27328. height: math.unit(7.45, "inches")
  27329. },
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(7 + 6.451 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Hitting the Town",
  27337. height: math.unit(37 + 8 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Stomp in the Suburbs",
  27341. height: math.unit(964 + 9.728 / 12, "feet")
  27342. },
  27343. {
  27344. name: "Sit on the City",
  27345. height: math.unit(61747 + 10.592 / 12, "feet")
  27346. },
  27347. {
  27348. name: "Glomp the Globe",
  27349. height: math.unit(252919327 + 4.832 / 12, "feet")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(6 + 4 / 12, "feet"),
  27358. weight: math.unit(320, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/balina-mahigan/front.svg",
  27362. extra: 447 / 428,
  27363. bottom: 18 / 466
  27364. }
  27365. },
  27366. back: {
  27367. height: math.unit(6 + 4 / 12, "feet"),
  27368. weight: math.unit(320, "lb"),
  27369. name: "Back",
  27370. image: {
  27371. source: "./media/characters/balina-mahigan/back.svg",
  27372. extra: 445 / 428,
  27373. bottom: 4.07 / 448
  27374. }
  27375. },
  27376. arm: {
  27377. height: math.unit(1.88, "feet"),
  27378. name: "Arm",
  27379. image: {
  27380. source: "./media/characters/balina-mahigan/arm.svg"
  27381. }
  27382. },
  27383. backPort: {
  27384. height: math.unit(0.685, "feet"),
  27385. name: "Back Port",
  27386. image: {
  27387. source: "./media/characters/balina-mahigan/back-port.svg"
  27388. }
  27389. },
  27390. hoofpaw: {
  27391. height: math.unit(1.41, "feet"),
  27392. name: "Hoofpaw",
  27393. image: {
  27394. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27395. }
  27396. },
  27397. leftHandBack: {
  27398. height: math.unit(0.938, "feet"),
  27399. name: "Left Hand (Back)",
  27400. image: {
  27401. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27402. }
  27403. },
  27404. leftHandFront: {
  27405. height: math.unit(0.938, "feet"),
  27406. name: "Left Hand (Front)",
  27407. image: {
  27408. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27409. }
  27410. },
  27411. rightHandBack: {
  27412. height: math.unit(0.95, "feet"),
  27413. name: "Right Hand (Back)",
  27414. image: {
  27415. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27416. }
  27417. },
  27418. rightHandFront: {
  27419. height: math.unit(0.95, "feet"),
  27420. name: "Right Hand (Front)",
  27421. image: {
  27422. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6 + 4 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(6, "feet"),
  27439. weight: math.unit(320, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/balina-mejeri/front.svg",
  27443. extra: 517 / 488,
  27444. bottom: 44.2 / 561
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(6 + 4 / 12, "feet")
  27452. },
  27453. {
  27454. name: "Business",
  27455. height: math.unit(155, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27462. {
  27463. kneeling: {
  27464. height: math.unit(6 + 4 / 12, "feet"),
  27465. weight: math.unit(300 * 20, "lb"),
  27466. name: "Kneeling",
  27467. image: {
  27468. source: "./media/characters/balbarian/kneeling.svg",
  27469. extra: 922 / 862,
  27470. bottom: 42.4 / 965
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(6 + 4 / 12, "feet")
  27478. },
  27479. {
  27480. name: "Treasured",
  27481. height: math.unit(18 + 9 / 12, "feet"),
  27482. default: true
  27483. },
  27484. {
  27485. name: "Macro",
  27486. height: math.unit(900, "feet")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(6 + 4 / 12, "feet"),
  27495. weight: math.unit(325, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/balina-amarini/front.svg",
  27499. extra: 415 / 403,
  27500. bottom: 19 / 433.4
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(6 + 4 / 12, "feet"),
  27505. weight: math.unit(325, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/balina-amarini/back.svg",
  27509. extra: 415 / 403,
  27510. bottom: 13.5 / 432
  27511. }
  27512. },
  27513. overdrive: {
  27514. height: math.unit(6 + 4 / 12, "feet"),
  27515. weight: math.unit(400, "lb"),
  27516. name: "Overdrive",
  27517. image: {
  27518. source: "./media/characters/balina-amarini/overdrive.svg",
  27519. extra: 269 / 259,
  27520. bottom: 12 / 282
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Boom",
  27527. height: math.unit(9 + 10 / 12, "feet"),
  27528. default: true
  27529. },
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(280, "feet")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27538. {
  27539. goddess: {
  27540. height: math.unit(600, "feet"),
  27541. weight: math.unit(2000000, "tons"),
  27542. name: "Goddess",
  27543. image: {
  27544. source: "./media/characters/lady-kubwa/goddess.svg",
  27545. extra: 1240.5 / 1223,
  27546. bottom: 22 / 1263
  27547. }
  27548. },
  27549. goddesser: {
  27550. height: math.unit(900, "feet"),
  27551. weight: math.unit(20000000, "lb"),
  27552. name: "Goddess-er",
  27553. image: {
  27554. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27555. extra: 899 / 888,
  27556. bottom: 12.6 / 912
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Macro",
  27563. height: math.unit(600, "feet"),
  27564. default: true
  27565. },
  27566. {
  27567. name: "Megamacro",
  27568. height: math.unit(250, "miles")
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(7 + 7 / 12, "feet"),
  27577. weight: math.unit(250, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/tala-grovehorn/front.svg",
  27581. extra: 2636 / 2525,
  27582. bottom: 147 / 2781
  27583. }
  27584. },
  27585. back: {
  27586. height: math.unit(7 + 7 / 12, "feet"),
  27587. weight: math.unit(250, "lb"),
  27588. name: "Back",
  27589. image: {
  27590. source: "./media/characters/tala-grovehorn/back.svg",
  27591. extra: 2635 / 2539,
  27592. bottom: 100 / 2732.8
  27593. }
  27594. },
  27595. mouth: {
  27596. height: math.unit(1.15, "feet"),
  27597. name: "Mouth",
  27598. image: {
  27599. source: "./media/characters/tala-grovehorn/mouth.svg"
  27600. }
  27601. },
  27602. dick: {
  27603. height: math.unit(2.36, "feet"),
  27604. name: "Dick",
  27605. image: {
  27606. source: "./media/characters/tala-grovehorn/dick.svg"
  27607. }
  27608. },
  27609. slit: {
  27610. height: math.unit(0.61, "feet"),
  27611. name: "Slit",
  27612. image: {
  27613. source: "./media/characters/tala-grovehorn/slit.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27622. {
  27623. front: {
  27624. height: math.unit(7 + 7 / 12, "feet"),
  27625. weight: math.unit(225, "lb"),
  27626. name: "Front",
  27627. image: {
  27628. source: "./media/characters/epona/front.svg",
  27629. extra: 2445 / 2290,
  27630. bottom: 251 / 2696
  27631. }
  27632. },
  27633. back: {
  27634. height: math.unit(7 + 7 / 12, "feet"),
  27635. weight: math.unit(225, "lb"),
  27636. name: "Back",
  27637. image: {
  27638. source: "./media/characters/epona/back.svg",
  27639. extra: 2546 / 2408,
  27640. bottom: 44 / 2589
  27641. }
  27642. },
  27643. genitals: {
  27644. height: math.unit(1.5, "feet"),
  27645. name: "Genitals",
  27646. image: {
  27647. source: "./media/characters/epona/genitals.svg"
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(7 + 7 / 12, "feet"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27661. {
  27662. front: {
  27663. height: math.unit(7, "feet"),
  27664. weight: math.unit(518, "lb"),
  27665. name: "Front",
  27666. image: {
  27667. source: "./media/characters/avia-bloodbourn/front.svg",
  27668. extra: 1466 / 1350,
  27669. bottom: 65 / 1527
  27670. }
  27671. },
  27672. },
  27673. [
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(9.35, "feet"),
  27681. weight: math.unit(600, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/amera/front.svg",
  27685. extra: 891 / 818,
  27686. bottom: 30 / 922.7
  27687. }
  27688. },
  27689. back: {
  27690. height: math.unit(9.35, "feet"),
  27691. weight: math.unit(600, "lb"),
  27692. name: "Back",
  27693. image: {
  27694. source: "./media/characters/amera/back.svg",
  27695. extra: 876 / 824,
  27696. bottom: 6.8 / 884
  27697. }
  27698. },
  27699. dick: {
  27700. height: math.unit(2.14, "feet"),
  27701. name: "Dick",
  27702. image: {
  27703. source: "./media/characters/amera/dick.svg"
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(9.35, "feet"),
  27711. default: true
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27717. {
  27718. kneeling: {
  27719. height: math.unit(3 + 4 / 12, "feet"),
  27720. weight: math.unit(90, "lb"),
  27721. name: "Kneeling",
  27722. image: {
  27723. source: "./media/characters/rosewen/kneeling.svg",
  27724. extra: 1835 / 1571,
  27725. bottom: 27.7 / 1862
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(3 + 4 / 12, "feet"),
  27733. default: true
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(5 + 10 / 12, "feet"),
  27742. weight: math.unit(200, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/sabah/front.svg",
  27746. extra: 849 / 763,
  27747. bottom: 33.9 / 881
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Normal",
  27754. height: math.unit(5 + 10 / 12, "feet"),
  27755. default: true
  27756. },
  27757. ]
  27758. ))
  27759. characterMakers.push(() => makeCharacter(
  27760. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27761. {
  27762. front: {
  27763. height: math.unit(3 + 5 / 12, "feet"),
  27764. weight: math.unit(40, "kg"),
  27765. name: "Front",
  27766. image: {
  27767. source: "./media/characters/purple-flame/front.svg",
  27768. extra: 1577 / 1412,
  27769. bottom: 97 / 1694
  27770. }
  27771. },
  27772. frontDressed: {
  27773. height: math.unit(3 + 5 / 12, "feet"),
  27774. weight: math.unit(40, "kg"),
  27775. name: "Front (Dressed)",
  27776. image: {
  27777. source: "./media/characters/purple-flame/front-dressed.svg",
  27778. extra: 1577 / 1412,
  27779. bottom: 97 / 1694
  27780. }
  27781. },
  27782. headphones: {
  27783. height: math.unit(0.85, "feet"),
  27784. name: "Headphones",
  27785. image: {
  27786. source: "./media/characters/purple-flame/headphones.svg"
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Really Small",
  27793. height: math.unit(5, "cm")
  27794. },
  27795. {
  27796. name: "Micro",
  27797. height: math.unit(1 + 5 / 12, "feet")
  27798. },
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(3 + 5 / 12, "feet"),
  27802. default: true
  27803. },
  27804. {
  27805. name: "Minimacro",
  27806. height: math.unit(125, "feet")
  27807. },
  27808. {
  27809. name: "Macro",
  27810. height: math.unit(0.5, "miles")
  27811. },
  27812. {
  27813. name: "Megamacro",
  27814. height: math.unit(50, "miles")
  27815. },
  27816. {
  27817. name: "Gigantic",
  27818. height: math.unit(750, "miles")
  27819. },
  27820. {
  27821. name: "Planetary",
  27822. height: math.unit(15000, "miles")
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(14, "feet"),
  27831. weight: math.unit(959, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/arsenal/front.svg",
  27835. extra: 2357 / 2157,
  27836. bottom: 93 / 2458
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(14, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(6, "feet"),
  27853. weight: math.unit(150, "lb"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/adira/front.svg",
  27857. extra: 1078 / 1029,
  27858. bottom: 87 / 1166
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Micro",
  27865. height: math.unit(4, "inches"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(50, "feet")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(16, "feet"),
  27879. weight: math.unit(1000, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/grim/front.svg",
  27883. extra: 622 / 614,
  27884. bottom: 18.1 / 642
  27885. }
  27886. },
  27887. back: {
  27888. height: math.unit(16, "feet"),
  27889. weight: math.unit(1000, "lb"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/grim/back.svg",
  27893. extra: 610.6 / 602,
  27894. bottom: 40.8 / 652
  27895. }
  27896. },
  27897. hunched: {
  27898. height: math.unit(9.75, "feet"),
  27899. weight: math.unit(1000, "lb"),
  27900. name: "Hunched",
  27901. image: {
  27902. source: "./media/characters/grim/hunched.svg",
  27903. extra: 304 / 297,
  27904. bottom: 35.4 / 394
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(16, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(2.3, "meters"),
  27921. weight: math.unit(300, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/sinja/front-sfw.svg",
  27925. extra: 1393 / 1294,
  27926. bottom: 70 / 1463
  27927. }
  27928. },
  27929. frontNsfw: {
  27930. height: math.unit(2.3, "meters"),
  27931. weight: math.unit(300, "lb"),
  27932. name: "Front (NSFW)",
  27933. image: {
  27934. source: "./media/characters/sinja/front-nsfw.svg",
  27935. extra: 1393 / 1294,
  27936. bottom: 70 / 1463
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(2.3, "meters"),
  27941. weight: math.unit(300, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/sinja/back.svg",
  27945. extra: 1393 / 1294,
  27946. bottom: 70 / 1463
  27947. }
  27948. },
  27949. head: {
  27950. height: math.unit(1.771, "feet"),
  27951. name: "Head",
  27952. image: {
  27953. source: "./media/characters/sinja/head.svg"
  27954. }
  27955. },
  27956. slit: {
  27957. height: math.unit(0.8, "feet"),
  27958. name: "Slit",
  27959. image: {
  27960. source: "./media/characters/sinja/slit.svg"
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(2.3, "meters")
  27968. },
  27969. {
  27970. name: "Macro",
  27971. height: math.unit(91, "meters"),
  27972. default: true
  27973. },
  27974. {
  27975. name: "Megamacro",
  27976. height: math.unit(91440, "meters")
  27977. },
  27978. {
  27979. name: "Gigamacro",
  27980. height: math.unit(60960000, "meters")
  27981. },
  27982. {
  27983. name: "Teramacro",
  27984. height: math.unit(9144000000, "meters")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(1.7, "meters"),
  27993. weight: math.unit(130, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/kyu/front.svg",
  27997. extra: 415 / 395,
  27998. bottom: 5 / 420
  27999. }
  28000. },
  28001. head: {
  28002. height: math.unit(1.75, "feet"),
  28003. name: "Head",
  28004. image: {
  28005. source: "./media/characters/kyu/head.svg"
  28006. }
  28007. },
  28008. foot: {
  28009. height: math.unit(0.81, "feet"),
  28010. name: "Foot",
  28011. image: {
  28012. source: "./media/characters/kyu/foot.svg"
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(1.7, "meters")
  28020. },
  28021. {
  28022. name: "Macro",
  28023. height: math.unit(131, "feet"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Megamacro",
  28028. height: math.unit(91440, "meters")
  28029. },
  28030. {
  28031. name: "Gigamacro",
  28032. height: math.unit(60960000, "meters")
  28033. },
  28034. {
  28035. name: "Teramacro",
  28036. height: math.unit(9144000000, "meters")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(7 + 1 / 12, "feet"),
  28045. weight: math.unit(250, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/joey/front.svg",
  28049. extra: 1791 / 1537,
  28050. bottom: 28 / 1816
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Micro",
  28057. height: math.unit(3, "inches")
  28058. },
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(7 + 1 / 12, "feet"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(165, "cm"),
  28071. weight: math.unit(140, "lb"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/sam-evans/front.svg",
  28075. extra: 3417 / 3230,
  28076. bottom: 41.3 / 3417
  28077. }
  28078. },
  28079. frontSixTails: {
  28080. height: math.unit(165, "cm"),
  28081. weight: math.unit(140, "lb"),
  28082. name: "Front-six-tails",
  28083. image: {
  28084. source: "./media/characters/sam-evans/front-six-tails.svg",
  28085. extra: 3417 / 3230,
  28086. bottom: 41.3 / 3417
  28087. }
  28088. },
  28089. back: {
  28090. height: math.unit(165, "cm"),
  28091. weight: math.unit(140, "lb"),
  28092. name: "Back",
  28093. image: {
  28094. source: "./media/characters/sam-evans/back.svg",
  28095. extra: 3227 / 3032,
  28096. bottom: 6.8 / 3234
  28097. }
  28098. },
  28099. face: {
  28100. height: math.unit(0.68, "feet"),
  28101. name: "Face",
  28102. image: {
  28103. source: "./media/characters/sam-evans/face.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(165, "cm"),
  28111. default: true
  28112. },
  28113. {
  28114. name: "Macro",
  28115. height: math.unit(100, "meters")
  28116. },
  28117. {
  28118. name: "Macro+",
  28119. height: math.unit(800, "meters")
  28120. },
  28121. {
  28122. name: "Macro++",
  28123. height: math.unit(3, "km")
  28124. },
  28125. {
  28126. name: "Macro+++",
  28127. height: math.unit(30, "km")
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(10, "feet"),
  28136. weight: math.unit(750, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/juliet-a/front.svg",
  28140. extra: 1766 / 1720,
  28141. bottom: 43 / 1809
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(10, "feet"),
  28146. weight: math.unit(750, "lb"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/juliet-a/back.svg",
  28150. extra: 1781 / 1734,
  28151. bottom: 35 / 1810,
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(10, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Dragon Form",
  28163. height: math.unit(250, "feet")
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(1000, "feet")
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(10000, "feet")
  28172. }
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28177. {
  28178. regular: {
  28179. height: math.unit(7 + 3 / 12, "feet"),
  28180. weight: math.unit(260, "lb"),
  28181. name: "Regular",
  28182. image: {
  28183. source: "./media/characters/wild/regular.svg",
  28184. extra: 97.45 / 92,
  28185. bottom: 6.8 / 104.3
  28186. }
  28187. },
  28188. biggums: {
  28189. height: math.unit(8 + 6 / 12, "feet"),
  28190. weight: math.unit(425, "lb"),
  28191. name: "Biggums",
  28192. image: {
  28193. source: "./media/characters/wild/biggums.svg",
  28194. extra: 97.45 / 92,
  28195. bottom: 7.5 / 132.34
  28196. }
  28197. },
  28198. mawRegular: {
  28199. height: math.unit(1.24, "feet"),
  28200. name: "Maw (Regular)",
  28201. image: {
  28202. source: "./media/characters/wild/maw.svg"
  28203. }
  28204. },
  28205. mawBiggums: {
  28206. height: math.unit(1.47, "feet"),
  28207. name: "Maw (Biggums)",
  28208. image: {
  28209. source: "./media/characters/wild/maw.svg"
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(7 + 3 / 12, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28223. {
  28224. front: {
  28225. height: math.unit(2.5, "meters"),
  28226. weight: math.unit(200, "kg"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/vidar/front.svg",
  28230. extra: 2994 / 2795,
  28231. bottom: 56 / 3061
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(2.5, "meters"),
  28236. weight: math.unit(200, "kg"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/vidar/back.svg",
  28240. extra: 3131 / 2928,
  28241. bottom: 13.5 / 3141.5
  28242. }
  28243. },
  28244. feral: {
  28245. height: math.unit(2.5, "meters"),
  28246. weight: math.unit(2000, "kg"),
  28247. name: "Feral",
  28248. image: {
  28249. source: "./media/characters/vidar/feral.svg",
  28250. extra: 2790 / 1765,
  28251. bottom: 6 / 2796
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(2.5, "meters"),
  28259. default: true
  28260. },
  28261. {
  28262. name: "Macro",
  28263. height: math.unit(100, "meters")
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(5 + 9 / 12, "feet"),
  28272. weight: math.unit(120, "lb"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/ash/front.svg",
  28276. extra: 2189 / 1961,
  28277. bottom: 5.2 / 2194
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(5 + 9 / 12, "feet"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(9, "feet"),
  28294. weight: math.unit(10000, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/gygabite/front.svg",
  28298. bottom: 31.7 / 537.8,
  28299. extra: 505 / 370
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(9, "feet"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(12, "feet"),
  28316. weight: math.unit(35000, "lb"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/p0tat0/front.svg",
  28320. extra: 1065 / 921,
  28321. bottom: 55.7 / 1121.25
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28335. {
  28336. side: {
  28337. height: math.unit(6.5, "feet"),
  28338. weight: math.unit(800, "lb"),
  28339. name: "Side",
  28340. image: {
  28341. source: "./media/characters/dusk/side.svg",
  28342. extra: 615 / 373,
  28343. bottom: 53 / 664
  28344. }
  28345. },
  28346. sitting: {
  28347. height: math.unit(7, "feet"),
  28348. weight: math.unit(800, "lb"),
  28349. name: "Sitting",
  28350. image: {
  28351. source: "./media/characters/dusk/sitting.svg",
  28352. extra: 753 / 425,
  28353. bottom: 33 / 774
  28354. }
  28355. },
  28356. head: {
  28357. height: math.unit(6.1, "feet"),
  28358. name: "Head",
  28359. image: {
  28360. source: "./media/characters/dusk/head.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(7, "feet"),
  28368. default: true
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(15, "feet"),
  28377. weight: math.unit(7000, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/jay-direwolf/front.svg",
  28381. extra: 1810 / 1732,
  28382. bottom: 66 / 1892
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(15, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(4 + 9 / 12, "feet"),
  28399. weight: math.unit(130, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/anchovie/front.svg",
  28403. extra: 382 / 350,
  28404. bottom: 25 / 409
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(4 + 9 / 12, "feet"),
  28409. weight: math.unit(130, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/anchovie/back.svg",
  28413. extra: 385 / 352,
  28414. bottom: 16.6 / 402
  28415. }
  28416. },
  28417. frontDressed: {
  28418. height: math.unit(4 + 9 / 12, "feet"),
  28419. weight: math.unit(130, "lb"),
  28420. name: "Front (Dressed)",
  28421. image: {
  28422. source: "./media/characters/anchovie/front-dressed.svg",
  28423. extra: 382 / 350,
  28424. bottom: 25 / 409
  28425. }
  28426. },
  28427. backDressed: {
  28428. height: math.unit(4 + 9 / 12, "feet"),
  28429. weight: math.unit(130, "lb"),
  28430. name: "Back (Dressed)",
  28431. image: {
  28432. source: "./media/characters/anchovie/back-dressed.svg",
  28433. extra: 385 / 352,
  28434. bottom: 16.6 / 402
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Micro",
  28441. height: math.unit(6.4, "inches")
  28442. },
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(4 + 9 / 12, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(2, "meters"),
  28455. weight: math.unit(180, "lb"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/acidrenamon/front.svg",
  28459. extra: 987 / 890,
  28460. bottom: 22.8 / 1009
  28461. }
  28462. },
  28463. back: {
  28464. height: math.unit(2, "meters"),
  28465. weight: math.unit(180, "lb"),
  28466. name: "Back",
  28467. image: {
  28468. source: "./media/characters/acidrenamon/back.svg",
  28469. extra: 983 / 891,
  28470. bottom: 8.4 / 992
  28471. }
  28472. },
  28473. head: {
  28474. height: math.unit(1.92, "feet"),
  28475. name: "Head",
  28476. image: {
  28477. source: "./media/characters/acidrenamon/head.svg"
  28478. }
  28479. },
  28480. rump: {
  28481. height: math.unit(1.72, "feet"),
  28482. name: "Rump",
  28483. image: {
  28484. source: "./media/characters/acidrenamon/rump.svg"
  28485. }
  28486. },
  28487. tail: {
  28488. height: math.unit(4.2, "feet"),
  28489. name: "Tail",
  28490. image: {
  28491. source: "./media/characters/acidrenamon/tail.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(2, "meters"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Minimacro",
  28503. height: math.unit(7, "meters")
  28504. },
  28505. {
  28506. name: "Macro",
  28507. height: math.unit(200, "meters")
  28508. },
  28509. {
  28510. name: "Gigamacro",
  28511. height: math.unit(0.2, "earths")
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(152, "feet"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/kenzie-lee/front.svg",
  28523. extra: 1869/1774,
  28524. bottom: 128/1997
  28525. }
  28526. },
  28527. side: {
  28528. height: math.unit(86, "feet"),
  28529. name: "Side",
  28530. image: {
  28531. source: "./media/characters/kenzie-lee/side.svg",
  28532. extra: 930/815,
  28533. bottom: 177/1107
  28534. }
  28535. },
  28536. paw: {
  28537. height: math.unit(15, "feet"),
  28538. name: "Paw",
  28539. image: {
  28540. source: "./media/characters/kenzie-lee/paw.svg"
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Kenzie Flea",
  28547. height: math.unit(2, "mm"),
  28548. default: true
  28549. },
  28550. {
  28551. name: "Micro",
  28552. height: math.unit(2, "inches")
  28553. },
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(152, "feet")
  28557. },
  28558. {
  28559. name: "Megamacro",
  28560. height: math.unit(7, "miles")
  28561. },
  28562. {
  28563. name: "Gigamacro",
  28564. height: math.unit(8000, "miles")
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(6, "feet"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/withers/front.svg",
  28576. extra: 1935/1760,
  28577. bottom: 72/2007
  28578. }
  28579. },
  28580. back: {
  28581. height: math.unit(6, "feet"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/withers/back.svg",
  28585. extra: 1944/1792,
  28586. bottom: 12/1956
  28587. }
  28588. },
  28589. dressed: {
  28590. height: math.unit(6, "feet"),
  28591. name: "Dressed",
  28592. image: {
  28593. source: "./media/characters/withers/dressed.svg",
  28594. extra: 1937/1765,
  28595. bottom: 73/2010
  28596. }
  28597. },
  28598. phase1: {
  28599. height: math.unit(1.1, "feet"),
  28600. name: "Phase 1",
  28601. image: {
  28602. source: "./media/characters/withers/phase-1.svg",
  28603. extra: 1885/1232,
  28604. bottom: 0/1885
  28605. }
  28606. },
  28607. phase2: {
  28608. height: math.unit(1.05, "feet"),
  28609. name: "Phase 2",
  28610. image: {
  28611. source: "./media/characters/withers/phase-2.svg",
  28612. extra: 1792/1090,
  28613. bottom: 0/1792
  28614. }
  28615. },
  28616. partyWipe: {
  28617. height: math.unit(1.1, "feet"),
  28618. name: "Party Wipe",
  28619. image: {
  28620. source: "./media/characters/withers/party-wipe.svg",
  28621. extra: 1864/1207,
  28622. bottom: 0/1864
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(167, "feet"),
  28630. default: true
  28631. },
  28632. {
  28633. name: "Megamacro",
  28634. height: math.unit(15, "miles")
  28635. }
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(6 + 7 / 12, "feet"),
  28643. weight: math.unit(250, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/nemoskii/front.svg",
  28647. extra: 2270 / 1734,
  28648. bottom: 86 / 2354
  28649. }
  28650. },
  28651. back: {
  28652. height: math.unit(6 + 7 / 12, "feet"),
  28653. weight: math.unit(250, "lb"),
  28654. name: "Back",
  28655. image: {
  28656. source: "./media/characters/nemoskii/back.svg",
  28657. extra: 1845 / 1788,
  28658. bottom: 10.5 / 1852
  28659. }
  28660. },
  28661. head: {
  28662. height: math.unit(1.31, "feet"),
  28663. name: "Head",
  28664. image: {
  28665. source: "./media/characters/nemoskii/head.svg"
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Micro",
  28672. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28673. },
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(6 + 7 / 12, "feet"),
  28677. default: true
  28678. },
  28679. {
  28680. name: "Macro",
  28681. height: math.unit((6 + 7 / 12) * 150, "feet")
  28682. },
  28683. {
  28684. name: "Macro+",
  28685. height: math.unit((6 + 7 / 12) * 500, "feet")
  28686. },
  28687. {
  28688. name: "Megamacro",
  28689. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(1, "mile"),
  28698. weight: math.unit(265261.9, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/shui/front.svg",
  28702. extra: 1633 / 1564,
  28703. bottom: 91.5 / 1726
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(1, "mile"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(12 + 6 / 12, "feet"),
  28720. weight: math.unit(1342, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/arokh-takakura/front.svg",
  28724. extra: 1089 / 1043,
  28725. bottom: 77.4 / 1176.7
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(12 + 6 / 12, "feet"),
  28730. weight: math.unit(1342, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/arokh-takakura/back.svg",
  28734. extra: 1046 / 1019,
  28735. bottom: 102 / 1150
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Big",
  28742. height: math.unit(12 + 6 / 12, "feet"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(5 + 6 / 12, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Front",
  28754. image: {
  28755. source: "./media/characters/theo/front.svg",
  28756. extra: 1184 / 1131,
  28757. bottom: 7.4 / 1191
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(5, "inches")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(5 + 6 / 12, "feet"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(5 + 9 / 12, "feet"),
  28778. weight: math.unit(130, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/cecelia-swift/front.svg",
  28782. extra: 502 / 484,
  28783. bottom: 23 / 523
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(5 + 9 / 12, "feet"),
  28788. weight: math.unit(130, "lb"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/cecelia-swift/back.svg",
  28792. extra: 499 / 485,
  28793. bottom: 12 / 511
  28794. }
  28795. },
  28796. head: {
  28797. height: math.unit(0.90, "feet"),
  28798. name: "Head",
  28799. image: {
  28800. source: "./media/characters/cecelia-swift/head.svg"
  28801. }
  28802. },
  28803. rump: {
  28804. height: math.unit(1.75, "feet"),
  28805. name: "Rump",
  28806. image: {
  28807. source: "./media/characters/cecelia-swift/rump.svg"
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(5 + 9 / 12, "feet"),
  28815. default: true
  28816. },
  28817. {
  28818. name: "Big",
  28819. height: math.unit(50, "feet")
  28820. },
  28821. {
  28822. name: "Macro",
  28823. height: math.unit(100, "feet")
  28824. },
  28825. {
  28826. name: "Macro+",
  28827. height: math.unit(500, "feet")
  28828. },
  28829. {
  28830. name: "Macro++",
  28831. height: math.unit(1000, "feet")
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(6, "feet"),
  28840. weight: math.unit(150, "lb"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/kaunan/front.svg",
  28844. extra: 2890 / 2523,
  28845. bottom: 49 / 2939
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Macro",
  28852. height: math.unit(150, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(175, "cm"),
  28862. weight: math.unit(60, "kg"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/fei/front.svg",
  28866. extra: 1873/1723,
  28867. bottom: 53/1926
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Mortal",
  28874. height: math.unit(175, "cm")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(3500, "m"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Stroll",
  28883. height: math.unit(17.5, "km")
  28884. },
  28885. {
  28886. name: "Showoff",
  28887. height: math.unit(175, "km")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(7, "feet"),
  28896. weight: math.unit(1000, "kg"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/edrax/front.svg",
  28900. extra: 2838 / 2550,
  28901. bottom: 130 / 2968
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Small",
  28908. height: math.unit(7, "feet")
  28909. },
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(1500, "meters")
  28913. },
  28914. {
  28915. name: "Mega",
  28916. height: math.unit(12000000, "km"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Megamacro",
  28921. height: math.unit(10600000, "lightyears")
  28922. },
  28923. {
  28924. name: "Hypermacro",
  28925. height: math.unit(256, "yottameters")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(10, "feet"),
  28934. weight: math.unit(750, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/clove/front.svg",
  28938. extra: 1918/1751,
  28939. bottom: 52/1970
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(10, "feet"),
  28944. weight: math.unit(750, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/clove/back.svg",
  28948. extra: 1912/1747,
  28949. bottom: 50/1962
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(10, "feet"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(4, "feet"),
  28966. weight: math.unit(50, "lb"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/alex-rabbit/front.svg",
  28970. extra: 507 / 458,
  28971. bottom: 18.5 / 527
  28972. }
  28973. },
  28974. back: {
  28975. height: math.unit(4, "feet"),
  28976. weight: math.unit(50, "lb"),
  28977. name: "Back",
  28978. image: {
  28979. source: "./media/characters/alex-rabbit/back.svg",
  28980. extra: 502 / 460,
  28981. bottom: 18.9 / 521
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(4, "feet"),
  28989. default: true
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(1 + 3 / 12, "feet"),
  28998. weight: math.unit(80, "lb"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/zander-rose/front.svg",
  29002. extra: 916 / 797,
  29003. bottom: 17 / 933
  29004. }
  29005. },
  29006. back: {
  29007. height: math.unit(1 + 3 / 12, "feet"),
  29008. weight: math.unit(80, "lb"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/zander-rose/back.svg",
  29012. extra: 903 / 779,
  29013. bottom: 31 / 934
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(1 + 3 / 12, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29027. {
  29028. anthro: {
  29029. height: math.unit(6, "feet"),
  29030. weight: math.unit(150, "lb"),
  29031. name: "Anthro",
  29032. image: {
  29033. source: "./media/characters/razz/anthro.svg",
  29034. extra: 1437 / 1343,
  29035. bottom: 48 / 1485
  29036. }
  29037. },
  29038. feral: {
  29039. height: math.unit(6, "feet"),
  29040. weight: math.unit(150, "lb"),
  29041. name: "Feral",
  29042. image: {
  29043. source: "./media/characters/razz/feral.svg",
  29044. extra: 2569 / 1385,
  29045. bottom: 95 / 2664
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(6, "feet"),
  29053. default: true
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(9 + 4 / 12, "feet"),
  29062. weight: math.unit(500, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/morrigan/front.svg",
  29066. extra: 2707 / 2579,
  29067. bottom: 156 / 2863
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(9 + 4 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(5, "stories"),
  29084. weight: math.unit(4000, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/jenene/front.svg",
  29088. extra: 1780 / 1710,
  29089. bottom: 57 / 1837
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(5, "stories"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29103. {
  29104. taurSfw: {
  29105. height: math.unit(10, "meters"),
  29106. weight: math.unit(17500, "kg"),
  29107. name: "Taur",
  29108. image: {
  29109. source: "./media/characters/faey/taur-sfw.svg",
  29110. extra: 1200 / 968,
  29111. bottom: 41 / 1241
  29112. }
  29113. },
  29114. chestmaw: {
  29115. height: math.unit(2.01, "meters"),
  29116. name: "Chestmaw",
  29117. image: {
  29118. source: "./media/characters/faey/chestmaw.svg"
  29119. }
  29120. },
  29121. foot: {
  29122. height: math.unit(2.43, "meters"),
  29123. name: "Foot",
  29124. image: {
  29125. source: "./media/characters/faey/foot.svg"
  29126. }
  29127. },
  29128. jaws: {
  29129. height: math.unit(1.66, "meters"),
  29130. name: "Jaws",
  29131. image: {
  29132. source: "./media/characters/faey/jaws.svg"
  29133. }
  29134. },
  29135. tongues: {
  29136. height: math.unit(2.01, "meters"),
  29137. name: "Tongues",
  29138. image: {
  29139. source: "./media/characters/faey/tongues.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Small",
  29146. height: math.unit(10, "meters"),
  29147. default: true
  29148. },
  29149. {
  29150. name: "Big",
  29151. height: math.unit(500000, "km")
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(7, "feet"),
  29160. weight: math.unit(275, "lb"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/roku/front.svg",
  29164. extra: 903 / 878,
  29165. bottom: 37 / 940
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(7, "feet"),
  29173. default: true
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(500, "feet")
  29178. },
  29179. {
  29180. name: "Megamacro",
  29181. height: math.unit(200, "miles")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6 + 2 / 12, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/lira/front.svg",
  29194. extra: 1727 / 1605,
  29195. bottom: 26 / 1753
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(6 + 2 / 12, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/lira/back.svg",
  29204. extra: 1713/1621,
  29205. bottom: 20/1733
  29206. }
  29207. },
  29208. hand: {
  29209. height: math.unit(0.75, "feet"),
  29210. name: "Hand",
  29211. image: {
  29212. source: "./media/characters/lira/hand.svg"
  29213. }
  29214. },
  29215. maw: {
  29216. height: math.unit(0.65, "feet"),
  29217. name: "Maw",
  29218. image: {
  29219. source: "./media/characters/lira/maw.svg"
  29220. }
  29221. },
  29222. pawDigi: {
  29223. height: math.unit(1.6, "feet"),
  29224. name: "Paw Digi",
  29225. image: {
  29226. source: "./media/characters/lira/paw-digi.svg"
  29227. }
  29228. },
  29229. pawPlanti: {
  29230. height: math.unit(1.4, "feet"),
  29231. name: "Paw Planti",
  29232. image: {
  29233. source: "./media/characters/lira/paw-planti.svg"
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(6 + 2 / 12, "feet"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(100, "feet")
  29246. },
  29247. {
  29248. name: "Macro²",
  29249. height: math.unit(1600, "feet")
  29250. },
  29251. {
  29252. name: "Planetary",
  29253. height: math.unit(20, "earths")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(150, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/hadjet/front.svg",
  29266. extra: 1480 / 1346,
  29267. bottom: 26 / 1506
  29268. }
  29269. },
  29270. frontNsfw: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(150, "lb"),
  29273. name: "Front (NSFW)",
  29274. image: {
  29275. source: "./media/characters/hadjet/front-nsfw.svg",
  29276. extra: 1440 / 1358,
  29277. bottom: 52 / 1492
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Macro",
  29284. height: math.unit(10, "stories"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Megamacro",
  29289. height: math.unit(1.5, "miles")
  29290. },
  29291. {
  29292. name: "Megamacro+",
  29293. height: math.unit(5, "miles")
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29299. {
  29300. side: {
  29301. height: math.unit(106, "feet"),
  29302. weight: math.unit(500, "tonnes"),
  29303. name: "Side",
  29304. image: {
  29305. source: "./media/characters/kodran/side.svg",
  29306. extra: 553 / 480,
  29307. bottom: 33 / 586
  29308. }
  29309. },
  29310. front: {
  29311. height: math.unit(132, "feet"),
  29312. weight: math.unit(500, "tonnes"),
  29313. name: "Front",
  29314. image: {
  29315. source: "./media/characters/kodran/front.svg",
  29316. extra: 667 / 643,
  29317. bottom: 42 / 709
  29318. }
  29319. },
  29320. flying: {
  29321. height: math.unit(350, "feet"),
  29322. weight: math.unit(500, "tonnes"),
  29323. name: "Flying",
  29324. image: {
  29325. source: "./media/characters/kodran/flying.svg"
  29326. }
  29327. },
  29328. foot: {
  29329. height: math.unit(33, "feet"),
  29330. name: "Foot",
  29331. image: {
  29332. source: "./media/characters/kodran/foot.svg"
  29333. }
  29334. },
  29335. footFront: {
  29336. height: math.unit(19, "feet"),
  29337. name: "Foot (Front)",
  29338. image: {
  29339. source: "./media/characters/kodran/foot-front.svg",
  29340. extra: 261 / 261,
  29341. bottom: 91 / 352
  29342. }
  29343. },
  29344. headFront: {
  29345. height: math.unit(53, "feet"),
  29346. name: "Head (Front)",
  29347. image: {
  29348. source: "./media/characters/kodran/head-front.svg"
  29349. }
  29350. },
  29351. headSide: {
  29352. height: math.unit(65, "feet"),
  29353. name: "Head (Side)",
  29354. image: {
  29355. source: "./media/characters/kodran/head-side.svg"
  29356. }
  29357. },
  29358. throat: {
  29359. height: math.unit(79, "feet"),
  29360. name: "Throat",
  29361. image: {
  29362. source: "./media/characters/kodran/throat.svg"
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Large",
  29369. height: math.unit(106, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29376. {
  29377. side: {
  29378. height: math.unit(11, "feet"),
  29379. weight: math.unit(150, "lb"),
  29380. name: "Side",
  29381. image: {
  29382. source: "./media/characters/pyxaron/side.svg",
  29383. extra: 305 / 195,
  29384. bottom: 17 / 322
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(11, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(6, "feet"),
  29401. weight: math.unit(150, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/meep/front.svg",
  29405. extra: 88 / 80,
  29406. bottom: 6 / 94
  29407. }
  29408. },
  29409. },
  29410. [
  29411. {
  29412. name: "Fun Sized",
  29413. height: math.unit(2, "inches"),
  29414. default: true
  29415. },
  29416. {
  29417. name: "Friend Sized",
  29418. height: math.unit(8, "inches")
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(15, "feet"),
  29427. weight: math.unit(2500, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/holly-rabbit/front.svg",
  29431. extra: 1433 / 1233,
  29432. bottom: 125 / 1558
  29433. }
  29434. },
  29435. dick: {
  29436. height: math.unit(4.6, "feet"),
  29437. name: "Dick",
  29438. image: {
  29439. source: "./media/characters/holly-rabbit/dick.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(15, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Macro",
  29451. height: math.unit(250, "feet")
  29452. },
  29453. {
  29454. name: "Macro+",
  29455. height: math.unit(2500, "feet")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(3.02, "meters"),
  29464. weight: math.unit(500, "kg"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/drena/front.svg",
  29468. extra: 282 / 243,
  29469. bottom: 8 / 290
  29470. }
  29471. },
  29472. side: {
  29473. height: math.unit(3.02, "meters"),
  29474. weight: math.unit(500, "kg"),
  29475. name: "Side",
  29476. image: {
  29477. source: "./media/characters/drena/side.svg",
  29478. extra: 280 / 245,
  29479. bottom: 10 / 290
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(3.02, "meters"),
  29484. weight: math.unit(500, "kg"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/drena/back.svg",
  29488. extra: 278 / 243,
  29489. bottom: 2 / 280
  29490. }
  29491. },
  29492. foot: {
  29493. height: math.unit(0.75, "meters"),
  29494. name: "Foot",
  29495. image: {
  29496. source: "./media/characters/drena/foot.svg"
  29497. }
  29498. },
  29499. maw: {
  29500. height: math.unit(0.82, "meters"),
  29501. name: "Maw",
  29502. image: {
  29503. source: "./media/characters/drena/maw.svg"
  29504. }
  29505. },
  29506. eating: {
  29507. height: math.unit(0.75, "meters"),
  29508. name: "Eating",
  29509. image: {
  29510. source: "./media/characters/drena/eating.svg"
  29511. }
  29512. },
  29513. rump: {
  29514. height: math.unit(0.93, "meters"),
  29515. name: "Rump",
  29516. image: {
  29517. source: "./media/characters/drena/rump.svg"
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(3.02, "meters"),
  29525. default: true
  29526. },
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29531. {
  29532. front: {
  29533. height: math.unit(6 + 4 / 12, "feet"),
  29534. weight: math.unit(250, "lb"),
  29535. name: "Front",
  29536. image: {
  29537. source: "./media/characters/remmyzilla/front.svg",
  29538. extra: 4033 / 3588,
  29539. bottom: 123 / 4156
  29540. }
  29541. },
  29542. back: {
  29543. height: math.unit(6 + 4 / 12, "feet"),
  29544. weight: math.unit(250, "lb"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/remmyzilla/back.svg",
  29548. extra: 2687 / 2555,
  29549. bottom: 48 / 2735
  29550. }
  29551. },
  29552. paw: {
  29553. height: math.unit(1.73, "feet"),
  29554. name: "Paw",
  29555. image: {
  29556. source: "./media/characters/remmyzilla/paw.svg"
  29557. }
  29558. },
  29559. maw: {
  29560. height: math.unit(1.73, "feet"),
  29561. name: "Maw",
  29562. image: {
  29563. source: "./media/characters/remmyzilla/maw.svg"
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(6 + 4 / 12, "feet")
  29571. },
  29572. {
  29573. name: "Minimacro",
  29574. height: math.unit(12 + 8 / 12, "feet")
  29575. },
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(640, "feet"),
  29579. default: true
  29580. },
  29581. {
  29582. name: "Megamacro",
  29583. height: math.unit(6400, "feet")
  29584. },
  29585. {
  29586. name: "Gigamacro",
  29587. height: math.unit(64000, "miles")
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(2.5, "meters"),
  29596. weight: math.unit(300, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/lawrence/front.svg",
  29600. extra: 357 / 335,
  29601. bottom: 30 / 387
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(2.5, "meters"),
  29606. weight: math.unit(300, "lb"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/lawrence/back.svg",
  29610. extra: 357 / 338,
  29611. bottom: 16 / 373
  29612. }
  29613. },
  29614. head: {
  29615. height: math.unit(0.9, "meter"),
  29616. name: "Head",
  29617. image: {
  29618. source: "./media/characters/lawrence/head.svg"
  29619. }
  29620. },
  29621. maw: {
  29622. height: math.unit(0.7, "meter"),
  29623. name: "Maw",
  29624. image: {
  29625. source: "./media/characters/lawrence/maw.svg"
  29626. }
  29627. },
  29628. footBottom: {
  29629. height: math.unit(0.5, "meter"),
  29630. name: "Foot (Bottom)",
  29631. image: {
  29632. source: "./media/characters/lawrence/foot-bottom.svg"
  29633. }
  29634. },
  29635. footTop: {
  29636. height: math.unit(0.5, "meter"),
  29637. name: "Foot (Top)",
  29638. image: {
  29639. source: "./media/characters/lawrence/foot-top.svg"
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(2.5, "meters"),
  29647. default: true
  29648. },
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(95, "meters")
  29652. },
  29653. {
  29654. name: "Megamacro",
  29655. height: math.unit(150, "km")
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29661. {
  29662. front: {
  29663. height: math.unit(4.2, "meters"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/sydney/front.svg",
  29667. extra: 1323 / 1277,
  29668. bottom: 111 / 1434
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(4.2, "meters"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29682. {
  29683. back: {
  29684. height: math.unit(201, "feet"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/jessica/back.svg",
  29688. extra: 273 / 259,
  29689. bottom: 7 / 280
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(201, "feet"),
  29697. default: true
  29698. },
  29699. {
  29700. name: "Megamacro",
  29701. height: math.unit(8, "miles")
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29707. {
  29708. side: {
  29709. height: math.unit(5.6, "m"),
  29710. weight: math.unit(8000, "kg"),
  29711. name: "Side",
  29712. image: {
  29713. source: "./media/characters/victoria/side.svg",
  29714. extra: 1542/1229,
  29715. bottom: 124/1666
  29716. }
  29717. },
  29718. maw: {
  29719. height: math.unit(7.14, "feet"),
  29720. name: "Maw",
  29721. image: {
  29722. source: "./media/characters/victoria/maw.svg"
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Normal",
  29729. height: math.unit(5.6, "m"),
  29730. default: true
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29736. {
  29737. front: {
  29738. height: math.unit(5 + 6 / 12, "feet"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/cat/front.svg",
  29742. extra: 1449/1295,
  29743. bottom: 34/1483
  29744. },
  29745. form: "cat",
  29746. default: true
  29747. },
  29748. back: {
  29749. height: math.unit(5 + 6 / 12, "feet"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/cat/back.svg",
  29753. extra: 1466/1301,
  29754. bottom: 19/1485
  29755. },
  29756. form: "cat"
  29757. },
  29758. taur: {
  29759. height: math.unit(7, "feet"),
  29760. name: "Taur",
  29761. image: {
  29762. source: "./media/characters/cat/taur.svg",
  29763. extra: 1389/1233,
  29764. bottom: 83/1472
  29765. },
  29766. form: "taur",
  29767. default: true
  29768. },
  29769. lucarioFront: {
  29770. height: math.unit(4, "feet"),
  29771. name: "Lucario (Front)",
  29772. image: {
  29773. source: "./media/characters/cat/lucario-front.svg",
  29774. extra: 1149/1019,
  29775. bottom: 84/1233
  29776. },
  29777. form: "lucario",
  29778. default: true
  29779. },
  29780. lucarioBack: {
  29781. height: math.unit(4, "feet"),
  29782. name: "Lucario (Back)",
  29783. image: {
  29784. source: "./media/characters/cat/lucario-back.svg",
  29785. extra: 1190/1059,
  29786. bottom: 33/1223
  29787. },
  29788. form: "lucario"
  29789. },
  29790. megaLucario: {
  29791. height: math.unit(4, "feet"),
  29792. name: "Mega Lucario",
  29793. image: {
  29794. source: "./media/characters/cat/mega-lucario.svg",
  29795. extra: 1515 / 1319,
  29796. bottom: 63 / 1578
  29797. },
  29798. form: "lucario"
  29799. },
  29800. nickit: {
  29801. height: math.unit(2, "feet"),
  29802. name: "Nickit",
  29803. image: {
  29804. source: "./media/characters/cat/nickit.svg",
  29805. extra: 1980 / 1585,
  29806. bottom: 102 / 2082
  29807. },
  29808. form: "nickit",
  29809. default: true
  29810. },
  29811. lopunnyFront: {
  29812. height: math.unit(5, "feet"),
  29813. name: "Lopunny (Front)",
  29814. image: {
  29815. source: "./media/characters/cat/lopunny-front.svg",
  29816. extra: 1782 / 1469,
  29817. bottom: 38 / 1820
  29818. },
  29819. form: "lopunny",
  29820. default: true
  29821. },
  29822. lopunnyBack: {
  29823. height: math.unit(5, "feet"),
  29824. name: "Lopunny (Back)",
  29825. image: {
  29826. source: "./media/characters/cat/lopunny-back.svg",
  29827. extra: 1660 / 1490,
  29828. bottom: 25 / 1685
  29829. },
  29830. form: "lopunny"
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Really small",
  29836. height: math.unit(1, "nm")
  29837. },
  29838. {
  29839. name: "Micro",
  29840. height: math.unit(5, "inches")
  29841. },
  29842. {
  29843. name: "Normal",
  29844. height: math.unit(5 + 6 / 12, "feet"),
  29845. default: true
  29846. },
  29847. {
  29848. name: "Macro",
  29849. height: math.unit(50, "feet")
  29850. },
  29851. {
  29852. name: "Macro+",
  29853. height: math.unit(150, "feet")
  29854. },
  29855. {
  29856. name: "Megamacro",
  29857. height: math.unit(100, "miles")
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(63.4, "meters"),
  29866. weight: math.unit(3.28349e+6, "kilograms"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/kirina-violet/front.svg",
  29870. extra: 2812 / 2725,
  29871. bottom: 0 / 2812
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(63.4, "meters"),
  29876. weight: math.unit(3.28349e+6, "kilograms"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/kirina-violet/back.svg",
  29880. extra: 2812 / 2725,
  29881. bottom: 0 / 2812
  29882. }
  29883. },
  29884. mouth: {
  29885. height: math.unit(4.35, "meters"),
  29886. name: "Mouth",
  29887. image: {
  29888. source: "./media/characters/kirina-violet/mouth.svg"
  29889. }
  29890. },
  29891. paw: {
  29892. height: math.unit(5.6, "meters"),
  29893. name: "Paw",
  29894. image: {
  29895. source: "./media/characters/kirina-violet/paw.svg"
  29896. }
  29897. },
  29898. tail: {
  29899. height: math.unit(18, "meters"),
  29900. name: "Tail",
  29901. image: {
  29902. source: "./media/characters/kirina-violet/tail.svg"
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Macro",
  29909. height: math.unit(63.4, "meters"),
  29910. default: true
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(75, "feet"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/cat-gigachu/front.svg",
  29922. extra: 1239/1027,
  29923. bottom: 32/1271
  29924. }
  29925. },
  29926. back: {
  29927. height: math.unit(75, "feet"),
  29928. name: "Back",
  29929. image: {
  29930. source: "./media/characters/cat-gigachu/back.svg",
  29931. extra: 1229/1030,
  29932. bottom: 9/1238
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Dynamax",
  29939. height: math.unit(75, "feet"),
  29940. default: true
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(150, "lb"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/sfaiyan/front.svg",
  29953. extra: 999 / 978,
  29954. bottom: 5 / 1004
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(1.82, "meters")
  29962. },
  29963. {
  29964. name: "Giant",
  29965. height: math.unit(2.27, "km"),
  29966. default: true
  29967. },
  29968. ]
  29969. ))
  29970. characterMakers.push(() => makeCharacter(
  29971. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29972. {
  29973. front: {
  29974. height: math.unit(179, "cm"),
  29975. weight: math.unit(100, "kg"),
  29976. name: "Front",
  29977. image: {
  29978. source: "./media/characters/raunehkeli/front.svg",
  29979. extra: 1934 / 1926,
  29980. bottom: 0 / 1934
  29981. }
  29982. },
  29983. },
  29984. [
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(179, "cm")
  29988. },
  29989. {
  29990. name: "Maximum",
  29991. height: math.unit(575, "meters"),
  29992. default: true
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30005. extra: 2625 / 2518,
  30006. bottom: 60 / 2685
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6 + 2 / 12, "feet")
  30014. },
  30015. {
  30016. name: "Macro",
  30017. height: math.unit(1180, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(5 + 6 / 12, "feet"),
  30027. weight: math.unit(108, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/lilith-zott/front.svg",
  30031. extra: 2510 / 2238,
  30032. bottom: 100 / 2610
  30033. }
  30034. },
  30035. frontDressed: {
  30036. height: math.unit(5 + 6 / 12, "feet"),
  30037. weight: math.unit(108, "lb"),
  30038. name: "Front (Dressed)",
  30039. image: {
  30040. source: "./media/characters/lilith-zott/front-dressed.svg",
  30041. extra: 2510 / 2238,
  30042. bottom: 100 / 2610
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Normal",
  30049. height: math.unit(5 + 6 / 12, "feet")
  30050. },
  30051. {
  30052. name: "Macro",
  30053. height: math.unit(1030, "feet"),
  30054. default: true
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(6, "feet"),
  30063. weight: math.unit(150, "lb"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30067. extra: 2567 / 2435,
  30068. bottom: 39 / 2606
  30069. }
  30070. },
  30071. frontSuper: {
  30072. height: math.unit(6, "feet"),
  30073. name: "Front (Super)",
  30074. image: {
  30075. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30076. extra: 2567 / 2435,
  30077. bottom: 39 / 2606
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(5 + 10 / 12, "feet")
  30085. },
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(1100, "feet"),
  30089. default: true
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(100, "miles"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/sona/front.svg",
  30101. extra: 2433 / 2201,
  30102. bottom: 53 / 2486
  30103. }
  30104. },
  30105. foot: {
  30106. height: math.unit(16.1, "miles"),
  30107. name: "Foot",
  30108. image: {
  30109. source: "./media/characters/sona/foot.svg"
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(100, "miles"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/bailey/front.svg",
  30130. extra: 1778 / 1724,
  30131. bottom: 30 / 1808
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Micro",
  30138. height: math.unit(4, "inches")
  30139. },
  30140. {
  30141. name: "Normal",
  30142. height: math.unit(5 + 5 / 12, "feet"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(250, "feet")
  30148. },
  30149. {
  30150. name: "Megamacro",
  30151. height: math.unit(100, "miles")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(5 + 2 / 12, "feet"),
  30160. weight: math.unit(120, "lb"),
  30161. name: "Front",
  30162. image: {
  30163. source: "./media/characters/snaps/front.svg",
  30164. extra: 2370 / 2177,
  30165. bottom: 48 / 2418
  30166. }
  30167. },
  30168. back: {
  30169. height: math.unit(5 + 2 / 12, "feet"),
  30170. weight: math.unit(120, "lb"),
  30171. name: "Back",
  30172. image: {
  30173. source: "./media/characters/snaps/back.svg",
  30174. extra: 2408 / 2258,
  30175. bottom: 15 / 2423
  30176. }
  30177. },
  30178. },
  30179. [
  30180. {
  30181. name: "Micro",
  30182. height: math.unit(9, "inches")
  30183. },
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(5 + 2 / 12, "feet"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Mini Macro",
  30191. height: math.unit(10, "feet")
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(1.8, "meters"),
  30200. weight: math.unit(85, "kg"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/azteck/front.svg",
  30204. extra: 2815 / 2625,
  30205. bottom: 89 / 2904
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(1.8, "meters"),
  30210. weight: math.unit(85, "kg"),
  30211. name: "Back",
  30212. image: {
  30213. source: "./media/characters/azteck/back.svg",
  30214. extra: 2856 / 2648,
  30215. bottom: 85 / 2941
  30216. }
  30217. },
  30218. frontDressed: {
  30219. height: math.unit(1.8, "meters"),
  30220. weight: math.unit(85, "kg"),
  30221. name: "Front (Dressed)",
  30222. image: {
  30223. source: "./media/characters/azteck/front-dressed.svg",
  30224. extra: 2147 / 2003,
  30225. bottom: 68 / 2215
  30226. }
  30227. },
  30228. head: {
  30229. height: math.unit(0.47, "meters"),
  30230. weight: math.unit(85, "kg"),
  30231. name: "Head",
  30232. image: {
  30233. source: "./media/characters/azteck/head.svg"
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Bite sized",
  30240. height: math.unit(16, "cm")
  30241. },
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(1.8, "meters"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/pidge/front.svg",
  30258. extra: 1936/1820,
  30259. bottom: 0/1936
  30260. }
  30261. },
  30262. back: {
  30263. height: math.unit(6, "feet"),
  30264. weight: math.unit(150, "lb"),
  30265. name: "Back",
  30266. image: {
  30267. source: "./media/characters/pidge/back.svg",
  30268. extra: 1938/1843,
  30269. bottom: 0/1938
  30270. }
  30271. },
  30272. casual: {
  30273. height: math.unit(6, "feet"),
  30274. weight: math.unit(150, "lb"),
  30275. name: "Casual",
  30276. image: {
  30277. source: "./media/characters/pidge/casual.svg",
  30278. extra: 1936/1820,
  30279. bottom: 0/1936
  30280. }
  30281. },
  30282. tech: {
  30283. height: math.unit(6, "feet"),
  30284. weight: math.unit(150, "lb"),
  30285. name: "Tech",
  30286. image: {
  30287. source: "./media/characters/pidge/tech.svg",
  30288. extra: 1802/1682,
  30289. bottom: 0/1802
  30290. }
  30291. },
  30292. head: {
  30293. height: math.unit(1.61, "feet"),
  30294. name: "Head",
  30295. image: {
  30296. source: "./media/characters/pidge/head.svg"
  30297. }
  30298. },
  30299. collar: {
  30300. height: math.unit(0.82, "feet"),
  30301. name: "Collar",
  30302. image: {
  30303. source: "./media/characters/pidge/collar.svg"
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Macro",
  30310. height: math.unit(2, "mile"),
  30311. default: true
  30312. },
  30313. {
  30314. name: "PUPPY",
  30315. height: math.unit(20, "miles")
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(6, "feet"),
  30324. weight: math.unit(150, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/en/front.svg",
  30328. extra: 1697 / 1563,
  30329. bottom: 103 / 1800
  30330. }
  30331. },
  30332. back: {
  30333. height: math.unit(6, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Back",
  30336. image: {
  30337. source: "./media/characters/en/back.svg",
  30338. extra: 1700 / 1570,
  30339. bottom: 51 / 1751
  30340. }
  30341. },
  30342. frontDressed: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Front (Dressed)",
  30346. image: {
  30347. source: "./media/characters/en/front-dressed.svg",
  30348. extra: 1697 / 1563,
  30349. bottom: 103 / 1800
  30350. }
  30351. },
  30352. backDressed: {
  30353. height: math.unit(6, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Back (Dressed)",
  30356. image: {
  30357. source: "./media/characters/en/back-dressed.svg",
  30358. extra: 1700 / 1570,
  30359. bottom: 51 / 1751
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(210, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(6, "feet"),
  30376. weight: math.unit(150, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/haze-orris/front.svg",
  30380. extra: 3975 / 3525,
  30381. bottom: 137 / 4112
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Micro",
  30388. height: math.unit(150, "mm"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/casselene-yaro/front.svg",
  30402. extra: 4721 / 4541,
  30403. bottom: 82 / 4803
  30404. }
  30405. },
  30406. back: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(150, "lb"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/casselene-yaro/back.svg",
  30412. extra: 4569 / 4377,
  30413. bottom: 69 / 4638
  30414. }
  30415. },
  30416. dressed: {
  30417. height: math.unit(6, "feet"),
  30418. weight: math.unit(150, "lb"),
  30419. name: "Dressed",
  30420. image: {
  30421. source: "./media/characters/casselene-yaro/dressed.svg",
  30422. extra: 4721 / 4541,
  30423. bottom: 82 / 4803
  30424. }
  30425. },
  30426. maw: {
  30427. height: math.unit(1, "feet"),
  30428. name: "Maw",
  30429. image: {
  30430. source: "./media/characters/casselene-yaro/maw.svg"
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(190, "feet"),
  30438. default: true
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30444. {
  30445. front: {
  30446. height: math.unit(10, "feet"),
  30447. weight: math.unit(15015, "lb"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/platine/front.svg",
  30451. extra: 1428/1353,
  30452. bottom: 31/1459
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(10, "feet"),
  30460. default: true
  30461. },
  30462. {
  30463. name: "Macro",
  30464. height: math.unit(100, "feet")
  30465. },
  30466. {
  30467. name: "Megamacro",
  30468. height: math.unit(1000, "feet")
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(15 + 5 / 12, "feet"),
  30477. weight: math.unit(4600, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/neapolitan-ananassa/front.svg",
  30481. extra: 2903 / 2736,
  30482. bottom: 0 / 2903
  30483. }
  30484. },
  30485. side: {
  30486. height: math.unit(15 + 5 / 12, "feet"),
  30487. weight: math.unit(4600, "lb"),
  30488. name: "Side",
  30489. image: {
  30490. source: "./media/characters/neapolitan-ananassa/side.svg",
  30491. extra: 2925 / 2719,
  30492. bottom: 0 / 2925
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(15 + 5 / 12, "feet"),
  30497. weight: math.unit(4600, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/neapolitan-ananassa/back.svg",
  30501. extra: 2903 / 2736,
  30502. bottom: 0 / 2903
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(15 + 5 / 12, "feet"),
  30510. default: true
  30511. },
  30512. {
  30513. name: "Post-Millenium",
  30514. height: math.unit(35 + 5 / 12, "feet")
  30515. },
  30516. {
  30517. name: "Post-Era",
  30518. height: math.unit(450 + 5 / 12, "feet")
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30524. {
  30525. front: {
  30526. height: math.unit(300, "meters"),
  30527. weight: math.unit(125000, "tonnes"),
  30528. name: "Front",
  30529. image: {
  30530. source: "./media/characters/pazuzu/front.svg",
  30531. extra: 877 / 794,
  30532. bottom: 47 / 924
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Macro",
  30539. height: math.unit(300, "meters"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30546. {
  30547. side: {
  30548. height: math.unit(10 + 7 / 12, "feet"),
  30549. weight: math.unit(2.5, "tons"),
  30550. name: "Side",
  30551. image: {
  30552. source: "./media/characters/aasha/side.svg",
  30553. extra: 1345 / 1245,
  30554. bottom: 111 / 1456
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(10 + 7 / 12, "feet"),
  30559. weight: math.unit(2.5, "tons"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/aasha/back.svg",
  30563. extra: 1133 / 1057,
  30564. bottom: 257 / 1390
  30565. }
  30566. },
  30567. },
  30568. [
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(10 + 7 / 12, "feet"),
  30572. default: true
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(6 + 3 / 12, "feet"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/nevan/front.svg",
  30584. extra: 704 / 704,
  30585. bottom: 28 / 732
  30586. }
  30587. },
  30588. back: {
  30589. height: math.unit(6 + 3 / 12, "feet"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/nevan/back.svg",
  30593. extra: 714 / 714,
  30594. bottom: 21 / 735
  30595. }
  30596. },
  30597. frontFlaccid: {
  30598. height: math.unit(6 + 3 / 12, "feet"),
  30599. name: "Front (Flaccid)",
  30600. image: {
  30601. source: "./media/characters/nevan/front-flaccid.svg",
  30602. extra: 704 / 704,
  30603. bottom: 28 / 732
  30604. }
  30605. },
  30606. frontErect: {
  30607. height: math.unit(6 + 3 / 12, "feet"),
  30608. name: "Front (Erect)",
  30609. image: {
  30610. source: "./media/characters/nevan/front-erect.svg",
  30611. extra: 704 / 704,
  30612. bottom: 28 / 732
  30613. }
  30614. },
  30615. backFlaccid: {
  30616. height: math.unit(6 + 3 / 12, "feet"),
  30617. name: "Back (Flaccid)",
  30618. image: {
  30619. source: "./media/characters/nevan/back-flaccid.svg",
  30620. extra: 714 / 714,
  30621. bottom: 21 / 735
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(6 + 3 / 12, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(4, "feet"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/arhan/front.svg",
  30641. extra: 3368 / 3133,
  30642. bottom: 0 / 3368
  30643. }
  30644. },
  30645. side: {
  30646. height: math.unit(4, "feet"),
  30647. name: "Side",
  30648. image: {
  30649. source: "./media/characters/arhan/side.svg",
  30650. extra: 3347 / 3105,
  30651. bottom: 0 / 3347
  30652. }
  30653. },
  30654. tongue: {
  30655. height: math.unit(1.42, "feet"),
  30656. name: "Tongue",
  30657. image: {
  30658. source: "./media/characters/arhan/tongue.svg"
  30659. }
  30660. },
  30661. head: {
  30662. height: math.unit(0.85, "feet"),
  30663. name: "Head",
  30664. image: {
  30665. source: "./media/characters/arhan/head.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(4, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30679. {
  30680. front: {
  30681. height: math.unit(5 + 7.5 / 12, "feet"),
  30682. weight: math.unit(120, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/digi-duncan/front.svg",
  30686. extra: 330 / 326,
  30687. bottom: 16 / 346
  30688. }
  30689. },
  30690. side: {
  30691. height: math.unit(5 + 7.5 / 12, "feet"),
  30692. weight: math.unit(120, "lb"),
  30693. name: "Side",
  30694. image: {
  30695. source: "./media/characters/digi-duncan/side.svg",
  30696. extra: 341 / 337,
  30697. bottom: 1 / 342
  30698. }
  30699. },
  30700. back: {
  30701. height: math.unit(5 + 7.5 / 12, "feet"),
  30702. weight: math.unit(120, "lb"),
  30703. name: "Back",
  30704. image: {
  30705. source: "./media/characters/digi-duncan/back.svg",
  30706. extra: 330 / 326,
  30707. bottom: 12 / 342
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Speck",
  30714. height: math.unit(0.25, "mm")
  30715. },
  30716. {
  30717. name: "Micro",
  30718. height: math.unit(5, "mm")
  30719. },
  30720. {
  30721. name: "Tiny",
  30722. height: math.unit(0.5, "inches"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Human",
  30727. height: math.unit(5 + 7.5 / 12, "feet")
  30728. },
  30729. {
  30730. name: "Minigiant",
  30731. height: math.unit(8 + 5.25, "feet")
  30732. },
  30733. {
  30734. name: "Giant",
  30735. height: math.unit(2000, "feet")
  30736. },
  30737. {
  30738. name: "Mega",
  30739. height: math.unit(371.1, "miles")
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30745. {
  30746. front: {
  30747. height: math.unit(2, "meters"),
  30748. weight: math.unit(350, "kg"),
  30749. name: "Front",
  30750. image: {
  30751. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30752. extra: 898 / 838,
  30753. bottom: 9 / 907
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Micro",
  30760. height: math.unit(8, "meters")
  30761. },
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(50, "meters"),
  30765. default: true
  30766. },
  30767. {
  30768. name: "Macro",
  30769. height: math.unit(500, "meters")
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(6 + 6 / 12, "feet"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/khardesh/front.svg",
  30781. extra: 1788/1596,
  30782. bottom: 66/1854
  30783. }
  30784. },
  30785. back: {
  30786. height: math.unit(6 + 6 / 12, "feet"),
  30787. name: "Back",
  30788. image: {
  30789. source: "./media/characters/khardesh/back.svg",
  30790. extra: 1781/1584,
  30791. bottom: 68/1849
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Normal",
  30798. height: math.unit(6 + 6 / 12, "feet"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Normal+",
  30803. height: math.unit(4, "meters")
  30804. },
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(50, "meters")
  30808. },
  30809. {
  30810. name: "Macro+",
  30811. height: math.unit(100, "meters")
  30812. },
  30813. {
  30814. name: "Megamacro",
  30815. height: math.unit(20, "km")
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(6, "feet"),
  30824. weight: math.unit(150, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/kosho/front.svg",
  30828. extra: 1847 / 1847,
  30829. bottom: 86 / 1933
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Second-stage micro",
  30836. height: math.unit(0.5, "inches")
  30837. },
  30838. {
  30839. name: "First-stage micro",
  30840. height: math.unit(6, "inches")
  30841. },
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(6, "feet"),
  30845. default: true
  30846. },
  30847. {
  30848. name: "First-stage macro",
  30849. height: math.unit(72, "feet")
  30850. },
  30851. {
  30852. name: "Second-stage macro",
  30853. height: math.unit(864, "feet")
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30859. {
  30860. normal: {
  30861. height: math.unit(4 + 6 / 12, "feet"),
  30862. name: "Normal",
  30863. image: {
  30864. source: "./media/characters/hydra/normal.svg",
  30865. extra: 2833 / 2634,
  30866. bottom: 68 / 2901
  30867. }
  30868. },
  30869. smol: {
  30870. height: math.unit(0.705, "inches"),
  30871. name: "Smol",
  30872. image: {
  30873. source: "./media/characters/hydra/smol.svg",
  30874. extra: 2715 / 2540,
  30875. bottom: 0 / 2715
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(4 + 6 / 12, "feet"),
  30883. default: true
  30884. }
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(0.6, "cm"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/daz/front.svg",
  30895. extra: 1682 / 1164,
  30896. bottom: 42 / 1724
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Normal",
  30903. height: math.unit(0.6, "cm"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(235, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/theo-pangolin/front.svg",
  30917. extra: 1996 / 1969,
  30918. bottom: 115 / 2111
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(235, "lb"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/theo-pangolin/back.svg",
  30927. extra: 1979 / 1979,
  30928. bottom: 40 / 2019
  30929. }
  30930. },
  30931. feral: {
  30932. height: math.unit(2, "feet"),
  30933. weight: math.unit(30, "lb"),
  30934. name: "Feral",
  30935. image: {
  30936. source: "./media/characters/theo-pangolin/feral.svg",
  30937. extra: 803 / 791,
  30938. bottom: 181 / 984
  30939. }
  30940. },
  30941. footFive: {
  30942. height: math.unit(1.43, "feet"),
  30943. name: "Foot (Five Toes)",
  30944. image: {
  30945. source: "./media/characters/theo-pangolin/foot-five.svg"
  30946. }
  30947. },
  30948. footFour: {
  30949. height: math.unit(1.43, "feet"),
  30950. name: "Foot (Four Toes)",
  30951. image: {
  30952. source: "./media/characters/theo-pangolin/foot-four.svg"
  30953. }
  30954. },
  30955. handFour: {
  30956. height: math.unit(0.81, "feet"),
  30957. name: "Hand (Four Fingers)",
  30958. image: {
  30959. source: "./media/characters/theo-pangolin/hand-four.svg"
  30960. }
  30961. },
  30962. handThree: {
  30963. height: math.unit(0.81, "feet"),
  30964. name: "Hand (Three Fingers)",
  30965. image: {
  30966. source: "./media/characters/theo-pangolin/hand-three.svg"
  30967. }
  30968. },
  30969. headFront: {
  30970. height: math.unit(1.37, "feet"),
  30971. name: "Head (Front)",
  30972. image: {
  30973. source: "./media/characters/theo-pangolin/head-front.svg"
  30974. }
  30975. },
  30976. headSide: {
  30977. height: math.unit(1.43, "feet"),
  30978. name: "Head (Side)",
  30979. image: {
  30980. source: "./media/characters/theo-pangolin/head-side.svg"
  30981. }
  30982. },
  30983. tongue: {
  30984. height: math.unit(2.29, "feet"),
  30985. name: "Tongue",
  30986. image: {
  30987. source: "./media/characters/theo-pangolin/tongue.svg"
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(6, "feet")
  30995. },
  30996. {
  30997. name: "Macro",
  30998. height: math.unit(400, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(6, "inches"),
  31008. weight: math.unit(0.036, "kg"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/renée/front.svg",
  31012. extra: 900 / 886,
  31013. bottom: 8 / 908
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Nano",
  31020. height: math.unit(1, "nm")
  31021. },
  31022. {
  31023. name: "Micro",
  31024. height: math.unit(1, "mm")
  31025. },
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(6, "inches")
  31029. },
  31030. {
  31031. name: "Macro",
  31032. height: math.unit(2000, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Megamacro",
  31037. height: math.unit(2, "km")
  31038. },
  31039. {
  31040. name: "Gigamacro",
  31041. height: math.unit(2000, "km")
  31042. },
  31043. {
  31044. name: "Teramacro",
  31045. height: math.unit(250000, "km")
  31046. },
  31047. ]
  31048. ))
  31049. characterMakers.push(() => makeCharacter(
  31050. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31051. {
  31052. front: {
  31053. height: math.unit(4, "meters"),
  31054. weight: math.unit(150, "kg"),
  31055. name: "Front",
  31056. image: {
  31057. source: "./media/characters/caledvwlch/front.svg",
  31058. extra: 1760 / 1551,
  31059. bottom: 28 / 1788
  31060. }
  31061. },
  31062. side: {
  31063. height: math.unit(4, "meters"),
  31064. weight: math.unit(150, "kg"),
  31065. name: "Side",
  31066. image: {
  31067. source: "./media/characters/caledvwlch/side.svg",
  31068. extra: 1605 / 1536,
  31069. bottom: 31 / 1636
  31070. }
  31071. },
  31072. back: {
  31073. height: math.unit(4, "meters"),
  31074. weight: math.unit(150, "kg"),
  31075. name: "Back",
  31076. image: {
  31077. source: "./media/characters/caledvwlch/back.svg",
  31078. extra: 1635 / 1565,
  31079. bottom: 27 / 1662
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "\"Incognito\"",
  31086. height: math.unit(4, "meters")
  31087. },
  31088. {
  31089. name: "Small rampage",
  31090. height: math.unit(600, "meters")
  31091. },
  31092. {
  31093. name: "Mega",
  31094. height: math.unit(30, "km")
  31095. },
  31096. {
  31097. name: "Home-size",
  31098. height: math.unit(50, "km"),
  31099. default: true
  31100. },
  31101. {
  31102. name: "Giga",
  31103. height: math.unit(300, "km")
  31104. },
  31105. {
  31106. name: "Lounging",
  31107. height: math.unit(11000, "km")
  31108. },
  31109. {
  31110. name: "Planet snacking",
  31111. height: math.unit(2000000, "km")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(6, "feet"),
  31120. weight: math.unit(215, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/sapphire-svell/front.svg",
  31124. extra: 495 / 455,
  31125. bottom: 20 / 515
  31126. }
  31127. },
  31128. back: {
  31129. height: math.unit(6, "feet"),
  31130. weight: math.unit(216, "lb"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/sapphire-svell/back.svg",
  31134. extra: 497 / 477,
  31135. bottom: 7 / 504
  31136. }
  31137. },
  31138. maw: {
  31139. height: math.unit(1.57, "feet"),
  31140. name: "Maw",
  31141. image: {
  31142. source: "./media/characters/sapphire-svell/maw.svg"
  31143. }
  31144. },
  31145. foot: {
  31146. height: math.unit(1.07, "feet"),
  31147. name: "Foot",
  31148. image: {
  31149. source: "./media/characters/sapphire-svell/foot.svg"
  31150. }
  31151. },
  31152. toering: {
  31153. height: math.unit(1.7, "inch"),
  31154. name: "Toering",
  31155. image: {
  31156. source: "./media/characters/sapphire-svell/toering.svg"
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(300, "feet"),
  31164. default: true
  31165. },
  31166. {
  31167. name: "Augmented",
  31168. height: math.unit(1250, "feet")
  31169. },
  31170. {
  31171. name: "Unleashed",
  31172. height: math.unit(3000, "feet")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31178. {
  31179. side: {
  31180. height: math.unit(2 + 3 / 12, "feet"),
  31181. weight: math.unit(110, "lb"),
  31182. name: "Side",
  31183. image: {
  31184. source: "./media/characters/glitch-flux/side.svg",
  31185. extra: 997 / 805,
  31186. bottom: 20 / 1017
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(2 + 3 / 12, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(4, "meters"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/mid/front.svg",
  31206. extra: 507 / 476,
  31207. bottom: 17 / 524
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(4, "meters"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/mid/back.svg",
  31215. extra: 519 / 487,
  31216. bottom: 7 / 526
  31217. }
  31218. },
  31219. stuck: {
  31220. height: math.unit(2.2, "meters"),
  31221. name: "Stuck",
  31222. image: {
  31223. source: "./media/characters/mid/stuck.svg",
  31224. extra: 1951 / 1869,
  31225. bottom: 88 / 2039
  31226. }
  31227. }
  31228. },
  31229. [
  31230. {
  31231. name: "Normal",
  31232. height: math.unit(4, "meters"),
  31233. default: true
  31234. },
  31235. {
  31236. name: "Big",
  31237. height: math.unit(10, "meters")
  31238. },
  31239. {
  31240. name: "Macro",
  31241. height: math.unit(800, "meters")
  31242. },
  31243. {
  31244. name: "Megamacro",
  31245. height: math.unit(100, "km")
  31246. },
  31247. {
  31248. name: "Overgrown",
  31249. height: math.unit(1, "parsec")
  31250. },
  31251. ]
  31252. ))
  31253. characterMakers.push(() => makeCharacter(
  31254. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31255. {
  31256. front: {
  31257. height: math.unit(2.5, "meters"),
  31258. weight: math.unit(225, "kg"),
  31259. name: "Front",
  31260. image: {
  31261. source: "./media/characters/iris/front.svg",
  31262. extra: 3348 / 3251,
  31263. bottom: 205 / 3553
  31264. }
  31265. },
  31266. maw: {
  31267. height: math.unit(0.56, "meter"),
  31268. name: "Maw",
  31269. image: {
  31270. source: "./media/characters/iris/maw.svg"
  31271. }
  31272. },
  31273. },
  31274. [
  31275. {
  31276. name: "Mewter cat",
  31277. height: math.unit(1.2, "meters")
  31278. },
  31279. {
  31280. name: "Minimacro",
  31281. height: math.unit(2.5, "meters"),
  31282. default: true
  31283. },
  31284. {
  31285. name: "Macro",
  31286. height: math.unit(180, "meters")
  31287. },
  31288. {
  31289. name: "Megamacro",
  31290. height: math.unit(2746, "meters")
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31296. {
  31297. front: {
  31298. height: math.unit(6, "feet"),
  31299. weight: math.unit(135, "lb"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/axel/front.svg",
  31303. extra: 908 / 908,
  31304. bottom: 58 / 966
  31305. }
  31306. },
  31307. side: {
  31308. height: math.unit(6, "feet"),
  31309. weight: math.unit(135, "lb"),
  31310. name: "Side",
  31311. image: {
  31312. source: "./media/characters/axel/side.svg",
  31313. extra: 958 / 958,
  31314. bottom: 11 / 969
  31315. }
  31316. },
  31317. back: {
  31318. height: math.unit(6, "feet"),
  31319. weight: math.unit(135, "lb"),
  31320. name: "Back",
  31321. image: {
  31322. source: "./media/characters/axel/back.svg",
  31323. extra: 887 / 887,
  31324. bottom: 34 / 921
  31325. }
  31326. },
  31327. head: {
  31328. height: math.unit(1.07, "feet"),
  31329. name: "Head",
  31330. image: {
  31331. source: "./media/characters/axel/head.svg"
  31332. }
  31333. },
  31334. beak: {
  31335. height: math.unit(1.4, "feet"),
  31336. name: "Beak",
  31337. image: {
  31338. source: "./media/characters/axel/beak.svg"
  31339. }
  31340. },
  31341. beakSide: {
  31342. height: math.unit(1.4, "feet"),
  31343. name: "Beak Side",
  31344. image: {
  31345. source: "./media/characters/axel/beak-side.svg"
  31346. }
  31347. },
  31348. sheath: {
  31349. height: math.unit(0.5, "feet"),
  31350. name: "Sheath",
  31351. image: {
  31352. source: "./media/characters/axel/sheath.svg"
  31353. }
  31354. },
  31355. dick: {
  31356. height: math.unit(0.98, "feet"),
  31357. name: "Dick",
  31358. image: {
  31359. source: "./media/characters/axel/dick.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Macro",
  31366. height: math.unit(68, "meters"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(3.5, "meters"),
  31376. weight: math.unit(1200, "kg"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/joanna/front.svg",
  31380. extra: 1596 / 1488,
  31381. bottom: 29 / 1625
  31382. }
  31383. },
  31384. back: {
  31385. height: math.unit(3.5, "meters"),
  31386. weight: math.unit(1200, "kg"),
  31387. name: "Back",
  31388. image: {
  31389. source: "./media/characters/joanna/back.svg",
  31390. extra: 1594 / 1495,
  31391. bottom: 26 / 1620
  31392. }
  31393. },
  31394. frontShorts: {
  31395. height: math.unit(3.5, "meters"),
  31396. weight: math.unit(1200, "kg"),
  31397. name: "Front (Shorts)",
  31398. image: {
  31399. source: "./media/characters/joanna/front-shorts.svg",
  31400. extra: 1596 / 1488,
  31401. bottom: 29 / 1625
  31402. }
  31403. },
  31404. frontBiker: {
  31405. height: math.unit(3.5, "meters"),
  31406. weight: math.unit(1200, "kg"),
  31407. name: "Front (Biker)",
  31408. image: {
  31409. source: "./media/characters/joanna/front-biker.svg",
  31410. extra: 1596 / 1488,
  31411. bottom: 29 / 1625
  31412. }
  31413. },
  31414. backBiker: {
  31415. height: math.unit(3.5, "meters"),
  31416. weight: math.unit(1200, "kg"),
  31417. name: "Back (Biker)",
  31418. image: {
  31419. source: "./media/characters/joanna/back-biker.svg",
  31420. extra: 1594 / 1495,
  31421. bottom: 88 / 1682
  31422. }
  31423. },
  31424. bikeLeft: {
  31425. height: math.unit(2.4, "meters"),
  31426. weight: math.unit(1600, "kg"),
  31427. name: "Bike (Left)",
  31428. image: {
  31429. source: "./media/characters/joanna/bike-left.svg",
  31430. extra: 720 / 720,
  31431. bottom: 8 / 728
  31432. }
  31433. },
  31434. bikeRight: {
  31435. height: math.unit(2.4, "meters"),
  31436. weight: math.unit(1600, "kg"),
  31437. name: "Bike (Right)",
  31438. image: {
  31439. source: "./media/characters/joanna/bike-right.svg",
  31440. extra: 720 / 720,
  31441. bottom: 8 / 728
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Incognito",
  31448. height: math.unit(3.5, "meters")
  31449. },
  31450. {
  31451. name: "Casual Big",
  31452. height: math.unit(200, "meters")
  31453. },
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(600, "meters")
  31457. },
  31458. {
  31459. name: "Original",
  31460. height: math.unit(20, "km"),
  31461. default: true
  31462. },
  31463. {
  31464. name: "Giga",
  31465. height: math.unit(400, "km")
  31466. },
  31467. {
  31468. name: "Lounging",
  31469. height: math.unit(1500, "km")
  31470. },
  31471. {
  31472. name: "Planetary",
  31473. height: math.unit(200000, "km")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(6, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/hugo-sigil/front.svg",
  31486. extra: 522 / 500,
  31487. bottom: 2 / 524
  31488. }
  31489. },
  31490. back: {
  31491. height: math.unit(6, "feet"),
  31492. weight: math.unit(150, "lb"),
  31493. name: "Back",
  31494. image: {
  31495. source: "./media/characters/hugo-sigil/back.svg",
  31496. extra: 519 / 495,
  31497. bottom: 5 / 524
  31498. }
  31499. },
  31500. maw: {
  31501. height: math.unit(1.4, "feet"),
  31502. weight: math.unit(150, "lb"),
  31503. name: "Maw",
  31504. image: {
  31505. source: "./media/characters/hugo-sigil/maw.svg"
  31506. }
  31507. },
  31508. feet: {
  31509. height: math.unit(1.56, "feet"),
  31510. weight: math.unit(150, "lb"),
  31511. name: "Feet",
  31512. image: {
  31513. source: "./media/characters/hugo-sigil/feet.svg",
  31514. extra: 177 / 177,
  31515. bottom: 12 / 189
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Normal",
  31522. height: math.unit(6, "feet")
  31523. },
  31524. {
  31525. name: "Macro",
  31526. height: math.unit(200, "feet"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(6, "feet"),
  31536. weight: math.unit(150, "lb"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/peri/front.svg",
  31540. extra: 2354 / 2233,
  31541. bottom: 49 / 2403
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Really Small",
  31548. height: math.unit(1, "nm")
  31549. },
  31550. {
  31551. name: "Micro",
  31552. height: math.unit(4, "inches")
  31553. },
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(7, "inches"),
  31557. default: true
  31558. },
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(400, "feet")
  31562. },
  31563. {
  31564. name: "Megamacro",
  31565. height: math.unit(100, "miles")
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31571. {
  31572. frontSlim: {
  31573. height: math.unit(7, "feet"),
  31574. name: "Front (Slim)",
  31575. image: {
  31576. source: "./media/characters/issilora/front-slim.svg",
  31577. extra: 529 / 449,
  31578. bottom: 53 / 582
  31579. }
  31580. },
  31581. sideSlim: {
  31582. height: math.unit(7, "feet"),
  31583. name: "Side (Slim)",
  31584. image: {
  31585. source: "./media/characters/issilora/side-slim.svg",
  31586. extra: 570 / 480,
  31587. bottom: 30 / 600
  31588. }
  31589. },
  31590. backSlim: {
  31591. height: math.unit(7, "feet"),
  31592. name: "Back (Slim)",
  31593. image: {
  31594. source: "./media/characters/issilora/back-slim.svg",
  31595. extra: 537 / 455,
  31596. bottom: 46 / 583
  31597. }
  31598. },
  31599. frontBuff: {
  31600. height: math.unit(7, "feet"),
  31601. name: "Front (Buff)",
  31602. image: {
  31603. source: "./media/characters/issilora/front-buff.svg",
  31604. extra: 2310 / 2035,
  31605. bottom: 335 / 2645
  31606. }
  31607. },
  31608. head: {
  31609. height: math.unit(1.94, "feet"),
  31610. name: "Head",
  31611. image: {
  31612. source: "./media/characters/issilora/head.svg"
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Minimum",
  31619. height: math.unit(7, "feet")
  31620. },
  31621. {
  31622. name: "Comfortable",
  31623. height: math.unit(17, "feet")
  31624. },
  31625. {
  31626. name: "Fun Size",
  31627. height: math.unit(47, "feet")
  31628. },
  31629. {
  31630. name: "Natural Macro",
  31631. height: math.unit(137, "feet"),
  31632. default: true
  31633. },
  31634. {
  31635. name: "Maximum Kaiju",
  31636. height: math.unit(397, "feet")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31642. {
  31643. front: {
  31644. height: math.unit(50 + 9/12, "feet"),
  31645. weight: math.unit(32.8, "tons"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/irb'iiritaahn/front.svg",
  31649. extra: 1878/1826,
  31650. bottom: 326/2204
  31651. }
  31652. },
  31653. back: {
  31654. height: math.unit(50 + 9/12, "feet"),
  31655. weight: math.unit(32.8, "tons"),
  31656. name: "Back",
  31657. image: {
  31658. source: "./media/characters/irb'iiritaahn/back.svg",
  31659. extra: 2052/2018,
  31660. bottom: 152/2204
  31661. }
  31662. },
  31663. head: {
  31664. height: math.unit(12.86, "feet"),
  31665. name: "Head",
  31666. image: {
  31667. source: "./media/characters/irb'iiritaahn/head.svg"
  31668. }
  31669. },
  31670. maw: {
  31671. height: math.unit(9.66, "feet"),
  31672. name: "Maw",
  31673. image: {
  31674. source: "./media/characters/irb'iiritaahn/maw.svg"
  31675. }
  31676. },
  31677. frontDick: {
  31678. height: math.unit(8.78461, "feet"),
  31679. name: "Front Dick",
  31680. image: {
  31681. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31682. }
  31683. },
  31684. rearDick: {
  31685. height: math.unit(8.78461, "feet"),
  31686. name: "Rear Dick",
  31687. image: {
  31688. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31689. }
  31690. },
  31691. rearDickUnfolded: {
  31692. height: math.unit(8.78, "feet"),
  31693. name: "Rear Dick (Unfolded)",
  31694. image: {
  31695. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31696. }
  31697. },
  31698. wings: {
  31699. height: math.unit(43, "feet"),
  31700. name: "Wings",
  31701. image: {
  31702. source: "./media/characters/irb'iiritaahn/wings.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Macro",
  31709. height: math.unit(50 + 9/12, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(205, "cm"),
  31719. weight: math.unit(102, "kg"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/irbisgreif/front.svg",
  31723. extra: 785/706,
  31724. bottom: 13/798
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(205, "cm"),
  31729. weight: math.unit(102, "kg"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/irbisgreif/back.svg",
  31733. extra: 713/701,
  31734. bottom: 26/739
  31735. }
  31736. },
  31737. frontDressed: {
  31738. height: math.unit(216, "cm"),
  31739. weight: math.unit(102, "kg"),
  31740. name: "Front-dressed",
  31741. image: {
  31742. source: "./media/characters/irbisgreif/front-dressed.svg",
  31743. extra: 902/776,
  31744. bottom: 14/916
  31745. }
  31746. },
  31747. sideDressed: {
  31748. height: math.unit(195, "cm"),
  31749. weight: math.unit(102, "kg"),
  31750. name: "Side-dressed",
  31751. image: {
  31752. source: "./media/characters/irbisgreif/side-dressed.svg",
  31753. extra: 788/688,
  31754. bottom: 21/809
  31755. }
  31756. },
  31757. backDressed: {
  31758. height: math.unit(216, "cm"),
  31759. weight: math.unit(102, "kg"),
  31760. name: "Back-dressed",
  31761. image: {
  31762. source: "./media/characters/irbisgreif/back-dressed.svg",
  31763. extra: 901/783,
  31764. bottom: 10/911
  31765. }
  31766. },
  31767. dick: {
  31768. height: math.unit(0.49, "feet"),
  31769. name: "Dick",
  31770. image: {
  31771. source: "./media/characters/irbisgreif/dick.svg"
  31772. }
  31773. },
  31774. wingTop: {
  31775. height: math.unit(1.93 , "feet"),
  31776. name: "Wing-top",
  31777. image: {
  31778. source: "./media/characters/irbisgreif/wing-top.svg"
  31779. }
  31780. },
  31781. wingBottom: {
  31782. height: math.unit(1.93 , "feet"),
  31783. name: "Wing-bottom",
  31784. image: {
  31785. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(216, "cm"),
  31793. default: true
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31799. {
  31800. front: {
  31801. height: math.unit(6, "feet"),
  31802. weight: math.unit(150, "lb"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/pride/front.svg",
  31806. extra: 1299/1230,
  31807. bottom: 18/1317
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(7, "feet")
  31815. },
  31816. {
  31817. name: "Mini-macro",
  31818. height: math.unit(11, "feet")
  31819. },
  31820. {
  31821. name: "Macro",
  31822. height: math.unit(15, "meters"),
  31823. default: true
  31824. },
  31825. {
  31826. name: "Macro+",
  31827. height: math.unit(40, "meters")
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31833. {
  31834. front: {
  31835. height: math.unit(4 + 2 / 12, "feet"),
  31836. weight: math.unit(95, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/vaelophis-nyx/front.svg",
  31840. extra: 2532/2330,
  31841. bottom: 0/2532
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(4 + 2 / 12, "feet"),
  31846. weight: math.unit(95, "lb"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/vaelophis-nyx/back.svg",
  31850. extra: 2484/2361,
  31851. bottom: 0/2484
  31852. }
  31853. },
  31854. feralSide: {
  31855. height: math.unit(2 + 1/12, "feet"),
  31856. weight: math.unit(20, "lb"),
  31857. name: "Feral (Side)",
  31858. image: {
  31859. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31860. extra: 1721/1581,
  31861. bottom: 70/1791
  31862. }
  31863. },
  31864. feralLazing: {
  31865. height: math.unit(1.08, "feet"),
  31866. weight: math.unit(20, "lb"),
  31867. name: "Feral (Lazing)",
  31868. image: {
  31869. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31870. extra: 822/822,
  31871. bottom: 248/1070
  31872. }
  31873. },
  31874. ear: {
  31875. height: math.unit(0.416, "feet"),
  31876. name: "Ear",
  31877. image: {
  31878. source: "./media/characters/vaelophis-nyx/ear.svg"
  31879. }
  31880. },
  31881. eye: {
  31882. height: math.unit(0.0748, "feet"),
  31883. name: "Eye",
  31884. image: {
  31885. source: "./media/characters/vaelophis-nyx/eye.svg"
  31886. }
  31887. },
  31888. mouth: {
  31889. height: math.unit(0.378, "feet"),
  31890. name: "Mouth",
  31891. image: {
  31892. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31893. }
  31894. },
  31895. spade: {
  31896. height: math.unit(0.55, "feet"),
  31897. name: "Spade",
  31898. image: {
  31899. source: "./media/characters/vaelophis-nyx/spade.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(4 + 2/12, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31913. {
  31914. front: {
  31915. height: math.unit(7, "feet"),
  31916. weight: math.unit(231, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/flux/front.svg",
  31920. extra: 919/871,
  31921. bottom: 0/919
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(7, "feet"),
  31926. weight: math.unit(231, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/flux/back.svg",
  31930. extra: 1040/992,
  31931. bottom: 0/1040
  31932. }
  31933. },
  31934. frontDressed: {
  31935. height: math.unit(7, "feet"),
  31936. weight: math.unit(231, "lb"),
  31937. name: "Front (Dressed)",
  31938. image: {
  31939. source: "./media/characters/flux/front-dressed.svg",
  31940. extra: 919/871,
  31941. bottom: 0/919
  31942. }
  31943. },
  31944. feralSide: {
  31945. height: math.unit(5, "feet"),
  31946. weight: math.unit(150, "lb"),
  31947. name: "Feral (Side)",
  31948. image: {
  31949. source: "./media/characters/flux/feral-side.svg",
  31950. extra: 598/528,
  31951. bottom: 28/626
  31952. }
  31953. },
  31954. head: {
  31955. height: math.unit(1.585, "feet"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/flux/head.svg"
  31959. }
  31960. },
  31961. headSide: {
  31962. height: math.unit(1.74, "feet"),
  31963. name: "Head (Side)",
  31964. image: {
  31965. source: "./media/characters/flux/head-side.svg"
  31966. }
  31967. },
  31968. headSideFire: {
  31969. height: math.unit(1.76, "feet"),
  31970. name: "Head (Side, Fire)",
  31971. image: {
  31972. source: "./media/characters/flux/head-side-fire.svg"
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Normal",
  31979. height: math.unit(7, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(9, "feet"),
  31989. weight: math.unit(1012, "lb"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/ulfra-lupae/front.svg",
  31993. extra: 1083/1011,
  31994. bottom: 67/1150
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Micro",
  32001. height: math.unit(6, "inches")
  32002. },
  32003. {
  32004. name: "Socializing",
  32005. height: math.unit(6 + 5/12, "feet")
  32006. },
  32007. {
  32008. name: "Normal",
  32009. height: math.unit(9, "feet"),
  32010. default: true
  32011. },
  32012. {
  32013. name: "Macro",
  32014. height: math.unit(150, "feet")
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(5 + 2/12, "feet"),
  32023. weight: math.unit(120, "lb"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/timber/front.svg",
  32027. extra: 2814/2705,
  32028. bottom: 181/2995
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(5 + 2/12, "feet"),
  32036. default: true
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32042. {
  32043. front: {
  32044. height: math.unit(9, "feet"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/nicki/front.svg",
  32048. extra: 1240/990,
  32049. bottom: 45/1285
  32050. },
  32051. form: "anthro",
  32052. default: true
  32053. },
  32054. side: {
  32055. height: math.unit(9, "feet"),
  32056. name: "Side",
  32057. image: {
  32058. source: "./media/characters/nicki/side.svg",
  32059. extra: 1047/973,
  32060. bottom: 61/1108
  32061. },
  32062. form: "anthro"
  32063. },
  32064. back: {
  32065. height: math.unit(9, "feet"),
  32066. name: "Back",
  32067. image: {
  32068. source: "./media/characters/nicki/back.svg",
  32069. extra: 1006/965,
  32070. bottom: 39/1045
  32071. },
  32072. form: "anthro"
  32073. },
  32074. taur: {
  32075. height: math.unit(15, "feet"),
  32076. name: "Taur",
  32077. image: {
  32078. source: "./media/characters/nicki/taur.svg",
  32079. extra: 1592/1347,
  32080. bottom: 0/1592
  32081. },
  32082. form: "taur",
  32083. default: true
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Normal",
  32089. height: math.unit(9, "feet"),
  32090. form: "anthro",
  32091. default: true
  32092. },
  32093. {
  32094. name: "Normal",
  32095. height: math.unit(15, "feet"),
  32096. form: "taur",
  32097. default: true
  32098. }
  32099. ],
  32100. {
  32101. "anthro": {
  32102. name: "Anthro",
  32103. default: true
  32104. },
  32105. "taur": {
  32106. name: "Taur"
  32107. }
  32108. }
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(7 + 10/12, "feet"),
  32115. weight: math.unit(3.5, "tons"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/lee/front.svg",
  32119. extra: 1773/1615,
  32120. bottom: 86/1859
  32121. }
  32122. },
  32123. hand: {
  32124. height: math.unit(1.78, "feet"),
  32125. name: "Hand",
  32126. image: {
  32127. source: "./media/characters/lee/hand.svg"
  32128. }
  32129. },
  32130. maw: {
  32131. height: math.unit(1.18, "feet"),
  32132. name: "Maw",
  32133. image: {
  32134. source: "./media/characters/lee/maw.svg"
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Normal",
  32141. height: math.unit(7 + 10/12, "feet"),
  32142. default: true
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32148. {
  32149. front: {
  32150. height: math.unit(9, "feet"),
  32151. name: "Front",
  32152. image: {
  32153. source: "./media/characters/guti/front.svg",
  32154. extra: 4551/4355,
  32155. bottom: 123/4674
  32156. }
  32157. },
  32158. tongue: {
  32159. height: math.unit(1, "feet"),
  32160. name: "Tongue",
  32161. image: {
  32162. source: "./media/characters/guti/tongue.svg"
  32163. }
  32164. },
  32165. paw: {
  32166. height: math.unit(1.18, "feet"),
  32167. name: "Paw",
  32168. image: {
  32169. source: "./media/characters/guti/paw.svg"
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(9, "feet"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32183. {
  32184. side: {
  32185. height: math.unit(5, "meters"),
  32186. name: "Side",
  32187. image: {
  32188. source: "./media/characters/vesper/side.svg",
  32189. extra: 1605/1518,
  32190. bottom: 0/1605
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Small",
  32197. height: math.unit(5, "meters")
  32198. },
  32199. {
  32200. name: "Sage",
  32201. height: math.unit(100, "meters"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Fun Size",
  32206. height: math.unit(600, "meters")
  32207. },
  32208. {
  32209. name: "Goddess",
  32210. height: math.unit(20000, "km")
  32211. },
  32212. {
  32213. name: "Maximum",
  32214. height: math.unit(5, "galaxies")
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32220. {
  32221. front: {
  32222. height: math.unit(6 + 3/12, "feet"),
  32223. weight: math.unit(190, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/gawain/front.svg",
  32227. extra: 2222/2139,
  32228. bottom: 90/2312
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(6 + 3/12, "feet"),
  32233. weight: math.unit(190, "lb"),
  32234. name: "Back",
  32235. image: {
  32236. source: "./media/characters/gawain/back.svg",
  32237. extra: 2199/2111,
  32238. bottom: 73/2272
  32239. }
  32240. },
  32241. },
  32242. [
  32243. {
  32244. name: "Normal",
  32245. height: math.unit(6 + 3/12, "feet"),
  32246. default: true
  32247. },
  32248. ]
  32249. ))
  32250. characterMakers.push(() => makeCharacter(
  32251. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32252. {
  32253. side: {
  32254. height: math.unit(3.5, "meters"),
  32255. weight: math.unit(16000, "lb"),
  32256. name: "Side",
  32257. image: {
  32258. source: "./media/characters/dascalti/side.svg",
  32259. extra: 392/273,
  32260. bottom: 47/439
  32261. }
  32262. },
  32263. breath: {
  32264. height: math.unit(7.4, "feet"),
  32265. name: "Breath",
  32266. image: {
  32267. source: "./media/characters/dascalti/breath.svg"
  32268. }
  32269. },
  32270. fed: {
  32271. height: math.unit(3.6, "meters"),
  32272. weight: math.unit(16000, "lb"),
  32273. name: "Fed",
  32274. image: {
  32275. source: "./media/characters/dascalti/fed.svg",
  32276. extra: 1419/820,
  32277. bottom: 95/1514
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(3.5, "meters"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(3 + 5/12, "feet"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/mauve/front.svg",
  32297. extra: 1126/1033,
  32298. bottom: 65/1191
  32299. }
  32300. },
  32301. side: {
  32302. height: math.unit(3 + 5/12, "feet"),
  32303. name: "Side",
  32304. image: {
  32305. source: "./media/characters/mauve/side.svg",
  32306. extra: 1089/1001,
  32307. bottom: 29/1118
  32308. }
  32309. },
  32310. back: {
  32311. height: math.unit(3 + 5/12, "feet"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/mauve/back.svg",
  32315. extra: 1173/1053,
  32316. bottom: 109/1282
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(3 + 5/12, "feet"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6 + 3/12, "feet"),
  32333. weight: math.unit(430, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/carlos/front.svg",
  32337. extra: 1964/1913,
  32338. bottom: 70/2034
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(6 + 3/12, "feet"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32352. {
  32353. back: {
  32354. height: math.unit(5 + 10/12, "feet"),
  32355. weight: math.unit(200, "lb"),
  32356. name: "Back",
  32357. image: {
  32358. source: "./media/characters/jax/back.svg",
  32359. extra: 764/739,
  32360. bottom: 25/789
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(5 + 10/12, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(8, "feet"),
  32377. weight: math.unit(250, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/eikthynir/front.svg",
  32381. extra: 1332/1166,
  32382. bottom: 82/1414
  32383. }
  32384. },
  32385. back: {
  32386. height: math.unit(8, "feet"),
  32387. weight: math.unit(250, "lb"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/eikthynir/back.svg",
  32391. extra: 1342/1190,
  32392. bottom: 19/1361
  32393. }
  32394. },
  32395. dick: {
  32396. height: math.unit(2.35, "feet"),
  32397. name: "Dick",
  32398. image: {
  32399. source: "./media/characters/eikthynir/dick.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(8, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(99, "meters"),
  32416. weight: math.unit(13000, "tons"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/zlmos/front.svg",
  32420. extra: 2202/1992,
  32421. bottom: 315/2517
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Macro",
  32428. height: math.unit(99, "meters"),
  32429. default: true
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32435. {
  32436. front: {
  32437. height: math.unit(6 + 5/12, "feet"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/purri/front.svg",
  32441. extra: 1698/1610,
  32442. bottom: 32/1730
  32443. }
  32444. },
  32445. frontAlt: {
  32446. height: math.unit(6 + 5/12, "feet"),
  32447. name: "Front (Alt)",
  32448. image: {
  32449. source: "./media/characters/purri/front-alt.svg",
  32450. extra: 450/420,
  32451. bottom: 26/476
  32452. }
  32453. },
  32454. boots: {
  32455. height: math.unit(5.5, "feet"),
  32456. name: "Boots",
  32457. image: {
  32458. source: "./media/characters/purri/boots.svg",
  32459. extra: 905/853,
  32460. bottom: 18/923
  32461. }
  32462. },
  32463. lying: {
  32464. height: math.unit(2, "feet"),
  32465. name: "Lying",
  32466. image: {
  32467. source: "./media/characters/purri/lying.svg",
  32468. extra: 940/843,
  32469. bottom: 146/1086
  32470. }
  32471. },
  32472. devious: {
  32473. height: math.unit(1.77, "feet"),
  32474. name: "Devious",
  32475. image: {
  32476. source: "./media/characters/purri/devious.svg",
  32477. extra: 1440/1155,
  32478. bottom: 147/1587
  32479. }
  32480. },
  32481. bean: {
  32482. height: math.unit(1.94, "feet"),
  32483. name: "Bean",
  32484. image: {
  32485. source: "./media/characters/purri/bean.svg"
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Micro",
  32492. height: math.unit(1, "mm")
  32493. },
  32494. {
  32495. name: "Normal",
  32496. height: math.unit(6 + 5/12, "feet"),
  32497. default: true
  32498. },
  32499. {
  32500. name: "Macro :3c",
  32501. height: math.unit(2, "miles")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(6 + 2/12, "feet"),
  32510. weight: math.unit(250, "lb"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/moonlight/front.svg",
  32514. extra: 1044/908,
  32515. bottom: 56/1100
  32516. }
  32517. },
  32518. feral: {
  32519. height: math.unit(3 + 1/12, "feet"),
  32520. weight: math.unit(50, "kg"),
  32521. name: "Feral",
  32522. image: {
  32523. source: "./media/characters/moonlight/feral.svg",
  32524. extra: 3705/2791,
  32525. bottom: 145/3850
  32526. }
  32527. },
  32528. paw: {
  32529. height: math.unit(1, "feet"),
  32530. name: "Paw",
  32531. image: {
  32532. source: "./media/characters/moonlight/paw.svg"
  32533. }
  32534. },
  32535. paws: {
  32536. height: math.unit(0.98, "feet"),
  32537. name: "Paws",
  32538. image: {
  32539. source: "./media/characters/moonlight/paws.svg",
  32540. extra: 939/939,
  32541. bottom: 50/989
  32542. }
  32543. },
  32544. mouth: {
  32545. height: math.unit(0.48, "feet"),
  32546. name: "Mouth",
  32547. image: {
  32548. source: "./media/characters/moonlight/mouth.svg"
  32549. }
  32550. },
  32551. dick: {
  32552. height: math.unit(1.46, "feet"),
  32553. name: "Dick",
  32554. image: {
  32555. source: "./media/characters/moonlight/dick.svg"
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Normal",
  32562. height: math.unit(6 + 2/12, "feet"),
  32563. default: true
  32564. },
  32565. {
  32566. name: "Macro",
  32567. height: math.unit(300, "feet")
  32568. },
  32569. {
  32570. name: "Macro+",
  32571. height: math.unit(1, "mile")
  32572. },
  32573. {
  32574. name: "Mt. Moon",
  32575. height: math.unit(5, "miles")
  32576. },
  32577. {
  32578. name: "Megamacro",
  32579. height: math.unit(15, "miles")
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32585. {
  32586. back: {
  32587. height: math.unit(6, "feet"),
  32588. weight: math.unit(150, "lb"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/sylen/back.svg",
  32592. extra: 1335/1273,
  32593. bottom: 107/1442
  32594. }
  32595. },
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(5 + 5/12, "feet")
  32601. },
  32602. {
  32603. name: "Megamacro",
  32604. height: math.unit(3, "miles"),
  32605. default: true
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(6, "feet"),
  32614. weight: math.unit(190, "lb"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/huttser/front.svg",
  32618. extra: 1152/1058,
  32619. bottom: 23/1175
  32620. }
  32621. },
  32622. side: {
  32623. height: math.unit(6, "feet"),
  32624. weight: math.unit(190, "lb"),
  32625. name: "Side",
  32626. image: {
  32627. source: "./media/characters/huttser/side.svg",
  32628. extra: 1174/1065,
  32629. bottom: 18/1192
  32630. }
  32631. },
  32632. back: {
  32633. height: math.unit(6, "feet"),
  32634. weight: math.unit(190, "lb"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/huttser/back.svg",
  32638. extra: 1158/1056,
  32639. bottom: 12/1170
  32640. }
  32641. },
  32642. },
  32643. [
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32648. {
  32649. side: {
  32650. height: math.unit(12 + 9/12, "feet"),
  32651. weight: math.unit(15000, "lb"),
  32652. name: "Side",
  32653. image: {
  32654. source: "./media/characters/faan/side.svg",
  32655. extra: 2747/2697,
  32656. bottom: 0/2747
  32657. }
  32658. },
  32659. front: {
  32660. height: math.unit(12 + 9/12, "feet"),
  32661. weight: math.unit(15000, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/faan/front.svg",
  32665. extra: 607/571,
  32666. bottom: 24/631
  32667. }
  32668. },
  32669. head: {
  32670. height: math.unit(2.85, "feet"),
  32671. name: "Head",
  32672. image: {
  32673. source: "./media/characters/faan/head.svg"
  32674. }
  32675. },
  32676. headAlt: {
  32677. height: math.unit(3.13, "feet"),
  32678. name: "Head-alt",
  32679. image: {
  32680. source: "./media/characters/faan/head-alt.svg"
  32681. }
  32682. },
  32683. },
  32684. [
  32685. {
  32686. name: "Normal",
  32687. height: math.unit(12 + 9/12, "feet"),
  32688. default: true
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(6, "feet"),
  32697. weight: math.unit(300, "lb"),
  32698. name: "Front",
  32699. image: {
  32700. source: "./media/characters/tanio/front.svg",
  32701. extra: 711/673,
  32702. bottom: 25/736
  32703. }
  32704. },
  32705. },
  32706. [
  32707. {
  32708. name: "Normal",
  32709. height: math.unit(6, "feet"),
  32710. default: true
  32711. },
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32716. {
  32717. front: {
  32718. height: math.unit(3, "inches"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/noboru/front.svg",
  32722. extra: 1039/932,
  32723. bottom: 18/1057
  32724. }
  32725. },
  32726. },
  32727. [
  32728. {
  32729. name: "Micro",
  32730. height: math.unit(3, "inches"),
  32731. default: true
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(1.85, "meters"),
  32740. weight: math.unit(80, "kg"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/daniel-barrett/front.svg",
  32744. extra: 355/337,
  32745. bottom: 9/364
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Pico",
  32752. height: math.unit(0.0433, "mm")
  32753. },
  32754. {
  32755. name: "Nano",
  32756. height: math.unit(1.5, "mm")
  32757. },
  32758. {
  32759. name: "Micro",
  32760. height: math.unit(5.3, "cm"),
  32761. default: true
  32762. },
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(1.85, "meters")
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(64.7, "meters")
  32770. },
  32771. {
  32772. name: "Megamacro",
  32773. height: math.unit(2.26, "km")
  32774. },
  32775. {
  32776. name: "Gigamacro",
  32777. height: math.unit(79, "km")
  32778. },
  32779. {
  32780. name: "Teramacro",
  32781. height: math.unit(2765, "km")
  32782. },
  32783. {
  32784. name: "Petamacro",
  32785. height: math.unit(96678, "km")
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32791. {
  32792. front: {
  32793. height: math.unit(30, "meters"),
  32794. weight: math.unit(400, "tons"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/zeel/front.svg",
  32798. extra: 2599/2599,
  32799. bottom: 226/2825
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Macro",
  32806. height: math.unit(30, "meters"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(6 + 7/12, "feet"),
  32816. weight: math.unit(210, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/tarn/front.svg",
  32820. extra: 3517/3220,
  32821. bottom: 91/3608
  32822. }
  32823. },
  32824. back: {
  32825. height: math.unit(6 + 7/12, "feet"),
  32826. weight: math.unit(210, "lb"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/tarn/back.svg",
  32830. extra: 3566/3241,
  32831. bottom: 34/3600
  32832. }
  32833. },
  32834. dick: {
  32835. height: math.unit(1.65, "feet"),
  32836. name: "Dick",
  32837. image: {
  32838. source: "./media/characters/tarn/dick.svg"
  32839. }
  32840. },
  32841. paw: {
  32842. height: math.unit(1.80, "feet"),
  32843. name: "Paw",
  32844. image: {
  32845. source: "./media/characters/tarn/paw.svg"
  32846. }
  32847. },
  32848. tongue: {
  32849. height: math.unit(0.97, "feet"),
  32850. name: "Tongue",
  32851. image: {
  32852. source: "./media/characters/tarn/tongue.svg"
  32853. }
  32854. },
  32855. },
  32856. [
  32857. {
  32858. name: "Micro",
  32859. height: math.unit(4, "inches")
  32860. },
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(6 + 7/12, "feet"),
  32864. default: true
  32865. },
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(300, "feet")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(5 + 7/12, "feet"),
  32877. weight: math.unit(80, "kg"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32881. extra: 3023/2865,
  32882. bottom: 33/3056
  32883. }
  32884. },
  32885. back: {
  32886. height: math.unit(5 + 7/12, "feet"),
  32887. weight: math.unit(80, "kg"),
  32888. name: "Back",
  32889. image: {
  32890. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32891. extra: 3020/2886,
  32892. bottom: 30/3050
  32893. }
  32894. },
  32895. dick: {
  32896. height: math.unit(0.98, "feet"),
  32897. name: "Dick",
  32898. image: {
  32899. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32900. }
  32901. },
  32902. anatomy: {
  32903. height: math.unit(2.86, "feet"),
  32904. name: "Anatomy",
  32905. image: {
  32906. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Really Small",
  32913. height: math.unit(2, "inches")
  32914. },
  32915. {
  32916. name: "Micro",
  32917. height: math.unit(5.583, "inches")
  32918. },
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(5 + 7/12, "feet"),
  32922. default: true
  32923. },
  32924. {
  32925. name: "Macro",
  32926. height: math.unit(67, "feet")
  32927. },
  32928. {
  32929. name: "Megamacro",
  32930. height: math.unit(134, "feet")
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(9, "feet"),
  32939. weight: math.unit(120, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/sally/front.svg",
  32943. extra: 1506/1349,
  32944. bottom: 66/1572
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(9, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(8, "feet"),
  32961. weight: math.unit(900, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/owen/front.svg",
  32965. extra: 1761/1657,
  32966. bottom: 74/1835
  32967. }
  32968. },
  32969. side: {
  32970. height: math.unit(8, "feet"),
  32971. weight: math.unit(900, "lb"),
  32972. name: "Side",
  32973. image: {
  32974. source: "./media/characters/owen/side.svg",
  32975. extra: 1797/1734,
  32976. bottom: 30/1827
  32977. }
  32978. },
  32979. back: {
  32980. height: math.unit(8, "feet"),
  32981. weight: math.unit(900, "lb"),
  32982. name: "Back",
  32983. image: {
  32984. source: "./media/characters/owen/back.svg",
  32985. extra: 1796/1706,
  32986. bottom: 59/1855
  32987. }
  32988. },
  32989. maw: {
  32990. height: math.unit(1.76, "feet"),
  32991. name: "Maw",
  32992. image: {
  32993. source: "./media/characters/owen/maw.svg"
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(8, "feet"),
  33001. default: true
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33007. {
  33008. front: {
  33009. height: math.unit(4, "feet"),
  33010. weight: math.unit(400, "lb"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/ryth/front.svg",
  33014. extra: 1920/1748,
  33015. bottom: 42/1962
  33016. }
  33017. },
  33018. back: {
  33019. height: math.unit(4, "feet"),
  33020. weight: math.unit(400, "lb"),
  33021. name: "Back",
  33022. image: {
  33023. source: "./media/characters/ryth/back.svg",
  33024. extra: 1897/1690,
  33025. bottom: 89/1986
  33026. }
  33027. },
  33028. mouth: {
  33029. height: math.unit(1.39, "feet"),
  33030. name: "Mouth",
  33031. image: {
  33032. source: "./media/characters/ryth/mouth.svg"
  33033. }
  33034. },
  33035. tailmaw: {
  33036. height: math.unit(1.23, "feet"),
  33037. name: "Tailmaw",
  33038. image: {
  33039. source: "./media/characters/ryth/tailmaw.svg"
  33040. }
  33041. },
  33042. goia: {
  33043. height: math.unit(4, "meters"),
  33044. weight: math.unit(10800, "lb"),
  33045. name: "Goia",
  33046. image: {
  33047. source: "./media/characters/ryth/goia.svg",
  33048. extra: 745/640,
  33049. bottom: 107/852
  33050. }
  33051. },
  33052. goiaFront: {
  33053. height: math.unit(4, "meters"),
  33054. weight: math.unit(10800, "lb"),
  33055. name: "Goia (Front)",
  33056. image: {
  33057. source: "./media/characters/ryth/goia-front.svg",
  33058. extra: 750/586,
  33059. bottom: 114/864
  33060. }
  33061. },
  33062. goiaMaw: {
  33063. height: math.unit(5.55, "feet"),
  33064. name: "Goia Maw",
  33065. image: {
  33066. source: "./media/characters/ryth/goia-maw.svg"
  33067. }
  33068. },
  33069. goiaForepaw: {
  33070. height: math.unit(3.5, "feet"),
  33071. name: "Goia Forepaw",
  33072. image: {
  33073. source: "./media/characters/ryth/goia-forepaw.svg"
  33074. }
  33075. },
  33076. goiaHindpaw: {
  33077. height: math.unit(5.55, "feet"),
  33078. name: "Goia Hindpaw",
  33079. image: {
  33080. source: "./media/characters/ryth/goia-hindpaw.svg"
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Normal",
  33087. height: math.unit(4, "feet"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33094. {
  33095. front: {
  33096. height: math.unit(7, "feet"),
  33097. weight: math.unit(180, "lb"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/necrolance/front.svg",
  33101. extra: 1062/947,
  33102. bottom: 41/1103
  33103. }
  33104. },
  33105. back: {
  33106. height: math.unit(7, "feet"),
  33107. weight: math.unit(180, "lb"),
  33108. name: "Back",
  33109. image: {
  33110. source: "./media/characters/necrolance/back.svg",
  33111. extra: 1045/984,
  33112. bottom: 14/1059
  33113. }
  33114. },
  33115. wing: {
  33116. height: math.unit(2.67, "feet"),
  33117. name: "Wing",
  33118. image: {
  33119. source: "./media/characters/necrolance/wing.svg"
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(7, "feet"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33133. {
  33134. front: {
  33135. height: math.unit(76, "meters"),
  33136. weight: math.unit(30000, "tons"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/tyler/front.svg",
  33140. extra: 1640/1640,
  33141. bottom: 114/1754
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Macro",
  33148. height: math.unit(76, "meters"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33155. {
  33156. front: {
  33157. height: math.unit(4 + 11/12, "feet"),
  33158. weight: math.unit(132, "lb"),
  33159. name: "Front",
  33160. image: {
  33161. source: "./media/characters/icey/front.svg",
  33162. extra: 2750/2550,
  33163. bottom: 33/2783
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(4 + 11/12, "feet"),
  33168. weight: math.unit(132, "lb"),
  33169. name: "Back",
  33170. image: {
  33171. source: "./media/characters/icey/back.svg",
  33172. extra: 2624/2481,
  33173. bottom: 35/2659
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(4 + 11/12, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33187. {
  33188. front: {
  33189. height: math.unit(100, "feet"),
  33190. weight: math.unit(0, "lb"),
  33191. name: "Front",
  33192. image: {
  33193. source: "./media/characters/smile/front.svg",
  33194. extra: 2983/2912,
  33195. bottom: 162/3145
  33196. }
  33197. },
  33198. back: {
  33199. height: math.unit(100, "feet"),
  33200. weight: math.unit(0, "lb"),
  33201. name: "Back",
  33202. image: {
  33203. source: "./media/characters/smile/back.svg",
  33204. extra: 3143/3031,
  33205. bottom: 91/3234
  33206. }
  33207. },
  33208. head: {
  33209. height: math.unit(26.3, "feet"),
  33210. weight: math.unit(0, "lb"),
  33211. name: "Head",
  33212. image: {
  33213. source: "./media/characters/smile/head.svg"
  33214. }
  33215. },
  33216. collar: {
  33217. height: math.unit(5.3, "feet"),
  33218. weight: math.unit(0, "lb"),
  33219. name: "Collar",
  33220. image: {
  33221. source: "./media/characters/smile/collar.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Macro",
  33228. height: math.unit(100, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33235. {
  33236. dragon: {
  33237. height: math.unit(26, "feet"),
  33238. weight: math.unit(36, "tons"),
  33239. name: "Dragon",
  33240. image: {
  33241. source: "./media/characters/arimphae/dragon.svg",
  33242. extra: 1574/983,
  33243. bottom: 357/1931
  33244. }
  33245. },
  33246. drake: {
  33247. height: math.unit(9, "feet"),
  33248. weight: math.unit(1.5, "tons"),
  33249. name: "Drake",
  33250. image: {
  33251. source: "./media/characters/arimphae/drake.svg",
  33252. extra: 1120/925,
  33253. bottom: 435/1555
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Small",
  33260. height: math.unit(26*5/9, "feet")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(26, "feet"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(8 + 9/12, "feet"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/xander/front.svg",
  33277. extra: 1237/974,
  33278. bottom: 94/1331
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Normal",
  33285. height: math.unit(8 + 9/12, "feet"),
  33286. default: true
  33287. },
  33288. {
  33289. name: "Gaze Grabber",
  33290. height: math.unit(13 + 8/12, "feet")
  33291. },
  33292. {
  33293. name: "Jaw Dropper",
  33294. height: math.unit(27, "feet")
  33295. },
  33296. {
  33297. name: "Show Stopper",
  33298. height: math.unit(136, "feet")
  33299. },
  33300. {
  33301. name: "Superstar",
  33302. height: math.unit(1.9e6, "miles")
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33308. {
  33309. side: {
  33310. height: math.unit(2100, "feet"),
  33311. name: "Side",
  33312. image: {
  33313. source: "./media/characters/osiris/side.svg",
  33314. extra: 1105/939,
  33315. bottom: 167/1272
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Macro",
  33322. height: math.unit(2100, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6 + 8/12, "feet"),
  33332. weight: math.unit(225, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/rhys-londe/front.svg",
  33336. extra: 2258/2141,
  33337. bottom: 188/2446
  33338. }
  33339. },
  33340. back: {
  33341. height: math.unit(6 + 8/12, "feet"),
  33342. weight: math.unit(225, "lb"),
  33343. name: "Back",
  33344. image: {
  33345. source: "./media/characters/rhys-londe/back.svg",
  33346. extra: 2237/2137,
  33347. bottom: 63/2300
  33348. }
  33349. },
  33350. frontNsfw: {
  33351. height: math.unit(6 + 8/12, "feet"),
  33352. weight: math.unit(225, "lb"),
  33353. name: "Front (NSFW)",
  33354. image: {
  33355. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33356. extra: 2258/2141,
  33357. bottom: 188/2446
  33358. }
  33359. },
  33360. backNsfw: {
  33361. height: math.unit(6 + 8/12, "feet"),
  33362. weight: math.unit(225, "lb"),
  33363. name: "Back (NSFW)",
  33364. image: {
  33365. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33366. extra: 2237/2137,
  33367. bottom: 63/2300
  33368. }
  33369. },
  33370. dick: {
  33371. height: math.unit(30, "inches"),
  33372. name: "Dick",
  33373. image: {
  33374. source: "./media/characters/rhys-londe/dick.svg"
  33375. }
  33376. },
  33377. maw: {
  33378. height: math.unit(1.6, "feet"),
  33379. name: "Maw",
  33380. image: {
  33381. source: "./media/characters/rhys-londe/maw.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(6 + 8/12, "feet"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(3 + 10/12, "feet"),
  33398. weight: math.unit(90, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/taivas-ensim/front.svg",
  33402. extra: 1327/1216,
  33403. bottom: 96/1423
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(3 + 10/12, "feet"),
  33408. weight: math.unit(90, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/taivas-ensim/back.svg",
  33412. extra: 1355/1247,
  33413. bottom: 11/1366
  33414. }
  33415. },
  33416. frontNsfw: {
  33417. height: math.unit(3 + 10/12, "feet"),
  33418. weight: math.unit(90, "lb"),
  33419. name: "Front (NSFW)",
  33420. image: {
  33421. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33422. extra: 1327/1216,
  33423. bottom: 96/1423
  33424. }
  33425. },
  33426. backNsfw: {
  33427. height: math.unit(3 + 10/12, "feet"),
  33428. weight: math.unit(90, "lb"),
  33429. name: "Back (NSFW)",
  33430. image: {
  33431. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33432. extra: 1355/1247,
  33433. bottom: 11/1366
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(3 + 10/12, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(9 + 6/12, "feet"),
  33450. weight: math.unit(940, "lb"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/byliss/front.svg",
  33454. extra: 1327/1290,
  33455. bottom: 82/1409
  33456. }
  33457. },
  33458. back: {
  33459. height: math.unit(9 + 6/12, "feet"),
  33460. weight: math.unit(940, "lb"),
  33461. name: "Back",
  33462. image: {
  33463. source: "./media/characters/byliss/back.svg",
  33464. extra: 1376/1349,
  33465. bottom: 9/1385
  33466. }
  33467. },
  33468. frontNsfw: {
  33469. height: math.unit(9 + 6/12, "feet"),
  33470. weight: math.unit(940, "lb"),
  33471. name: "Front (NSFW)",
  33472. image: {
  33473. source: "./media/characters/byliss/front-nsfw.svg",
  33474. extra: 1327/1290,
  33475. bottom: 82/1409
  33476. }
  33477. },
  33478. backNsfw: {
  33479. height: math.unit(9 + 6/12, "feet"),
  33480. weight: math.unit(940, "lb"),
  33481. name: "Back (NSFW)",
  33482. image: {
  33483. source: "./media/characters/byliss/back-nsfw.svg",
  33484. extra: 1376/1349,
  33485. bottom: 9/1385
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(9 + 6/12, "feet"),
  33493. default: true
  33494. },
  33495. ]
  33496. ))
  33497. characterMakers.push(() => makeCharacter(
  33498. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33499. {
  33500. front: {
  33501. height: math.unit(5 + 2/12, "feet"),
  33502. weight: math.unit(200, "lb"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/noraly/front.svg",
  33506. extra: 4985/4773,
  33507. bottom: 150/5135
  33508. }
  33509. },
  33510. full: {
  33511. height: math.unit(5 + 2/12, "feet"),
  33512. weight: math.unit(164, "lb"),
  33513. name: "Full",
  33514. image: {
  33515. source: "./media/characters/noraly/full.svg",
  33516. extra: 1114/1059,
  33517. bottom: 35/1149
  33518. }
  33519. },
  33520. fuller: {
  33521. height: math.unit(5 + 2/12, "feet"),
  33522. weight: math.unit(230, "lb"),
  33523. name: "Fuller",
  33524. image: {
  33525. source: "./media/characters/noraly/fuller.svg",
  33526. extra: 1114/1059,
  33527. bottom: 35/1149
  33528. }
  33529. },
  33530. fullest: {
  33531. height: math.unit(5 + 2/12, "feet"),
  33532. weight: math.unit(300, "lb"),
  33533. name: "Fullest",
  33534. image: {
  33535. source: "./media/characters/noraly/fullest.svg",
  33536. extra: 1114/1059,
  33537. bottom: 35/1149
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(5 + 2/12, "feet"),
  33545. default: true
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33551. {
  33552. front: {
  33553. height: math.unit(5 + 2/12, "feet"),
  33554. weight: math.unit(210, "lb"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/pera/front.svg",
  33558. extra: 1560/1531,
  33559. bottom: 165/1725
  33560. }
  33561. },
  33562. back: {
  33563. height: math.unit(5 + 2/12, "feet"),
  33564. weight: math.unit(210, "lb"),
  33565. name: "Back",
  33566. image: {
  33567. source: "./media/characters/pera/back.svg",
  33568. extra: 1523/1493,
  33569. bottom: 152/1675
  33570. }
  33571. },
  33572. dick: {
  33573. height: math.unit(2.4, "feet"),
  33574. name: "Dick",
  33575. image: {
  33576. source: "./media/characters/pera/dick.svg"
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(5 + 2/12, "feet"),
  33584. default: true
  33585. },
  33586. ]
  33587. ))
  33588. characterMakers.push(() => makeCharacter(
  33589. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33590. {
  33591. front: {
  33592. height: math.unit(12, "feet"),
  33593. weight: math.unit(3200, "lb"),
  33594. name: "Front",
  33595. image: {
  33596. source: "./media/characters/julian/front.svg",
  33597. extra: 2962/2701,
  33598. bottom: 184/3146
  33599. }
  33600. },
  33601. maw: {
  33602. height: math.unit(5.35, "feet"),
  33603. name: "Maw",
  33604. image: {
  33605. source: "./media/characters/julian/maw.svg"
  33606. }
  33607. },
  33608. paw: {
  33609. height: math.unit(3.07, "feet"),
  33610. name: "Paw",
  33611. image: {
  33612. source: "./media/characters/julian/paw.svg"
  33613. }
  33614. },
  33615. },
  33616. [
  33617. {
  33618. name: "Default",
  33619. height: math.unit(12, "feet"),
  33620. default: true
  33621. },
  33622. {
  33623. name: "Big",
  33624. height: math.unit(50, "feet")
  33625. },
  33626. {
  33627. name: "Really Big",
  33628. height: math.unit(1, "mile")
  33629. },
  33630. {
  33631. name: "Extremely Big",
  33632. height: math.unit(100, "miles")
  33633. },
  33634. {
  33635. name: "Planet Hugger",
  33636. height: math.unit(200, "megameters")
  33637. },
  33638. {
  33639. name: "Unreasonably Big",
  33640. height: math.unit(1e300, "meters")
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33646. {
  33647. solgooleo: {
  33648. height: math.unit(4, "meters"),
  33649. weight: math.unit(6000*1.5, "kg"),
  33650. volume: math.unit(6000, "liters"),
  33651. name: "Solgooleo",
  33652. image: {
  33653. source: "./media/characters/pi/solgooleo.svg",
  33654. extra: 388/331,
  33655. bottom: 29/417
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(4, "meters"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33669. {
  33670. front: {
  33671. height: math.unit(8, "feet"),
  33672. weight: math.unit(4, "tons"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/shaun/front.svg",
  33676. extra: 503/495,
  33677. bottom: 20/523
  33678. }
  33679. },
  33680. back: {
  33681. height: math.unit(8, "feet"),
  33682. weight: math.unit(4, "tons"),
  33683. name: "Back",
  33684. image: {
  33685. source: "./media/characters/shaun/back.svg",
  33686. extra: 487/480,
  33687. bottom: 20/507
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Lorg",
  33694. height: math.unit(8, "feet"),
  33695. default: true
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33701. {
  33702. frontAnthro: {
  33703. height: math.unit(7, "feet"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/sini/front-anthro.svg",
  33707. extra: 726/678,
  33708. bottom: 35/761
  33709. },
  33710. form: "anthro",
  33711. default: true
  33712. },
  33713. backAnthro: {
  33714. height: math.unit(7, "feet"),
  33715. name: "Back",
  33716. image: {
  33717. source: "./media/characters/sini/back-anthro.svg",
  33718. extra: 743/701,
  33719. bottom: 12/755
  33720. },
  33721. form: "anthro",
  33722. },
  33723. frontAnthroNsfw: {
  33724. height: math.unit(7, "feet"),
  33725. name: "Front (NSFW)",
  33726. image: {
  33727. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33728. extra: 726/678,
  33729. bottom: 35/761
  33730. },
  33731. form: "anthro"
  33732. },
  33733. backAnthroNsfw: {
  33734. height: math.unit(7, "feet"),
  33735. name: "Back (NSFW)",
  33736. image: {
  33737. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33738. extra: 743/701,
  33739. bottom: 12/755
  33740. },
  33741. form: "anthro",
  33742. },
  33743. mawAnthro: {
  33744. height: math.unit(2.14, "feet"),
  33745. name: "Maw",
  33746. image: {
  33747. source: "./media/characters/sini/maw-anthro.svg"
  33748. },
  33749. form: "anthro"
  33750. },
  33751. dick: {
  33752. height: math.unit(1.45, "feet"),
  33753. name: "Dick",
  33754. image: {
  33755. source: "./media/characters/sini/dick-anthro.svg"
  33756. },
  33757. form: "anthro"
  33758. },
  33759. feral: {
  33760. height: math.unit(16, "feet"),
  33761. name: "Feral",
  33762. image: {
  33763. source: "./media/characters/sini/feral.svg",
  33764. extra: 814/605,
  33765. bottom: 11/825
  33766. },
  33767. form: "feral",
  33768. default: true
  33769. },
  33770. feralNsfw: {
  33771. height: math.unit(16, "feet"),
  33772. name: "Feral (NSFW)",
  33773. image: {
  33774. source: "./media/characters/sini/feral-nsfw.svg",
  33775. extra: 814/605,
  33776. bottom: 11/825
  33777. },
  33778. form: "feral"
  33779. },
  33780. mawFeral: {
  33781. height: math.unit(5.66, "feet"),
  33782. name: "Maw",
  33783. image: {
  33784. source: "./media/characters/sini/maw-feral.svg"
  33785. },
  33786. form: "feral",
  33787. },
  33788. pawFeral: {
  33789. height: math.unit(5.17, "feet"),
  33790. name: "Paw",
  33791. image: {
  33792. source: "./media/characters/sini/paw-feral.svg"
  33793. },
  33794. form: "feral",
  33795. },
  33796. rumpFeral: {
  33797. height: math.unit(13.11, "feet"),
  33798. name: "Rump",
  33799. image: {
  33800. source: "./media/characters/sini/rump-feral.svg"
  33801. },
  33802. form: "feral",
  33803. },
  33804. dickFeral: {
  33805. height: math.unit(1, "feet"),
  33806. name: "Dick",
  33807. image: {
  33808. source: "./media/characters/sini/dick-feral.svg"
  33809. },
  33810. form: "feral",
  33811. },
  33812. eyeFeral: {
  33813. height: math.unit(1.23, "feet"),
  33814. name: "Eye",
  33815. image: {
  33816. source: "./media/characters/sini/eye-feral.svg"
  33817. },
  33818. form: "feral",
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(7, "feet"),
  33825. default: true,
  33826. form: "anthro"
  33827. },
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(16, "feet"),
  33831. default: true,
  33832. form: "feral"
  33833. },
  33834. ],
  33835. {
  33836. "anthro": {
  33837. name: "Anthro",
  33838. default: true
  33839. },
  33840. "feral": {
  33841. name: "Feral",
  33842. }
  33843. }
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33847. {
  33848. side: {
  33849. height: math.unit(47.2, "meters"),
  33850. weight: math.unit(10000, "tons"),
  33851. name: "Side",
  33852. image: {
  33853. source: "./media/characters/raylldo/side.svg",
  33854. extra: 2363/642,
  33855. bottom: 221/2584
  33856. }
  33857. },
  33858. top: {
  33859. height: math.unit(240, "meters"),
  33860. weight: math.unit(10000, "tons"),
  33861. name: "Top",
  33862. image: {
  33863. source: "./media/characters/raylldo/top.svg"
  33864. }
  33865. },
  33866. bottom: {
  33867. height: math.unit(240, "meters"),
  33868. weight: math.unit(10000, "tons"),
  33869. name: "Bottom",
  33870. image: {
  33871. source: "./media/characters/raylldo/bottom.svg"
  33872. }
  33873. },
  33874. head: {
  33875. height: math.unit(38.6, "meters"),
  33876. name: "Head",
  33877. image: {
  33878. source: "./media/characters/raylldo/head.svg",
  33879. extra: 1335/1112,
  33880. bottom: 0/1335
  33881. }
  33882. },
  33883. maw: {
  33884. height: math.unit(16.37, "meters"),
  33885. name: "Maw",
  33886. image: {
  33887. source: "./media/characters/raylldo/maw.svg",
  33888. extra: 883/660,
  33889. bottom: 0/883
  33890. }
  33891. },
  33892. forepaw: {
  33893. height: math.unit(18, "meters"),
  33894. name: "Forepaw",
  33895. image: {
  33896. source: "./media/characters/raylldo/forepaw.svg"
  33897. }
  33898. },
  33899. hindpaw: {
  33900. height: math.unit(23, "meters"),
  33901. name: "Hindpaw",
  33902. image: {
  33903. source: "./media/characters/raylldo/hindpaw.svg"
  33904. }
  33905. },
  33906. genitals: {
  33907. height: math.unit(42, "meters"),
  33908. name: "Genitals",
  33909. image: {
  33910. source: "./media/characters/raylldo/genitals.svg"
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(47.2, "meters"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33924. {
  33925. anthroFront: {
  33926. height: math.unit(9, "feet"),
  33927. weight: math.unit(600, "lb"),
  33928. name: "Anthro (Front)",
  33929. image: {
  33930. source: "./media/characters/glint/anthro-front.svg",
  33931. extra: 1097/1018,
  33932. bottom: 28/1125
  33933. }
  33934. },
  33935. anthroBack: {
  33936. height: math.unit(9, "feet"),
  33937. weight: math.unit(600, "lb"),
  33938. name: "Anthro (Back)",
  33939. image: {
  33940. source: "./media/characters/glint/anthro-back.svg",
  33941. extra: 1154/997,
  33942. bottom: 36/1190
  33943. }
  33944. },
  33945. feral: {
  33946. height: math.unit(11, "feet"),
  33947. weight: math.unit(50000, "lb"),
  33948. name: "Feral",
  33949. image: {
  33950. source: "./media/characters/glint/feral.svg",
  33951. extra: 3035/1585,
  33952. bottom: 1169/4204
  33953. }
  33954. },
  33955. dickAnthro: {
  33956. height: math.unit(0.7, "meters"),
  33957. name: "Dick (Anthro)",
  33958. image: {
  33959. source: "./media/characters/glint/dick-anthro.svg"
  33960. }
  33961. },
  33962. dickFeral: {
  33963. height: math.unit(2.65, "meters"),
  33964. name: "Dick (Feral)",
  33965. image: {
  33966. source: "./media/characters/glint/dick-feral.svg"
  33967. }
  33968. },
  33969. slitHidden: {
  33970. height: math.unit(5.85, "meters"),
  33971. name: "Slit (Hidden)",
  33972. image: {
  33973. source: "./media/characters/glint/slit-hidden.svg"
  33974. }
  33975. },
  33976. slitErect: {
  33977. height: math.unit(5.85, "meters"),
  33978. name: "Slit (Erect)",
  33979. image: {
  33980. source: "./media/characters/glint/slit-erect.svg"
  33981. }
  33982. },
  33983. mawAnthro: {
  33984. height: math.unit(0.63, "meters"),
  33985. name: "Maw (Anthro)",
  33986. image: {
  33987. source: "./media/characters/glint/maw.svg"
  33988. }
  33989. },
  33990. mawFeral: {
  33991. height: math.unit(2.89, "meters"),
  33992. name: "Maw (Feral)",
  33993. image: {
  33994. source: "./media/characters/glint/maw.svg"
  33995. }
  33996. },
  33997. },
  33998. [
  33999. {
  34000. name: "Normal",
  34001. height: math.unit(9, "feet"),
  34002. default: true
  34003. },
  34004. ]
  34005. ))
  34006. characterMakers.push(() => makeCharacter(
  34007. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34008. {
  34009. side: {
  34010. height: math.unit(15, "feet"),
  34011. weight: math.unit(5000, "kg"),
  34012. name: "Side",
  34013. image: {
  34014. source: "./media/characters/kairne/side.svg",
  34015. extra: 979/811,
  34016. bottom: 13/992
  34017. }
  34018. },
  34019. front: {
  34020. height: math.unit(15, "feet"),
  34021. weight: math.unit(5000, "kg"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/kairne/front.svg",
  34025. extra: 908/814,
  34026. bottom: 26/934
  34027. }
  34028. },
  34029. sideNsfw: {
  34030. height: math.unit(15, "feet"),
  34031. weight: math.unit(5000, "kg"),
  34032. name: "Side (NSFW)",
  34033. image: {
  34034. source: "./media/characters/kairne/side-nsfw.svg",
  34035. extra: 979/811,
  34036. bottom: 13/992
  34037. }
  34038. },
  34039. frontNsfw: {
  34040. height: math.unit(15, "feet"),
  34041. weight: math.unit(5000, "kg"),
  34042. name: "Front (NSFW)",
  34043. image: {
  34044. source: "./media/characters/kairne/front-nsfw.svg",
  34045. extra: 908/814,
  34046. bottom: 26/934
  34047. }
  34048. },
  34049. dickCaged: {
  34050. height: math.unit(0.65, "meters"),
  34051. name: "Dick-caged",
  34052. image: {
  34053. source: "./media/characters/kairne/dick-caged.svg"
  34054. }
  34055. },
  34056. dick: {
  34057. height: math.unit(0.79, "meters"),
  34058. name: "Dick",
  34059. image: {
  34060. source: "./media/characters/kairne/dick.svg"
  34061. }
  34062. },
  34063. genitals: {
  34064. height: math.unit(1.29, "meters"),
  34065. name: "Genitals",
  34066. image: {
  34067. source: "./media/characters/kairne/genitals.svg"
  34068. }
  34069. },
  34070. maw: {
  34071. height: math.unit(1.73, "meters"),
  34072. name: "Maw",
  34073. image: {
  34074. source: "./media/characters/kairne/maw.svg"
  34075. }
  34076. },
  34077. },
  34078. [
  34079. {
  34080. name: "Normal",
  34081. height: math.unit(15, "feet"),
  34082. default: true
  34083. },
  34084. ]
  34085. ))
  34086. characterMakers.push(() => makeCharacter(
  34087. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34088. {
  34089. front: {
  34090. height: math.unit(5 + 8/12, "feet"),
  34091. weight: math.unit(139, "lb"),
  34092. name: "Front",
  34093. image: {
  34094. source: "./media/characters/biscuit-jackal/front.svg",
  34095. extra: 2106/1961,
  34096. bottom: 58/2164
  34097. }
  34098. },
  34099. back: {
  34100. height: math.unit(5 + 8/12, "feet"),
  34101. weight: math.unit(139, "lb"),
  34102. name: "Back",
  34103. image: {
  34104. source: "./media/characters/biscuit-jackal/back.svg",
  34105. extra: 2132/1976,
  34106. bottom: 57/2189
  34107. }
  34108. },
  34109. werejackal: {
  34110. height: math.unit(6 + 3/12, "feet"),
  34111. weight: math.unit(188, "lb"),
  34112. name: "Werejackal",
  34113. image: {
  34114. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34115. extra: 2373/2178,
  34116. bottom: 53/2426
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(5 + 8/12, "feet"),
  34124. default: true
  34125. },
  34126. ]
  34127. ))
  34128. characterMakers.push(() => makeCharacter(
  34129. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34130. {
  34131. front: {
  34132. height: math.unit(140, "cm"),
  34133. weight: math.unit(45, "kg"),
  34134. name: "Front",
  34135. image: {
  34136. source: "./media/characters/tayra-white/front.svg",
  34137. extra: 2229/2192,
  34138. bottom: 75/2304
  34139. }
  34140. },
  34141. },
  34142. [
  34143. {
  34144. name: "Normal",
  34145. height: math.unit(140, "cm"),
  34146. default: true
  34147. },
  34148. ]
  34149. ))
  34150. characterMakers.push(() => makeCharacter(
  34151. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34152. {
  34153. front: {
  34154. height: math.unit(4 + 5/12, "feet"),
  34155. name: "Front",
  34156. image: {
  34157. source: "./media/characters/scoop/front.svg",
  34158. extra: 1257/1136,
  34159. bottom: 69/1326
  34160. }
  34161. },
  34162. back: {
  34163. height: math.unit(4 + 5/12, "feet"),
  34164. name: "Back",
  34165. image: {
  34166. source: "./media/characters/scoop/back.svg",
  34167. extra: 1321/1152,
  34168. bottom: 32/1353
  34169. }
  34170. },
  34171. maw: {
  34172. height: math.unit(0.68, "feet"),
  34173. name: "Maw",
  34174. image: {
  34175. source: "./media/characters/scoop/maw.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Really Small",
  34182. height: math.unit(1, "mm")
  34183. },
  34184. {
  34185. name: "Micro",
  34186. height: math.unit(1, "inch")
  34187. },
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(4 + 5/12, "feet"),
  34191. default: true
  34192. },
  34193. {
  34194. name: "Macro",
  34195. height: math.unit(200, "feet")
  34196. },
  34197. {
  34198. name: "Megamacro",
  34199. height: math.unit(3240, "feet")
  34200. },
  34201. {
  34202. name: "Teramacro",
  34203. height: math.unit(2500, "miles")
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34209. {
  34210. front: {
  34211. height: math.unit(15 + 7/12, "feet"),
  34212. weight: math.unit(1150, "tons"),
  34213. name: "Front",
  34214. image: {
  34215. source: "./media/characters/saphinara/front.svg",
  34216. extra: 1837/1643,
  34217. bottom: 84/1921
  34218. },
  34219. form: "normal",
  34220. default: true
  34221. },
  34222. side: {
  34223. height: math.unit(15 + 7/12, "feet"),
  34224. weight: math.unit(1150, "tons"),
  34225. name: "Side",
  34226. image: {
  34227. source: "./media/characters/saphinara/side.svg",
  34228. extra: 605/547,
  34229. bottom: 6/611
  34230. },
  34231. form: "normal"
  34232. },
  34233. back: {
  34234. height: math.unit(15 + 7/12, "feet"),
  34235. weight: math.unit(1150, "tons"),
  34236. name: "Back",
  34237. image: {
  34238. source: "./media/characters/saphinara/back.svg",
  34239. extra: 591/531,
  34240. bottom: 13/604
  34241. },
  34242. form: "normal"
  34243. },
  34244. frontTail: {
  34245. height: math.unit(15 + 7/12, "feet"),
  34246. weight: math.unit(1150, "tons"),
  34247. name: "Front (Full Tail)",
  34248. image: {
  34249. source: "./media/characters/saphinara/front-tail.svg",
  34250. extra: 2256/1630,
  34251. bottom: 261/2517
  34252. },
  34253. form: "normal"
  34254. },
  34255. insides: {
  34256. height: math.unit(11.92, "feet"),
  34257. name: "Insides",
  34258. image: {
  34259. source: "./media/characters/saphinara/insides.svg"
  34260. },
  34261. form: "normal"
  34262. },
  34263. head: {
  34264. height: math.unit(4.17, "feet"),
  34265. name: "Head",
  34266. image: {
  34267. source: "./media/characters/saphinara/head.svg"
  34268. },
  34269. form: "normal"
  34270. },
  34271. tongue: {
  34272. height: math.unit(4.60, "feet"),
  34273. name: "Tongue",
  34274. image: {
  34275. source: "./media/characters/saphinara/tongue.svg"
  34276. },
  34277. form: "normal"
  34278. },
  34279. headEnraged: {
  34280. height: math.unit(5.55, "feet"),
  34281. name: "Head (Enraged)",
  34282. image: {
  34283. source: "./media/characters/saphinara/head-enraged.svg"
  34284. },
  34285. form: "normal"
  34286. },
  34287. wings: {
  34288. height: math.unit(11.95, "feet"),
  34289. name: "Wings",
  34290. image: {
  34291. source: "./media/characters/saphinara/wings.svg"
  34292. },
  34293. form: "normal"
  34294. },
  34295. feathers: {
  34296. height: math.unit(8.92, "feet"),
  34297. name: "Feathers",
  34298. image: {
  34299. source: "./media/characters/saphinara/feathers.svg"
  34300. },
  34301. form: "normal"
  34302. },
  34303. shackles: {
  34304. height: math.unit(2, "feet"),
  34305. name: "Shackles",
  34306. image: {
  34307. source: "./media/characters/saphinara/shackles.svg"
  34308. },
  34309. form: "normal"
  34310. },
  34311. eyes: {
  34312. height: math.unit(1.331, "feet"),
  34313. name: "Eyes",
  34314. image: {
  34315. source: "./media/characters/saphinara/eyes.svg"
  34316. },
  34317. form: "normal"
  34318. },
  34319. eyesEnraged: {
  34320. height: math.unit(1.331, "feet"),
  34321. name: "Eyes (Enraged)",
  34322. image: {
  34323. source: "./media/characters/saphinara/eyes-enraged.svg"
  34324. },
  34325. form: "normal"
  34326. },
  34327. trueFormSide: {
  34328. height: math.unit(200, "feet"),
  34329. weight: math.unit(1e7, "tons"),
  34330. name: "Side",
  34331. image: {
  34332. source: "./media/characters/saphinara/true-form-side.svg",
  34333. extra: 1399/770,
  34334. bottom: 97/1496
  34335. },
  34336. form: "true-form",
  34337. default: true
  34338. },
  34339. trueFormMaw: {
  34340. height: math.unit(71.5, "feet"),
  34341. name: "Maw",
  34342. image: {
  34343. source: "./media/characters/saphinara/true-form-maw.svg",
  34344. extra: 2302/1453,
  34345. bottom: 0/2302
  34346. },
  34347. form: "true-form"
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(15 + 7/12, "feet"),
  34354. default: true,
  34355. form: "normal"
  34356. },
  34357. {
  34358. name: "Angry",
  34359. height: math.unit(30 + 6/12, "feet"),
  34360. form: "normal"
  34361. },
  34362. {
  34363. name: "Enraged",
  34364. height: math.unit(102 + 1/12, "feet"),
  34365. form: "normal"
  34366. },
  34367. {
  34368. name: "True",
  34369. height: math.unit(200, "feet"),
  34370. default: true,
  34371. form: "true-form"
  34372. }
  34373. ],
  34374. {
  34375. "normal": {
  34376. name: "Normal",
  34377. default: true
  34378. },
  34379. "true-form": {
  34380. name: "True Form"
  34381. }
  34382. }
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(6 + 8/12, "feet"),
  34389. weight: math.unit(300, "lb"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/jrain/front.svg",
  34393. extra: 3039/2865,
  34394. bottom: 399/3438
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(6 + 8/12, "feet"),
  34399. weight: math.unit(300, "lb"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/jrain/back.svg",
  34403. extra: 3089/2938,
  34404. bottom: 172/3261
  34405. }
  34406. },
  34407. head: {
  34408. height: math.unit(2.14, "feet"),
  34409. name: "Head",
  34410. image: {
  34411. source: "./media/characters/jrain/head.svg"
  34412. }
  34413. },
  34414. maw: {
  34415. height: math.unit(1.77, "feet"),
  34416. name: "Maw",
  34417. image: {
  34418. source: "./media/characters/jrain/maw.svg"
  34419. }
  34420. },
  34421. leftHand: {
  34422. height: math.unit(1.1, "feet"),
  34423. name: "Left Hand",
  34424. image: {
  34425. source: "./media/characters/jrain/left-hand.svg"
  34426. }
  34427. },
  34428. rightHand: {
  34429. height: math.unit(1.1, "feet"),
  34430. name: "Right Hand",
  34431. image: {
  34432. source: "./media/characters/jrain/right-hand.svg"
  34433. }
  34434. },
  34435. eye: {
  34436. height: math.unit(0.35, "feet"),
  34437. name: "Eye",
  34438. image: {
  34439. source: "./media/characters/jrain/eye.svg"
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(6 + 8/12, "feet"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Casually Large",
  34451. height: math.unit(25, "feet")
  34452. },
  34453. {
  34454. name: "Giant",
  34455. height: math.unit(100, "feet")
  34456. },
  34457. {
  34458. name: "Kaiju",
  34459. height: math.unit(300, "feet")
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34465. {
  34466. dragon: {
  34467. height: math.unit(5, "meters"),
  34468. name: "Dragon",
  34469. image: {
  34470. source: "./media/characters/sabrina/dragon.svg",
  34471. extra: 3670 / 2365,
  34472. bottom: 333 / 4003
  34473. }
  34474. },
  34475. gryphon: {
  34476. height: math.unit(3, "meters"),
  34477. name: "Gryphon",
  34478. image: {
  34479. source: "./media/characters/sabrina/gryphon.svg",
  34480. extra: 1576 / 945,
  34481. bottom: 71 / 1647
  34482. }
  34483. },
  34484. snake: {
  34485. height: math.unit(12, "meters"),
  34486. name: "Snake",
  34487. image: {
  34488. source: "./media/characters/sabrina/snake.svg",
  34489. extra: 1758 / 1320,
  34490. bottom: 186 / 1944
  34491. }
  34492. },
  34493. collar: {
  34494. height: math.unit(1.86, "meters"),
  34495. name: "Collar",
  34496. image: {
  34497. source: "./media/characters/sabrina/collar.svg"
  34498. }
  34499. },
  34500. eye: {
  34501. height: math.unit(0.53, "meters"),
  34502. name: "Eye",
  34503. image: {
  34504. source: "./media/characters/sabrina/eye.svg"
  34505. }
  34506. },
  34507. foot: {
  34508. height: math.unit(1.86, "meters"),
  34509. name: "Foot",
  34510. image: {
  34511. source: "./media/characters/sabrina/foot.svg"
  34512. }
  34513. },
  34514. hand: {
  34515. height: math.unit(1.32, "meters"),
  34516. name: "Hand",
  34517. image: {
  34518. source: "./media/characters/sabrina/hand.svg"
  34519. }
  34520. },
  34521. head: {
  34522. height: math.unit(2.44, "meters"),
  34523. name: "Head",
  34524. image: {
  34525. source: "./media/characters/sabrina/head.svg"
  34526. }
  34527. },
  34528. headAngry: {
  34529. height: math.unit(2.44, "meters"),
  34530. name: "Head (Angry))",
  34531. image: {
  34532. source: "./media/characters/sabrina/head-angry.svg"
  34533. }
  34534. },
  34535. maw: {
  34536. height: math.unit(1.65, "meters"),
  34537. name: "Maw",
  34538. image: {
  34539. source: "./media/characters/sabrina/maw.svg"
  34540. }
  34541. },
  34542. spikes: {
  34543. height: math.unit(1.69, "meters"),
  34544. name: "Spikes",
  34545. image: {
  34546. source: "./media/characters/sabrina/spikes.svg"
  34547. }
  34548. },
  34549. stomach: {
  34550. height: math.unit(1.15, "meters"),
  34551. name: "Stomach",
  34552. image: {
  34553. source: "./media/characters/sabrina/stomach.svg"
  34554. }
  34555. },
  34556. tongue: {
  34557. height: math.unit(1.27, "meters"),
  34558. name: "Tongue",
  34559. image: {
  34560. source: "./media/characters/sabrina/tongue.svg"
  34561. }
  34562. },
  34563. wingDorsal: {
  34564. height: math.unit(4.85, "meters"),
  34565. name: "Wing (Dorsal)",
  34566. image: {
  34567. source: "./media/characters/sabrina/wing-dorsal.svg"
  34568. }
  34569. },
  34570. wingVentral: {
  34571. height: math.unit(4.85, "meters"),
  34572. name: "Wing (Ventral)",
  34573. image: {
  34574. source: "./media/characters/sabrina/wing-ventral.svg"
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(5, "meters"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34588. {
  34589. frontMaid: {
  34590. height: math.unit(5 + 5/12, "feet"),
  34591. weight: math.unit(130, "lb"),
  34592. name: "Front (Maid)",
  34593. image: {
  34594. source: "./media/characters/midnight-tales/front-maid.svg",
  34595. extra: 489/454,
  34596. bottom: 61/550
  34597. }
  34598. },
  34599. frontFormal: {
  34600. height: math.unit(5 + 5/12, "feet"),
  34601. weight: math.unit(130, "lb"),
  34602. name: "Front (Formal)",
  34603. image: {
  34604. source: "./media/characters/midnight-tales/front-formal.svg",
  34605. extra: 489/454,
  34606. bottom: 61/550
  34607. }
  34608. },
  34609. back: {
  34610. height: math.unit(5 + 5/12, "feet"),
  34611. weight: math.unit(130, "lb"),
  34612. name: "Back",
  34613. image: {
  34614. source: "./media/characters/midnight-tales/back.svg",
  34615. extra: 498/456,
  34616. bottom: 33/531
  34617. }
  34618. },
  34619. frontBeast: {
  34620. height: math.unit(40, "feet"),
  34621. weight: math.unit(64000, "lb"),
  34622. name: "Front (Beast)",
  34623. image: {
  34624. source: "./media/characters/midnight-tales/front-beast.svg",
  34625. extra: 927/860,
  34626. bottom: 53/980
  34627. }
  34628. },
  34629. backBeast: {
  34630. height: math.unit(40, "feet"),
  34631. weight: math.unit(64000, "lb"),
  34632. name: "Back (Beast)",
  34633. image: {
  34634. source: "./media/characters/midnight-tales/back-beast.svg",
  34635. extra: 929/855,
  34636. bottom: 16/945
  34637. }
  34638. },
  34639. footBeast: {
  34640. height: math.unit(6.7, "feet"),
  34641. name: "Foot (Beast)",
  34642. image: {
  34643. source: "./media/characters/midnight-tales/foot-beast.svg"
  34644. }
  34645. },
  34646. headBeast: {
  34647. height: math.unit(8, "feet"),
  34648. name: "Head (Beast)",
  34649. image: {
  34650. source: "./media/characters/midnight-tales/head-beast.svg"
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(5 + 5 / 12, "feet"),
  34658. default: true
  34659. },
  34660. {
  34661. name: "Macro",
  34662. height: math.unit(25, "feet")
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(5 + 10/12, "feet"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/argon/front.svg",
  34674. extra: 2009/1935,
  34675. bottom: 118/2127
  34676. }
  34677. },
  34678. back: {
  34679. height: math.unit(5 + 10/12, "feet"),
  34680. name: "Back",
  34681. image: {
  34682. source: "./media/characters/argon/back.svg",
  34683. extra: 2047/1992,
  34684. bottom: 20/2067
  34685. }
  34686. },
  34687. frontDressed: {
  34688. height: math.unit(5 + 10/12, "feet"),
  34689. name: "Front (Dressed)",
  34690. image: {
  34691. source: "./media/characters/argon/front-dressed.svg",
  34692. extra: 2009/1935,
  34693. bottom: 118/2127
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(5 + 10/12, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(8 + 6/12, "feet"),
  34710. weight: math.unit(1150, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/kichi/front.svg",
  34714. extra: 1267/1164,
  34715. bottom: 61/1328
  34716. }
  34717. },
  34718. back: {
  34719. height: math.unit(8 + 6/12, "feet"),
  34720. weight: math.unit(1150, "lb"),
  34721. name: "Back",
  34722. image: {
  34723. source: "./media/characters/kichi/back.svg",
  34724. extra: 1273/1166,
  34725. bottom: 33/1306
  34726. }
  34727. },
  34728. },
  34729. [
  34730. {
  34731. name: "Normal",
  34732. height: math.unit(8 + 6/12, "feet"),
  34733. default: true
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34739. {
  34740. front: {
  34741. height: math.unit(6, "feet"),
  34742. weight: math.unit(210, "lb"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/manetel-greyscale/front.svg",
  34746. extra: 350/312,
  34747. bottom: 8/358
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Micro",
  34754. height: math.unit(2, "inches")
  34755. },
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(6, "feet"),
  34759. default: true
  34760. },
  34761. {
  34762. name: "Minimacro",
  34763. height: math.unit(17, "feet")
  34764. },
  34765. {
  34766. name: "Macro",
  34767. height: math.unit(117, "feet")
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34773. {
  34774. side: {
  34775. height: math.unit(5 + 1/12, "feet"),
  34776. weight: math.unit(418, "lb"),
  34777. name: "Side",
  34778. image: {
  34779. source: "./media/characters/softpurr/side.svg",
  34780. extra: 1993/1945,
  34781. bottom: 134/2127
  34782. }
  34783. },
  34784. front: {
  34785. height: math.unit(5 + 1/12, "feet"),
  34786. weight: math.unit(418, "lb"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/softpurr/front.svg",
  34790. extra: 1950/1856,
  34791. bottom: 174/2124
  34792. }
  34793. },
  34794. paw: {
  34795. height: math.unit(1, "feet"),
  34796. name: "Paw",
  34797. image: {
  34798. source: "./media/characters/softpurr/paw.svg"
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(5 + 1/12, "feet"),
  34806. default: true
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34812. {
  34813. front: {
  34814. height: math.unit(260, "meters"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/anahita/front.svg",
  34818. extra: 665/635,
  34819. bottom: 89/754
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Macro",
  34826. height: math.unit(260, "meters"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(4 + 10/12, "feet"),
  34836. weight: math.unit(160, "lb"),
  34837. name: "Front",
  34838. image: {
  34839. source: "./media/characters/chip-mouse/front.svg",
  34840. extra: 3528/3408,
  34841. bottom: 0/3528
  34842. }
  34843. },
  34844. frontNsfw: {
  34845. height: math.unit(4 + 10/12, "feet"),
  34846. weight: math.unit(160, "lb"),
  34847. name: "Front (NSFW)",
  34848. image: {
  34849. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34850. extra: 3528/3408,
  34851. bottom: 0/3528
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(4 + 10/12, "feet"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34865. {
  34866. side: {
  34867. height: math.unit(10, "feet"),
  34868. weight: math.unit(14000, "lb"),
  34869. name: "Side",
  34870. image: {
  34871. source: "./media/characters/kremm/side.svg",
  34872. extra: 1390/1053,
  34873. bottom: 90/1480
  34874. }
  34875. },
  34876. gut: {
  34877. height: math.unit(5.8, "feet"),
  34878. name: "Gut",
  34879. image: {
  34880. source: "./media/characters/kremm/gut.svg"
  34881. }
  34882. },
  34883. ass: {
  34884. height: math.unit(6.1, "feet"),
  34885. name: "Ass",
  34886. image: {
  34887. source: "./media/characters/kremm/ass.svg"
  34888. }
  34889. },
  34890. jaws: {
  34891. height: math.unit(2.2, "feet"),
  34892. name: "Jaws",
  34893. image: {
  34894. source: "./media/characters/kremm/jaws.svg"
  34895. }
  34896. },
  34897. dick: {
  34898. height: math.unit(4.26, "feet"),
  34899. name: "Dick",
  34900. image: {
  34901. source: "./media/characters/kremm/dick.svg"
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(10, "feet"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(30, "stories"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/kai/front.svg",
  34921. extra: 1892/1718,
  34922. bottom: 162/2054
  34923. }
  34924. },
  34925. },
  34926. [
  34927. {
  34928. name: "Macro",
  34929. height: math.unit(30, "stories"),
  34930. default: true
  34931. },
  34932. ]
  34933. ))
  34934. characterMakers.push(() => makeCharacter(
  34935. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34936. {
  34937. front: {
  34938. height: math.unit(6 + 4/12, "feet"),
  34939. weight: math.unit(145, "lb"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/sykes/front.svg",
  34943. extra: 1321 / 1187,
  34944. bottom: 66 / 1387
  34945. }
  34946. },
  34947. back: {
  34948. height: math.unit(6 + 4/12, "feet"),
  34949. weight: math.unit(145, "lb"),
  34950. name: "Back",
  34951. image: {
  34952. source: "./media/characters/sykes/back.svg",
  34953. extra: 1326/1181,
  34954. bottom: 31/1357
  34955. }
  34956. },
  34957. traditionalOutfit: {
  34958. height: math.unit(6 + 4/12, "feet"),
  34959. weight: math.unit(145, "lb"),
  34960. name: "Traditional Outfit",
  34961. image: {
  34962. source: "./media/characters/sykes/traditional-outfit.svg",
  34963. extra: 1321 / 1187,
  34964. bottom: 66 / 1387
  34965. }
  34966. },
  34967. adventureOutfit: {
  34968. height: math.unit(6 + 4/12, "feet"),
  34969. weight: math.unit(145, "lb"),
  34970. name: "Adventure Outfit",
  34971. image: {
  34972. source: "./media/characters/sykes/adventure-outfit.svg",
  34973. extra: 1321 / 1187,
  34974. bottom: 66 / 1387
  34975. }
  34976. },
  34977. handLeft: {
  34978. height: math.unit(0.9, "feet"),
  34979. name: "Hand (Left)",
  34980. image: {
  34981. source: "./media/characters/sykes/hand-left.svg"
  34982. }
  34983. },
  34984. handRight: {
  34985. height: math.unit(0.839, "feet"),
  34986. name: "Hand (Right)",
  34987. image: {
  34988. source: "./media/characters/sykes/hand-right.svg"
  34989. }
  34990. },
  34991. leftFoot: {
  34992. height: math.unit(1.2, "feet"),
  34993. name: "Foot (Left)",
  34994. image: {
  34995. source: "./media/characters/sykes/foot-left.svg"
  34996. }
  34997. },
  34998. rightFoot: {
  34999. height: math.unit(1.2, "feet"),
  35000. name: "Foot (Right)",
  35001. image: {
  35002. source: "./media/characters/sykes/foot-right.svg"
  35003. }
  35004. },
  35005. maw: {
  35006. height: math.unit(1.93, "feet"),
  35007. name: "Maw",
  35008. image: {
  35009. source: "./media/characters/sykes/maw.svg"
  35010. }
  35011. },
  35012. teeth: {
  35013. height: math.unit(0.51, "feet"),
  35014. name: "Teeth",
  35015. image: {
  35016. source: "./media/characters/sykes/teeth.svg"
  35017. }
  35018. },
  35019. tongue: {
  35020. height: math.unit(2.13, "feet"),
  35021. name: "Tongue",
  35022. image: {
  35023. source: "./media/characters/sykes/tongue.svg"
  35024. }
  35025. },
  35026. uvula: {
  35027. height: math.unit(0.16, "feet"),
  35028. name: "Uvula",
  35029. image: {
  35030. source: "./media/characters/sykes/uvula.svg"
  35031. }
  35032. },
  35033. collar: {
  35034. height: math.unit(0.287, "feet"),
  35035. name: "Collar",
  35036. image: {
  35037. source: "./media/characters/sykes/collar.svg"
  35038. }
  35039. },
  35040. tail: {
  35041. height: math.unit(3.8, "feet"),
  35042. name: "Tail",
  35043. image: {
  35044. source: "./media/characters/sykes/tail.svg"
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Shrunken",
  35051. height: math.unit(5, "inches")
  35052. },
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(6 + 4 / 12, "feet"),
  35056. default: true
  35057. },
  35058. {
  35059. name: "Big",
  35060. height: math.unit(15, "feet")
  35061. },
  35062. ]
  35063. ))
  35064. characterMakers.push(() => makeCharacter(
  35065. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35066. {
  35067. front: {
  35068. height: math.unit(5 + 8/12, "feet"),
  35069. weight: math.unit(190, "lb"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/oven-otter/front.svg",
  35073. extra: 1809/1740,
  35074. bottom: 181/1990
  35075. }
  35076. },
  35077. back: {
  35078. height: math.unit(5 + 8/12, "feet"),
  35079. weight: math.unit(190, "lb"),
  35080. name: "Back",
  35081. image: {
  35082. source: "./media/characters/oven-otter/back.svg",
  35083. extra: 1709/1635,
  35084. bottom: 118/1827
  35085. }
  35086. },
  35087. hand: {
  35088. height: math.unit(1.07, "feet"),
  35089. name: "Hand",
  35090. image: {
  35091. source: "./media/characters/oven-otter/hand.svg"
  35092. }
  35093. },
  35094. beans: {
  35095. height: math.unit(1.74, "feet"),
  35096. name: "Beans",
  35097. image: {
  35098. source: "./media/characters/oven-otter/beans.svg"
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Micro",
  35105. height: math.unit(0.5, "inches")
  35106. },
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(5 + 8/12, "feet"),
  35110. default: true
  35111. },
  35112. {
  35113. name: "Macro",
  35114. height: math.unit(250, "feet")
  35115. },
  35116. {
  35117. name: "Really High",
  35118. height: math.unit(420, "feet")
  35119. },
  35120. ]
  35121. ))
  35122. characterMakers.push(() => makeCharacter(
  35123. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35124. {
  35125. front: {
  35126. height: math.unit(5, "meters"),
  35127. weight: math.unit(292000000000000, "kg"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/devourer/front.svg",
  35131. extra: 1800/1733,
  35132. bottom: 211/2011
  35133. }
  35134. },
  35135. maw: {
  35136. height: math.unit(1.1, "meter"),
  35137. name: "Maw",
  35138. image: {
  35139. source: "./media/characters/devourer/maw.svg"
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Small",
  35146. height: math.unit(3, "meters")
  35147. },
  35148. {
  35149. name: "Large",
  35150. height: math.unit(5, "meters"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35157. {
  35158. front: {
  35159. height: math.unit(6, "feet"),
  35160. weight: math.unit(400, "lb"),
  35161. name: "Front",
  35162. image: {
  35163. source: "./media/characters/ellarby/front.svg",
  35164. extra: 1909/1763,
  35165. bottom: 80/1989
  35166. }
  35167. },
  35168. back: {
  35169. height: math.unit(6, "feet"),
  35170. weight: math.unit(400, "lb"),
  35171. name: "Back",
  35172. image: {
  35173. source: "./media/characters/ellarby/back.svg",
  35174. extra: 1914/1784,
  35175. bottom: 172/2086
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Mischief",
  35182. height: math.unit(18, "inches")
  35183. },
  35184. {
  35185. name: "Trouble",
  35186. height: math.unit(12, "feet")
  35187. },
  35188. {
  35189. name: "Havoc",
  35190. height: math.unit(200, "feet"),
  35191. default: true
  35192. },
  35193. {
  35194. name: "Pandemonium",
  35195. height: math.unit(1, "mile")
  35196. },
  35197. {
  35198. name: "Catastrophe",
  35199. height: math.unit(100, "miles")
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35205. {
  35206. front: {
  35207. height: math.unit(4.7, "meters"),
  35208. weight: math.unit(6500, "kg"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/vex/front.svg",
  35212. extra: 1288/1140,
  35213. bottom: 100/1388
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(4.7, "meters"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35227. {
  35228. normal: {
  35229. height: math.unit(6, "feet"),
  35230. weight: math.unit(350, "lb"),
  35231. name: "Normal",
  35232. image: {
  35233. source: "./media/characters/teshy/normal.svg",
  35234. extra: 1795/1735,
  35235. bottom: 16/1811
  35236. }
  35237. },
  35238. monsterFront: {
  35239. height: math.unit(12, "feet"),
  35240. weight: math.unit(4700, "lb"),
  35241. name: "Monster (Front)",
  35242. image: {
  35243. source: "./media/characters/teshy/monster-front.svg",
  35244. extra: 2042/2034,
  35245. bottom: 128/2170
  35246. }
  35247. },
  35248. monsterSide: {
  35249. height: math.unit(12, "feet"),
  35250. weight: math.unit(4700, "lb"),
  35251. name: "Monster (Side)",
  35252. image: {
  35253. source: "./media/characters/teshy/monster-side.svg",
  35254. extra: 2067/2056,
  35255. bottom: 70/2137
  35256. }
  35257. },
  35258. monsterBack: {
  35259. height: math.unit(12, "feet"),
  35260. weight: math.unit(4700, "lb"),
  35261. name: "Monster (Back)",
  35262. image: {
  35263. source: "./media/characters/teshy/monster-back.svg",
  35264. extra: 1921/1914,
  35265. bottom: 171/2092
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Normal",
  35272. height: math.unit(6, "feet"),
  35273. default: true
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35279. {
  35280. front: {
  35281. height: math.unit(6, "feet"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/ramey/front.svg",
  35285. extra: 790/787,
  35286. bottom: 27/817
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(6, "feet"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35300. {
  35301. front: {
  35302. height: math.unit(5 + 5/12, "feet"),
  35303. weight: math.unit(120, "lb"),
  35304. name: "Front",
  35305. image: {
  35306. source: "./media/characters/phirae/front.svg",
  35307. extra: 2491/2436,
  35308. bottom: 38/2529
  35309. }
  35310. },
  35311. },
  35312. [
  35313. {
  35314. name: "Normal",
  35315. height: math.unit(5 + 5/12, "feet"),
  35316. default: true
  35317. },
  35318. ]
  35319. ))
  35320. characterMakers.push(() => makeCharacter(
  35321. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35322. {
  35323. front: {
  35324. height: math.unit(5 + 3/12, "feet"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/stagglas/front.svg",
  35328. extra: 962/882,
  35329. bottom: 53/1015
  35330. }
  35331. },
  35332. feral: {
  35333. height: math.unit(335, "cm"),
  35334. name: "Feral",
  35335. image: {
  35336. source: "./media/characters/stagglas/feral.svg",
  35337. extra: 1732/1090,
  35338. bottom: 48/1780
  35339. }
  35340. },
  35341. },
  35342. [
  35343. {
  35344. name: "Normal",
  35345. height: math.unit(5 + 3/12, "feet"),
  35346. default: true
  35347. },
  35348. ]
  35349. ))
  35350. characterMakers.push(() => makeCharacter(
  35351. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35352. {
  35353. front: {
  35354. height: math.unit(5 + 4/12, "feet"),
  35355. weight: math.unit(145, "lb"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/starra/front.svg",
  35359. extra: 1790/1691,
  35360. bottom: 91/1881
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(5 + 4/12, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(2.2, "meters"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35380. extra: 1194/1005,
  35381. bottom: 25/1219
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(2.2, "meters"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35395. {
  35396. side: {
  35397. height: math.unit(8 + 2/12, "feet"),
  35398. weight: math.unit(1240, "lb"),
  35399. name: "Side",
  35400. image: {
  35401. source: "./media/characters/mika-valentine/side.svg",
  35402. extra: 2670/2501,
  35403. bottom: 250/2920
  35404. }
  35405. },
  35406. },
  35407. [
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(8 + 2/12, "feet"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(7 + 2/12, "feet"),
  35420. name: "Front",
  35421. image: {
  35422. source: "./media/characters/xoltol/front.svg",
  35423. extra: 2212/2124,
  35424. bottom: 84/2296
  35425. }
  35426. },
  35427. side: {
  35428. height: math.unit(7 + 2/12, "feet"),
  35429. name: "Side",
  35430. image: {
  35431. source: "./media/characters/xoltol/side.svg",
  35432. extra: 2273/2197,
  35433. bottom: 26/2299
  35434. }
  35435. },
  35436. hand: {
  35437. height: math.unit(2.5, "feet"),
  35438. name: "Hand",
  35439. image: {
  35440. source: "./media/characters/xoltol/hand.svg"
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Small-ish",
  35447. height: math.unit(5 + 11/12, "feet")
  35448. },
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(7 + 2/12, "feet")
  35452. },
  35453. {
  35454. name: "\"Macro\"",
  35455. height: math.unit(14 + 9/12, "feet"),
  35456. default: true
  35457. },
  35458. {
  35459. name: "Alternate Height",
  35460. height: math.unit(20, "feet")
  35461. },
  35462. {
  35463. name: "Actually Macro",
  35464. height: math.unit(100, "feet")
  35465. },
  35466. ]
  35467. ))
  35468. characterMakers.push(() => makeCharacter(
  35469. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35470. {
  35471. front: {
  35472. height: math.unit(5 + 2/12, "feet"),
  35473. name: "Front",
  35474. image: {
  35475. source: "./media/characters/kotetsu-redwood/front.svg",
  35476. extra: 1053/942,
  35477. bottom: 60/1113
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(5 + 2/12, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35491. {
  35492. front: {
  35493. height: math.unit(2.4, "meters"),
  35494. weight: math.unit(125, "kg"),
  35495. name: "Front",
  35496. image: {
  35497. source: "./media/characters/lilith/front.svg",
  35498. extra: 1590/1513,
  35499. bottom: 203/1793
  35500. }
  35501. },
  35502. },
  35503. [
  35504. {
  35505. name: "Humanoid",
  35506. height: math.unit(2.4, "meters")
  35507. },
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(6, "meters"),
  35511. default: true
  35512. },
  35513. {
  35514. name: "Largest",
  35515. height: math.unit(55, "meters")
  35516. },
  35517. ]
  35518. ))
  35519. characterMakers.push(() => makeCharacter(
  35520. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35521. {
  35522. front: {
  35523. height: math.unit(8 + 4/12, "feet"),
  35524. weight: math.unit(535, "lb"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/beh'kah-bolger/front.svg",
  35528. extra: 1660/1603,
  35529. bottom: 37/1697
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(8 + 4/12, "feet"),
  35537. default: true
  35538. },
  35539. {
  35540. name: "Kaiju",
  35541. height: math.unit(250, "feet")
  35542. },
  35543. {
  35544. name: "Still Growing",
  35545. height: math.unit(10, "miles")
  35546. },
  35547. {
  35548. name: "Continental",
  35549. height: math.unit(5000, "miles")
  35550. },
  35551. {
  35552. name: "Final Form",
  35553. height: math.unit(2500000, "miles")
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(7 + 2/12, "feet"),
  35562. weight: math.unit(230, "kg"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/tatyana-milewska/front.svg",
  35566. extra: 1199/1150,
  35567. bottom: 86/1285
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(7 + 2/12, "feet"),
  35575. default: true
  35576. },
  35577. {
  35578. name: "Big",
  35579. height: math.unit(12, "feet")
  35580. },
  35581. {
  35582. name: "Minimacro",
  35583. height: math.unit(20, "feet")
  35584. },
  35585. {
  35586. name: "Macro",
  35587. height: math.unit(120, "feet")
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(7 + 8/12, "feet"),
  35596. weight: math.unit(152, "kg"),
  35597. name: "Front",
  35598. image: {
  35599. source: "./media/characters/helen-arri/front.svg",
  35600. extra: 440/423,
  35601. bottom: 14/454
  35602. }
  35603. },
  35604. back: {
  35605. height: math.unit(7 + 8/12, "feet"),
  35606. weight: math.unit(152, "kg"),
  35607. name: "Back",
  35608. image: {
  35609. source: "./media/characters/helen-arri/back.svg",
  35610. extra: 443/426,
  35611. bottom: 8/451
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(7 + 8/12, "feet"),
  35619. default: true
  35620. },
  35621. {
  35622. name: "Big",
  35623. height: math.unit(14, "feet")
  35624. },
  35625. {
  35626. name: "Minimacro",
  35627. height: math.unit(24, "feet")
  35628. },
  35629. {
  35630. name: "Macro",
  35631. height: math.unit(140, "feet")
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(6, "meters"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/ehanu-rehu/front.svg",
  35643. extra: 1800/1800,
  35644. bottom: 59/1859
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(6, "meters"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(7 + 3/12, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/renholder/front.svg",
  35664. extra: 3096/2960,
  35665. bottom: 250/3346
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal Bat",
  35672. height: math.unit(7 + 3/12, "feet"),
  35673. default: true
  35674. },
  35675. {
  35676. name: "Slightly Tall Bat",
  35677. height: math.unit(100, "feet")
  35678. },
  35679. {
  35680. name: "Big Bat",
  35681. height: math.unit(1000, "feet")
  35682. },
  35683. {
  35684. name: "City-Sized Bat",
  35685. height: math.unit(200000, "feet")
  35686. },
  35687. {
  35688. name: "Bigger Bat",
  35689. height: math.unit(10000, "miles")
  35690. },
  35691. {
  35692. name: "Solar Sized Bat",
  35693. height: math.unit(100, "AU")
  35694. },
  35695. {
  35696. name: "Galactic Bat",
  35697. height: math.unit(200000, "lightyears")
  35698. },
  35699. {
  35700. name: "Universally Known Bat",
  35701. height: math.unit(1, "universe")
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(6 + 11/12, "feet"),
  35710. weight: math.unit(250, "lb"),
  35711. name: "Front",
  35712. image: {
  35713. source: "./media/characters/cookiecat/front.svg",
  35714. extra: 893/827,
  35715. bottom: 14/907
  35716. }
  35717. },
  35718. },
  35719. [
  35720. {
  35721. name: "Micro",
  35722. height: math.unit(3, "inches")
  35723. },
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(6 + 11/12, "feet"),
  35727. default: true
  35728. },
  35729. {
  35730. name: "Macro",
  35731. height: math.unit(100, "feet")
  35732. },
  35733. {
  35734. name: "Macro+",
  35735. height: math.unit(404, "feet")
  35736. },
  35737. {
  35738. name: "Megamacro",
  35739. height: math.unit(165, "miles")
  35740. },
  35741. {
  35742. name: "Planetary",
  35743. height: math.unit(4600, "miles")
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(10 + 3/12, "feet"),
  35752. weight: math.unit(1500, "lb"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/tux-kusanagi/front.svg",
  35756. extra: 944/840,
  35757. bottom: 39/983
  35758. }
  35759. },
  35760. back: {
  35761. height: math.unit(10 + 3/12, "feet"),
  35762. weight: math.unit(1500, "lb"),
  35763. name: "Back",
  35764. image: {
  35765. source: "./media/characters/tux-kusanagi/back.svg",
  35766. extra: 941/842,
  35767. bottom: 28/969
  35768. }
  35769. },
  35770. rump: {
  35771. height: math.unit(5.25, "feet"),
  35772. name: "Rump",
  35773. image: {
  35774. source: "./media/characters/tux-kusanagi/rump.svg"
  35775. }
  35776. },
  35777. beak: {
  35778. height: math.unit(1.54, "feet"),
  35779. name: "Beak",
  35780. image: {
  35781. source: "./media/characters/tux-kusanagi/beak.svg"
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(10 + 3/12, "feet"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35795. {
  35796. front: {
  35797. height: math.unit(58, "feet"),
  35798. weight: math.unit(200, "tons"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/uzarmazari/front.svg",
  35802. extra: 1575/1455,
  35803. bottom: 152/1727
  35804. }
  35805. },
  35806. back: {
  35807. height: math.unit(58, "feet"),
  35808. weight: math.unit(200, "tons"),
  35809. name: "Back",
  35810. image: {
  35811. source: "./media/characters/uzarmazari/back.svg",
  35812. extra: 1585/1510,
  35813. bottom: 157/1742
  35814. }
  35815. },
  35816. head: {
  35817. height: math.unit(26, "feet"),
  35818. name: "Head",
  35819. image: {
  35820. source: "./media/characters/uzarmazari/head.svg"
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(58, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35834. {
  35835. side: {
  35836. height: math.unit(15, "feet"),
  35837. name: "Side",
  35838. image: {
  35839. source: "./media/characters/akitu/side.svg",
  35840. extra: 1421/1321,
  35841. bottom: 157/1578
  35842. }
  35843. },
  35844. front: {
  35845. height: math.unit(15, "feet"),
  35846. name: "Front",
  35847. image: {
  35848. source: "./media/characters/akitu/front.svg",
  35849. extra: 1435/1326,
  35850. bottom: 232/1667
  35851. }
  35852. },
  35853. },
  35854. [
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(15, "feet"),
  35858. default: true
  35859. },
  35860. ]
  35861. ))
  35862. characterMakers.push(() => makeCharacter(
  35863. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35864. {
  35865. front: {
  35866. height: math.unit(10 + 8/12, "feet"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/azalie-croixland/front.svg",
  35870. extra: 1972/1856,
  35871. bottom: 31/2003
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Original Height",
  35878. height: math.unit(5 + 4/12, "feet")
  35879. },
  35880. {
  35881. name: "Normal Height",
  35882. height: math.unit(10 + 8/12, "feet"),
  35883. default: true
  35884. },
  35885. ]
  35886. ))
  35887. characterMakers.push(() => makeCharacter(
  35888. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35889. {
  35890. side: {
  35891. height: math.unit(7 + 1/12, "feet"),
  35892. weight: math.unit(245, "lb"),
  35893. name: "Side",
  35894. image: {
  35895. source: "./media/characters/kavus-kazian/side.svg",
  35896. extra: 349/342,
  35897. bottom: 15/364
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(7 + 1/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35911. {
  35912. normalFront: {
  35913. height: math.unit(5 + 11/12, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/moonlight-rose/normal-front.svg",
  35917. extra: 1980/1825,
  35918. bottom: 18/1998
  35919. },
  35920. form: "normal",
  35921. default: true
  35922. },
  35923. normalBack: {
  35924. height: math.unit(5 + 11/12, "feet"),
  35925. name: "Back",
  35926. image: {
  35927. source: "./media/characters/moonlight-rose/normal-back.svg",
  35928. extra: 2010/1839,
  35929. bottom: 10/2020
  35930. },
  35931. form: "normal"
  35932. },
  35933. demonFront: {
  35934. height: math.unit(1.5, "earths"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/moonlight-rose/demon.svg",
  35938. extra: 1400/1294,
  35939. bottom: 45/1445
  35940. },
  35941. form: "demon",
  35942. default: true
  35943. },
  35944. terraFront: {
  35945. height: math.unit(1.5, "earths"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/moonlight-rose/terra.svg"
  35949. },
  35950. form: "terra",
  35951. default: true
  35952. },
  35953. jupiterFront: {
  35954. height: math.unit(69911*2, "km"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35958. extra: 1367/1286,
  35959. bottom: 55/1422
  35960. },
  35961. form: "jupiter",
  35962. default: true
  35963. },
  35964. neptuneFront: {
  35965. height: math.unit(24622*2, "feet"),
  35966. name: "Front",
  35967. image: {
  35968. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35969. extra: 1851/1712,
  35970. bottom: 0/1851
  35971. },
  35972. form: "neptune",
  35973. default: true
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "\"Natural\" Height",
  35979. height: math.unit(5 + 11/12, "feet"),
  35980. form: "normal"
  35981. },
  35982. {
  35983. name: "Smallest comfortable size",
  35984. height: math.unit(40, "meters"),
  35985. form: "normal"
  35986. },
  35987. {
  35988. name: "Common size",
  35989. height: math.unit(50, "km"),
  35990. form: "normal",
  35991. default: true
  35992. },
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(1.5, "earths"),
  35996. form: "demon",
  35997. default: true
  35998. },
  35999. {
  36000. name: "Universal",
  36001. height: math.unit(15, "universes"),
  36002. form: "demon"
  36003. },
  36004. {
  36005. name: "Earth",
  36006. height: math.unit(1.5, "earths"),
  36007. form: "terra",
  36008. default: true
  36009. },
  36010. {
  36011. name: "Super Earth",
  36012. height: math.unit(67.5, "earths"),
  36013. form: "terra"
  36014. },
  36015. {
  36016. name: "Doesn't fit in a solar system...",
  36017. height: math.unit(1, "galaxy"),
  36018. form: "terra"
  36019. },
  36020. {
  36021. name: "Saturn",
  36022. height: math.unit(58232*2, "km"),
  36023. form: "jupiter"
  36024. },
  36025. {
  36026. name: "Jupiter",
  36027. height: math.unit(69911*2, "km"),
  36028. form: "jupiter",
  36029. default: true
  36030. },
  36031. {
  36032. name: "HD 100546 b",
  36033. height: math.unit(482938, "km"),
  36034. form: "jupiter"
  36035. },
  36036. {
  36037. name: "Enceladus",
  36038. height: math.unit(513*2, "km"),
  36039. form: "neptune"
  36040. },
  36041. {
  36042. name: "Europe",
  36043. height: math.unit(1560*2, "km"),
  36044. form: "neptune"
  36045. },
  36046. {
  36047. name: "Neptune",
  36048. height: math.unit(24622*2, "km"),
  36049. form: "neptune",
  36050. default: true
  36051. },
  36052. {
  36053. name: "CoRoT-9b",
  36054. height: math.unit(75067*2, "km"),
  36055. form: "neptune"
  36056. },
  36057. ],
  36058. {
  36059. "normal": {
  36060. name: "Normal",
  36061. default: true
  36062. },
  36063. "demon": {
  36064. name: "Demon"
  36065. },
  36066. "terra": {
  36067. name: "Terra"
  36068. },
  36069. "jupiter": {
  36070. name: "Jupiter"
  36071. },
  36072. "neptune": {
  36073. name: "Neptune"
  36074. }
  36075. }
  36076. ))
  36077. characterMakers.push(() => makeCharacter(
  36078. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36079. {
  36080. front: {
  36081. height: math.unit(16, "feet"),
  36082. weight: math.unit(610, "kg"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/huckle/front.svg",
  36086. extra: 1731/1625,
  36087. bottom: 33/1764
  36088. }
  36089. },
  36090. back: {
  36091. height: math.unit(16, "feet"),
  36092. weight: math.unit(610, "kg"),
  36093. name: "Back",
  36094. image: {
  36095. source: "./media/characters/huckle/back.svg",
  36096. extra: 1738/1651,
  36097. bottom: 37/1775
  36098. }
  36099. },
  36100. laughing: {
  36101. height: math.unit(3.75, "feet"),
  36102. name: "Laughing",
  36103. image: {
  36104. source: "./media/characters/huckle/laughing.svg"
  36105. }
  36106. },
  36107. angry: {
  36108. height: math.unit(4.15, "feet"),
  36109. name: "Angry",
  36110. image: {
  36111. source: "./media/characters/huckle/angry.svg"
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(16, "feet"),
  36119. default: true
  36120. },
  36121. {
  36122. name: "Mini Macro",
  36123. height: math.unit(463, "feet")
  36124. },
  36125. {
  36126. name: "Macro",
  36127. height: math.unit(1680, "meters")
  36128. },
  36129. {
  36130. name: "Mega Macro",
  36131. height: math.unit(175, "km")
  36132. },
  36133. {
  36134. name: "Terra Macro",
  36135. height: math.unit(32, "gigameters")
  36136. },
  36137. {
  36138. name: "Multiverse+",
  36139. height: math.unit(2.56e23, "yottameters")
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(6 + 9/12, "feet"),
  36148. weight: math.unit(280, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/candy/front.svg",
  36152. extra: 234/217,
  36153. bottom: 11/245
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Really Small",
  36160. height: math.unit(0.1, "nm")
  36161. },
  36162. {
  36163. name: "Micro",
  36164. height: math.unit(2, "inches")
  36165. },
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(6 + 9/12, "feet"),
  36169. default: true
  36170. },
  36171. {
  36172. name: "Small Macro",
  36173. height: math.unit(69, "feet")
  36174. },
  36175. {
  36176. name: "Macro",
  36177. height: math.unit(160, "feet")
  36178. },
  36179. {
  36180. name: "Megamacro",
  36181. height: math.unit(22000, "miles")
  36182. },
  36183. {
  36184. name: "Gigamacro",
  36185. height: math.unit(50000, "miles")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(4, "feet"),
  36194. weight: math.unit(90, "lb"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/joey-mcdonald/front.svg",
  36198. extra: 1059/852,
  36199. bottom: 33/1092
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(4, "feet"),
  36204. weight: math.unit(90, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/joey-mcdonald/back.svg",
  36208. extra: 1077/879,
  36209. bottom: 5/1082
  36210. }
  36211. },
  36212. frontKobold: {
  36213. height: math.unit(4, "feet"),
  36214. weight: math.unit(100, "lb"),
  36215. name: "Front-kobold",
  36216. image: {
  36217. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36218. extra: 1480/1367,
  36219. bottom: 0/1480
  36220. }
  36221. },
  36222. backKobold: {
  36223. height: math.unit(4, "feet"),
  36224. weight: math.unit(100, "lb"),
  36225. name: "Back-kobold",
  36226. image: {
  36227. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36228. extra: 1449/1361,
  36229. bottom: 0/1449
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Normal",
  36236. height: math.unit(4, "feet"),
  36237. default: true
  36238. },
  36239. ]
  36240. ))
  36241. characterMakers.push(() => makeCharacter(
  36242. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36243. {
  36244. front: {
  36245. height: math.unit(12 + 6/12, "feet"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/kass-lockheed/front.svg",
  36249. extra: 354/343,
  36250. bottom: 9/363
  36251. }
  36252. },
  36253. back: {
  36254. height: math.unit(12 + 6/12, "feet"),
  36255. name: "Back",
  36256. image: {
  36257. source: "./media/characters/kass-lockheed/back.svg",
  36258. extra: 364/352,
  36259. bottom: 3/367
  36260. }
  36261. },
  36262. dick: {
  36263. height: math.unit(3.12, "feet"),
  36264. name: "Dick",
  36265. image: {
  36266. source: "./media/characters/kass-lockheed/dick.svg"
  36267. }
  36268. },
  36269. head: {
  36270. height: math.unit(2.6, "feet"),
  36271. name: "Head",
  36272. image: {
  36273. source: "./media/characters/kass-lockheed/head.svg"
  36274. }
  36275. },
  36276. bleh: {
  36277. height: math.unit(2.85, "feet"),
  36278. name: "Bleh",
  36279. image: {
  36280. source: "./media/characters/kass-lockheed/bleh.svg"
  36281. }
  36282. },
  36283. smug: {
  36284. height: math.unit(2.85, "feet"),
  36285. name: "Smug",
  36286. image: {
  36287. source: "./media/characters/kass-lockheed/smug.svg"
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(12 + 6/12, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(6 + 2/12, "feet"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/taylor/front.svg",
  36307. extra: 639/495,
  36308. bottom: 12/651
  36309. }
  36310. },
  36311. },
  36312. [
  36313. {
  36314. name: "Normal",
  36315. height: math.unit(6 + 2/12, "feet"),
  36316. default: true
  36317. },
  36318. {
  36319. name: "Big",
  36320. height: math.unit(15, "feet")
  36321. },
  36322. {
  36323. name: "Lorg",
  36324. height: math.unit(80, "feet")
  36325. },
  36326. {
  36327. name: "Too Lorg",
  36328. height: math.unit(120, "feet")
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(15, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/kaizer/front.svg",
  36340. extra: 1612/1436,
  36341. bottom: 43/1655
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(15, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(2, "feet"),
  36358. weight: math.unit(30, "lb"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/sandy/front.svg",
  36362. extra: 1439/1307,
  36363. bottom: 194/1633
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(2, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(3, "feet"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/mellvi/front.svg",
  36383. extra: 1831/1630,
  36384. bottom: 58/1889
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(3, "feet"),
  36392. default: true
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36398. {
  36399. front: {
  36400. height: math.unit(5 + 11/12, "feet"),
  36401. weight: math.unit(200, "lb"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/shirou/front.svg",
  36405. extra: 2491/2383,
  36406. bottom: 189/2680
  36407. }
  36408. },
  36409. back: {
  36410. height: math.unit(5 + 11/12, "feet"),
  36411. weight: math.unit(200, "lb"),
  36412. name: "Back",
  36413. image: {
  36414. source: "./media/characters/shirou/back.svg",
  36415. extra: 2554/2450,
  36416. bottom: 76/2630
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(5 + 11/12, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(6 + 3/12, "feet"),
  36433. weight: math.unit(177, "lb"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/noryu/front.svg",
  36437. extra: 973/885,
  36438. bottom: 10/983
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(6 + 3/12, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(5 + 6/12, "feet"),
  36455. weight: math.unit(170, "lb"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/mevolas-rubenido/front.svg",
  36459. extra: 2109/1901,
  36460. bottom: 96/2205
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(5 + 6/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(100, "feet"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/dee/front.svg",
  36480. extra: 2153/2036,
  36481. bottom: 59/2212
  36482. }
  36483. },
  36484. back: {
  36485. height: math.unit(100, "feet"),
  36486. name: "Back",
  36487. image: {
  36488. source: "./media/characters/dee/back.svg",
  36489. extra: 2183/2058,
  36490. bottom: 75/2258
  36491. }
  36492. },
  36493. foot: {
  36494. height: math.unit(19.43, "feet"),
  36495. name: "Foot",
  36496. image: {
  36497. source: "./media/characters/dee/foot.svg"
  36498. }
  36499. },
  36500. hoof: {
  36501. height: math.unit(20.6, "feet"),
  36502. name: "Hoof",
  36503. image: {
  36504. source: "./media/characters/dee/hoof.svg"
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Macro",
  36511. height: math.unit(100, "feet"),
  36512. default: true
  36513. },
  36514. ]
  36515. ))
  36516. characterMakers.push(() => makeCharacter(
  36517. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36518. {
  36519. front: {
  36520. height: math.unit(5 + 6/12, "feet"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/teh/front.svg",
  36524. extra: 1002/847,
  36525. bottom: 62/1064
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(5 + 6/12, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36539. {
  36540. side: {
  36541. height: math.unit(6 + 1/12, "feet"),
  36542. weight: math.unit(204, "lb"),
  36543. name: "Side",
  36544. image: {
  36545. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36546. extra: 974/775,
  36547. bottom: 169/1143
  36548. }
  36549. },
  36550. sitting: {
  36551. height: math.unit(6 + 2/12, "feet"),
  36552. weight: math.unit(204, "lb"),
  36553. name: "Sitting",
  36554. image: {
  36555. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36556. extra: 1175/964,
  36557. bottom: 378/1553
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(6 + 1/12, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(6, "inches"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/tululi/front.svg",
  36577. extra: 1997/1876,
  36578. bottom: 20/2017
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(6, "inches"),
  36586. default: true
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(4 + 1/12, "feet"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/star/front.svg",
  36598. extra: 1493/1189,
  36599. bottom: 48/1541
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(4 + 1/12, "feet"),
  36607. default: true
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(6 + 3/12, "feet"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/comet/front.svg",
  36619. extra: 1681/1462,
  36620. bottom: 26/1707
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(6 + 3/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(950, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/vortex/front.svg",
  36640. extra: 1497/1434,
  36641. bottom: 56/1553
  36642. }
  36643. },
  36644. maw: {
  36645. height: math.unit(285, "feet"),
  36646. name: "Maw",
  36647. image: {
  36648. source: "./media/characters/vortex/maw.svg"
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Macro",
  36655. height: math.unit(950, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(600, "feet"),
  36665. weight: math.unit(0.02, "grams"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/doodle/front.svg",
  36669. extra: 1578/1413,
  36670. bottom: 37/1615
  36671. }
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "Macro",
  36677. height: math.unit(600, "feet"),
  36678. default: true
  36679. },
  36680. ]
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(6 + 6/12, "feet"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/jai/front.svg",
  36690. extra: 1645/1534,
  36691. bottom: 115/1760
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(6 + 6/12, "feet"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(6 + 8/12, "feet"),
  36708. name: "Front",
  36709. image: {
  36710. source: "./media/characters/pixel/front.svg",
  36711. extra: 1900/1735,
  36712. bottom: 63/1963
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(6 + 8/12, "feet"),
  36720. default: true
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36726. {
  36727. back: {
  36728. height: math.unit(4 + 1/12, "feet"),
  36729. weight: math.unit(75, "lb"),
  36730. name: "Back",
  36731. image: {
  36732. source: "./media/characters/rhett/back.svg",
  36733. extra: 930/878,
  36734. bottom: 25/955
  36735. }
  36736. },
  36737. front: {
  36738. height: math.unit(4 + 1/12, "feet"),
  36739. weight: math.unit(75, "lb"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/rhett/front.svg",
  36743. extra: 1682/1586,
  36744. bottom: 92/1774
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Micro",
  36751. height: math.unit(8, "inches")
  36752. },
  36753. {
  36754. name: "Tiny",
  36755. height: math.unit(2, "feet")
  36756. },
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(4 + 1/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(3 + 3/12, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/penny/front.svg",
  36772. extra: 1406/1311,
  36773. bottom: 26/1432
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(3 + 3/12, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(4 + 11/12, "feet"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/monty/front.svg",
  36793. extra: 1479/1209,
  36794. bottom: 0/1479
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(4 + 11/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(8 + 4/12, "feet"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/sterling/front.svg",
  36814. extra: 1420/1236,
  36815. bottom: 27/1447
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(8 + 4/12, "feet"),
  36823. default: true
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36829. {
  36830. front: {
  36831. height: math.unit(15, "feet"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/marble/front.svg",
  36835. extra: 973/937,
  36836. bottom: 32/1005
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(15, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36850. {
  36851. front: {
  36852. height: math.unit(3, "inches"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/powder/front.svg",
  36856. extra: 1504/1334,
  36857. bottom: 518/2022
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(3, "inches"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(4 + 5/12, "feet"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/joey-raccoon/front.svg",
  36877. extra: 1273/1197,
  36878. bottom: 0/1273
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(4 + 5/12, "feet"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(8 + 4/12, "feet"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/vick/front.svg",
  36898. extra: 2187/2118,
  36899. bottom: 47/2234
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(8 + 4/12, "feet"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36913. {
  36914. front: {
  36915. height: math.unit(5 + 5/12, "feet"),
  36916. name: "Front",
  36917. image: {
  36918. source: "./media/characters/mitsy/front.svg",
  36919. extra: 1842/1695,
  36920. bottom: 0/1842
  36921. }
  36922. },
  36923. },
  36924. [
  36925. {
  36926. name: "Normal",
  36927. height: math.unit(5 + 5/12, "feet"),
  36928. default: true
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36934. {
  36935. front: {
  36936. height: math.unit(6 + 3/12, "feet"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/silvy/front.svg",
  36940. extra: 1995/1836,
  36941. bottom: 225/2220
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(6 + 3/12, "feet"),
  36949. default: true
  36950. },
  36951. ]
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36955. {
  36956. front: {
  36957. height: math.unit(3 + 8/12, "feet"),
  36958. name: "Front",
  36959. image: {
  36960. source: "./media/characters/rodney/front.svg",
  36961. extra: 1956/1747,
  36962. bottom: 31/1987
  36963. }
  36964. },
  36965. frontDressed: {
  36966. height: math.unit(2.9, "feet"),
  36967. name: "Front (Dressed)",
  36968. image: {
  36969. source: "./media/characters/rodney/front-dressed.svg",
  36970. extra: 1382/1241,
  36971. bottom: 385/1767
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(3 + 8/12, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(5 + 9/12, "feet"),
  36988. weight: math.unit(194, "lbs"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/zakail-sudekai/front.svg",
  36992. extra: 2696/2533,
  36993. bottom: 248/2944
  36994. }
  36995. },
  36996. maw: {
  36997. height: math.unit(1.35, "feet"),
  36998. name: "Maw",
  36999. image: {
  37000. source: "./media/characters/zakail-sudekai/maw.svg"
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(5 + 9/12, "feet"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(8 + 4/12, "feet"),
  37017. weight: math.unit(1200, "lb"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/eleanor/front.svg",
  37021. extra: 1226/1192,
  37022. bottom: 52/1278
  37023. }
  37024. },
  37025. back: {
  37026. height: math.unit(8 + 4/12, "feet"),
  37027. weight: math.unit(1200, "lb"),
  37028. name: "Back",
  37029. image: {
  37030. source: "./media/characters/eleanor/back.svg",
  37031. extra: 1242/1184,
  37032. bottom: 60/1302
  37033. }
  37034. },
  37035. head: {
  37036. height: math.unit(2.62, "feet"),
  37037. name: "Head",
  37038. image: {
  37039. source: "./media/characters/eleanor/head.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(8 + 4/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(8 + 4/12, "feet"),
  37056. weight: math.unit(750, "lb"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/tanya/front.svg",
  37060. extra: 1749/1615,
  37061. bottom: 33/1782
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(8 + 4/12, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(5, "feet"),
  37078. weight: math.unit(225, "lb"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/cindy/front.svg",
  37082. extra: 1320/1250,
  37083. bottom: 42/1362
  37084. }
  37085. },
  37086. frontDressed: {
  37087. height: math.unit(5, "feet"),
  37088. weight: math.unit(225, "lb"),
  37089. name: "Front (Dressed)",
  37090. image: {
  37091. source: "./media/characters/cindy/front-dressed.svg",
  37092. extra: 1320/1250,
  37093. bottom: 42/1362
  37094. }
  37095. },
  37096. back: {
  37097. height: math.unit(5, "feet"),
  37098. weight: math.unit(225, "lb"),
  37099. name: "Back",
  37100. image: {
  37101. source: "./media/characters/cindy/back.svg",
  37102. extra: 1384/1346,
  37103. bottom: 14/1398
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(5, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(6 + 9/12, "feet"),
  37120. weight: math.unit(440, "lb"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/wilbur-owen/front.svg",
  37124. extra: 1575/1448,
  37125. bottom: 72/1647
  37126. }
  37127. },
  37128. back: {
  37129. height: math.unit(6 + 9/12, "feet"),
  37130. weight: math.unit(440, "lb"),
  37131. name: "Back",
  37132. image: {
  37133. source: "./media/characters/wilbur-owen/back.svg",
  37134. extra: 1578/1445,
  37135. bottom: 36/1614
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(6 + 9/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(6 + 5/12, "feet"),
  37152. weight: math.unit(650, "lb"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/keegan/front.svg",
  37156. extra: 2387/2198,
  37157. bottom: 33/2420
  37158. }
  37159. },
  37160. side: {
  37161. height: math.unit(6 + 5/12, "feet"),
  37162. weight: math.unit(650, "lb"),
  37163. name: "Side",
  37164. image: {
  37165. source: "./media/characters/keegan/side.svg",
  37166. extra: 2390/2202,
  37167. bottom: 47/2437
  37168. }
  37169. },
  37170. back: {
  37171. height: math.unit(6 + 5/12, "feet"),
  37172. weight: math.unit(650, "lb"),
  37173. name: "Back",
  37174. image: {
  37175. source: "./media/characters/keegan/back.svg",
  37176. extra: 2418/2268,
  37177. bottom: 15/2433
  37178. }
  37179. },
  37180. frontSfw: {
  37181. height: math.unit(6 + 5/12, "feet"),
  37182. weight: math.unit(650, "lb"),
  37183. name: "Front (SFW)",
  37184. image: {
  37185. source: "./media/characters/keegan/front-sfw.svg",
  37186. extra: 2387/2198,
  37187. bottom: 33/2420
  37188. }
  37189. },
  37190. beans: {
  37191. height: math.unit(1.85, "feet"),
  37192. name: "Beans",
  37193. image: {
  37194. source: "./media/characters/keegan/beans.svg"
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(6 + 5/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(9, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/colton/front.svg",
  37214. extra: 1589/1326,
  37215. bottom: 139/1728
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(9, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(2 + 9/12, "feet"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/bora/front.svg",
  37235. extra: 1265/1250,
  37236. bottom: 24/1289
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(2 + 9/12, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(8, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/myu-myu/front.svg",
  37256. extra: 1949/1857,
  37257. bottom: 90/2039
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(8, "feet"),
  37265. default: true
  37266. },
  37267. {
  37268. name: "Big",
  37269. height: math.unit(15, "feet")
  37270. },
  37271. {
  37272. name: "BIG",
  37273. height: math.unit(25, "feet")
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37279. {
  37280. side: {
  37281. height: math.unit(7 + 5/12, "feet"),
  37282. weight: math.unit(2800, "lb"),
  37283. name: "Side",
  37284. image: {
  37285. source: "./media/characters/haloren/side.svg",
  37286. extra: 1793/409,
  37287. bottom: 59/1852
  37288. }
  37289. },
  37290. frontPaw: {
  37291. height: math.unit(2.36, "feet"),
  37292. name: "Front paw",
  37293. image: {
  37294. source: "./media/characters/haloren/front-paw.svg"
  37295. }
  37296. },
  37297. hindPaw: {
  37298. height: math.unit(3.18, "feet"),
  37299. name: "Hind paw",
  37300. image: {
  37301. source: "./media/characters/haloren/hind-paw.svg"
  37302. }
  37303. },
  37304. maw: {
  37305. height: math.unit(5.05, "feet"),
  37306. name: "Maw",
  37307. image: {
  37308. source: "./media/characters/haloren/maw.svg"
  37309. }
  37310. },
  37311. dick: {
  37312. height: math.unit(2.90, "feet"),
  37313. name: "Dick",
  37314. image: {
  37315. source: "./media/characters/haloren/dick.svg"
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(7 + 5/12, "feet"),
  37323. default: true
  37324. },
  37325. {
  37326. name: "Enhanced",
  37327. height: math.unit(14 + 3/12, "feet")
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37333. {
  37334. front: {
  37335. height: math.unit(171, "cm"),
  37336. name: "Front",
  37337. image: {
  37338. source: "./media/characters/kimmy/front.svg",
  37339. extra: 1491/1435,
  37340. bottom: 53/1544
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Small",
  37347. height: math.unit(9, "cm")
  37348. },
  37349. {
  37350. name: "Normal",
  37351. height: math.unit(171, "cm"),
  37352. default: true
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37358. {
  37359. front: {
  37360. height: math.unit(8, "feet"),
  37361. weight: math.unit(300, "lb"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/galeboomer/front.svg",
  37365. extra: 4651/4415,
  37366. bottom: 162/4813
  37367. }
  37368. },
  37369. back: {
  37370. height: math.unit(8, "feet"),
  37371. weight: math.unit(300, "lb"),
  37372. name: "Back",
  37373. image: {
  37374. source: "./media/characters/galeboomer/back.svg",
  37375. extra: 4544/4314,
  37376. bottom: 16/4560
  37377. }
  37378. },
  37379. frontAlt: {
  37380. height: math.unit(8, "feet"),
  37381. weight: math.unit(300, "lb"),
  37382. name: "Front (Alt)",
  37383. image: {
  37384. source: "./media/characters/galeboomer/front-alt.svg",
  37385. extra: 4458/4228,
  37386. bottom: 68/4526
  37387. }
  37388. },
  37389. maw: {
  37390. height: math.unit(1.2, "feet"),
  37391. name: "Maw",
  37392. image: {
  37393. source: "./media/characters/galeboomer/maw.svg"
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(8, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(5 + 9/12, "feet"),
  37410. weight: math.unit(120, "lb"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/chyr/front.svg",
  37414. extra: 1323/1254,
  37415. bottom: 63/1386
  37416. }
  37417. },
  37418. back: {
  37419. height: math.unit(5 + 9/12, "feet"),
  37420. weight: math.unit(120, "lb"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/chyr/back.svg",
  37424. extra: 1323/1252,
  37425. bottom: 48/1371
  37426. }
  37427. },
  37428. },
  37429. [
  37430. {
  37431. name: "Normal",
  37432. height: math.unit(5 + 9/12, "feet"),
  37433. default: true
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(7, "feet"),
  37442. weight: math.unit(310, "lb"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/solarus/front.svg",
  37446. extra: 2415/2021,
  37447. bottom: 103/2518
  37448. }
  37449. },
  37450. back: {
  37451. height: math.unit(7, "feet"),
  37452. weight: math.unit(310, "lb"),
  37453. name: "Back",
  37454. image: {
  37455. source: "./media/characters/solarus/back.svg",
  37456. extra: 2463/2089,
  37457. bottom: 79/2542
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(7, "feet"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(16, "feet"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37477. extra: 1844/1780,
  37478. bottom: 58/1902
  37479. }
  37480. },
  37481. winterCoat: {
  37482. height: math.unit(16, "feet"),
  37483. name: "Winter Coat",
  37484. image: {
  37485. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37486. extra: 1807/1775,
  37487. bottom: 69/1876
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(16, "feet"),
  37495. default: true
  37496. },
  37497. {
  37498. name: "Chicago Size",
  37499. height: math.unit(560, "feet")
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37505. {
  37506. front: {
  37507. height: math.unit(11 + 6/12, "feet"),
  37508. weight: math.unit(1366, "lb"),
  37509. name: "Front",
  37510. image: {
  37511. source: "./media/characters/lexor/front.svg",
  37512. extra: 1560/1481,
  37513. bottom: 211/1771
  37514. }
  37515. },
  37516. back: {
  37517. height: math.unit(11 + 6/12, "feet"),
  37518. weight: math.unit(1366, "lb"),
  37519. name: "Back",
  37520. image: {
  37521. source: "./media/characters/lexor/back.svg",
  37522. extra: 1614/1533,
  37523. bottom: 76/1690
  37524. }
  37525. },
  37526. maw: {
  37527. height: math.unit(3, "feet"),
  37528. name: "Maw",
  37529. image: {
  37530. source: "./media/characters/lexor/maw.svg"
  37531. }
  37532. },
  37533. dick: {
  37534. height: math.unit(2.59, "feet"),
  37535. name: "Dick",
  37536. image: {
  37537. source: "./media/characters/lexor/dick.svg"
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(11 + 6/12, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(5 + 8/12, "feet"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/magnum/front.svg",
  37557. extra: 942/855,
  37558. bottom: 26/968
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(5 + 8/12, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(18 + 4/12, "feet"),
  37575. weight: math.unit(1500, "kg"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/solas-sharpsman/front.svg",
  37579. extra: 1698/1589,
  37580. bottom: 0/1698
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(18 + 4/12, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(5 + 5/12, "feet"),
  37597. weight: math.unit(180, "lb"),
  37598. name: "Front",
  37599. image: {
  37600. source: "./media/characters/october/front.svg",
  37601. extra: 1800/1650,
  37602. bottom: 0/1800
  37603. }
  37604. },
  37605. frontNsfw: {
  37606. height: math.unit(5 + 5/12, "feet"),
  37607. weight: math.unit(180, "lb"),
  37608. name: "Front (NSFW)",
  37609. image: {
  37610. source: "./media/characters/october/front-nsfw.svg",
  37611. extra: 1392/1307,
  37612. bottom: 42/1434
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(5 + 5/12, "feet"),
  37620. default: true
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(8 + 6/12, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/essynkardi/front.svg",
  37632. extra: 1914/1846,
  37633. bottom: 22/1936
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(8 + 6/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(6 + 6/12, "feet"),
  37650. weight: math.unit(7, "lb"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/icky/front.svg",
  37654. extra: 813/782,
  37655. bottom: 66/879
  37656. }
  37657. },
  37658. back: {
  37659. height: math.unit(6 + 6/12, "feet"),
  37660. weight: math.unit(7, "lb"),
  37661. name: "Back",
  37662. image: {
  37663. source: "./media/characters/icky/back.svg",
  37664. extra: 754/735,
  37665. bottom: 56/810
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(6 + 6/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(15, "feet"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/rojas/front.svg",
  37685. extra: 1462/1408,
  37686. bottom: 95/1557
  37687. }
  37688. },
  37689. back: {
  37690. height: math.unit(15, "feet"),
  37691. name: "Back",
  37692. image: {
  37693. source: "./media/characters/rojas/back.svg",
  37694. extra: 1023/954,
  37695. bottom: 28/1051
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(15, "feet"),
  37703. default: true
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37709. {
  37710. frontHuman: {
  37711. height: math.unit(5 + 7/12, "feet"),
  37712. name: "Front (Human)",
  37713. image: {
  37714. source: "./media/characters/alek-dryagan/front-human.svg",
  37715. extra: 1687/1667,
  37716. bottom: 69/1756
  37717. }
  37718. },
  37719. backHuman: {
  37720. height: math.unit(5 + 7/12, "feet"),
  37721. name: "Back (Human)",
  37722. image: {
  37723. source: "./media/characters/alek-dryagan/back-human.svg",
  37724. extra: 1670/1649,
  37725. bottom: 65/1735
  37726. }
  37727. },
  37728. frontDemi: {
  37729. height: math.unit(65, "feet"),
  37730. name: "Front (Demi)",
  37731. image: {
  37732. source: "./media/characters/alek-dryagan/front-demi.svg",
  37733. extra: 1669/1642,
  37734. bottom: 49/1718
  37735. }
  37736. },
  37737. backDemi: {
  37738. height: math.unit(65, "feet"),
  37739. name: "Back (Demi)",
  37740. image: {
  37741. source: "./media/characters/alek-dryagan/back-demi.svg",
  37742. extra: 1658/1637,
  37743. bottom: 40/1698
  37744. }
  37745. },
  37746. mawHuman: {
  37747. height: math.unit(0.3, "feet"),
  37748. name: "Maw (Human)",
  37749. image: {
  37750. source: "./media/characters/alek-dryagan/maw-human.svg"
  37751. }
  37752. },
  37753. mawDemi: {
  37754. height: math.unit(3.8, "feet"),
  37755. name: "Maw (Demi)",
  37756. image: {
  37757. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37758. }
  37759. },
  37760. },
  37761. [
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(5 + 7/12, "feet"),
  37765. default: true
  37766. },
  37767. ]
  37768. ))
  37769. characterMakers.push(() => makeCharacter(
  37770. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37771. {
  37772. frontHuman: {
  37773. height: math.unit(5 + 2/12, "feet"),
  37774. name: "Front (Human)",
  37775. image: {
  37776. source: "./media/characters/gen/front-human.svg",
  37777. extra: 1627/1538,
  37778. bottom: 71/1698
  37779. }
  37780. },
  37781. backHuman: {
  37782. height: math.unit(5 + 2/12, "feet"),
  37783. name: "Back (Human)",
  37784. image: {
  37785. source: "./media/characters/gen/back-human.svg",
  37786. extra: 1638/1548,
  37787. bottom: 69/1707
  37788. }
  37789. },
  37790. frontDemi: {
  37791. height: math.unit(5 + 2/12, "feet"),
  37792. name: "Front (Demi)",
  37793. image: {
  37794. source: "./media/characters/gen/front-demi.svg",
  37795. extra: 1627/1538,
  37796. bottom: 71/1698
  37797. }
  37798. },
  37799. backDemi: {
  37800. height: math.unit(5 + 2/12, "feet"),
  37801. name: "Back (Demi)",
  37802. image: {
  37803. source: "./media/characters/gen/back-demi.svg",
  37804. extra: 1638/1548,
  37805. bottom: 69/1707
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(5 + 2/12, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37819. {
  37820. frontImp: {
  37821. height: math.unit(1 + 11/12, "feet"),
  37822. name: "Front (Imp)",
  37823. image: {
  37824. source: "./media/characters/max-kobold/front-imp.svg",
  37825. extra: 1238/1134,
  37826. bottom: 81/1319
  37827. }
  37828. },
  37829. backImp: {
  37830. height: math.unit(1 + 11/12, "feet"),
  37831. name: "Back (Imp)",
  37832. image: {
  37833. source: "./media/characters/max-kobold/back-imp.svg",
  37834. extra: 1334/1175,
  37835. bottom: 34/1368
  37836. }
  37837. },
  37838. frontDemi: {
  37839. height: math.unit(5 + 9/12, "feet"),
  37840. name: "Front (Demi)",
  37841. image: {
  37842. source: "./media/characters/max-kobold/front-demi.svg",
  37843. extra: 1715/1685,
  37844. bottom: 54/1769
  37845. }
  37846. },
  37847. backDemi: {
  37848. height: math.unit(5 + 9/12, "feet"),
  37849. name: "Back (Demi)",
  37850. image: {
  37851. source: "./media/characters/max-kobold/back-demi.svg",
  37852. extra: 1752/1729,
  37853. bottom: 41/1793
  37854. }
  37855. },
  37856. handImp: {
  37857. height: math.unit(0.45, "feet"),
  37858. name: "Hand (Imp)",
  37859. image: {
  37860. source: "./media/characters/max-kobold/hand.svg"
  37861. }
  37862. },
  37863. pawImp: {
  37864. height: math.unit(0.46, "feet"),
  37865. name: "Paw (Imp)",
  37866. image: {
  37867. source: "./media/characters/max-kobold/paw.svg"
  37868. }
  37869. },
  37870. handDemi: {
  37871. height: math.unit(0.80, "feet"),
  37872. name: "Hand (Demi)",
  37873. image: {
  37874. source: "./media/characters/max-kobold/hand.svg"
  37875. }
  37876. },
  37877. pawDemi: {
  37878. height: math.unit(1.1, "feet"),
  37879. name: "Paw (Demi)",
  37880. image: {
  37881. source: "./media/characters/max-kobold/paw.svg"
  37882. }
  37883. },
  37884. headImp: {
  37885. height: math.unit(1.33, "feet"),
  37886. name: "Head (Imp)",
  37887. image: {
  37888. source: "./media/characters/max-kobold/head-imp.svg"
  37889. }
  37890. },
  37891. mawImp: {
  37892. height: math.unit(0.75, "feet"),
  37893. name: "Maw (Imp)",
  37894. image: {
  37895. source: "./media/characters/max-kobold/maw-imp.svg"
  37896. }
  37897. },
  37898. mawDemi: {
  37899. height: math.unit(0.42, "feet"),
  37900. name: "Maw (Demi)",
  37901. image: {
  37902. source: "./media/characters/max-kobold/maw-demi.svg"
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(1 + 11/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(7 + 5/12, "feet"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/carbon/front.svg",
  37922. extra: 1754/1689,
  37923. bottom: 65/1819
  37924. }
  37925. },
  37926. back: {
  37927. height: math.unit(7 + 5/12, "feet"),
  37928. name: "Back",
  37929. image: {
  37930. source: "./media/characters/carbon/back.svg",
  37931. extra: 1762/1695,
  37932. bottom: 24/1786
  37933. }
  37934. },
  37935. frontGigantamax: {
  37936. height: math.unit(150, "feet"),
  37937. name: "Front (Gigantamax)",
  37938. image: {
  37939. source: "./media/characters/carbon/front-gigantamax.svg",
  37940. extra: 1826/1669,
  37941. bottom: 59/1885
  37942. }
  37943. },
  37944. backGigantamax: {
  37945. height: math.unit(150, "feet"),
  37946. name: "Back (Gigantamax)",
  37947. image: {
  37948. source: "./media/characters/carbon/back-gigantamax.svg",
  37949. extra: 1796/1653,
  37950. bottom: 53/1849
  37951. }
  37952. },
  37953. maw: {
  37954. height: math.unit(0.48, "feet"),
  37955. name: "Maw",
  37956. image: {
  37957. source: "./media/characters/carbon/maw.svg"
  37958. }
  37959. },
  37960. mawGigantamax: {
  37961. height: math.unit(7.5, "feet"),
  37962. name: "Maw (Gigantamax)",
  37963. image: {
  37964. source: "./media/characters/carbon/maw-gigantamax.svg"
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(7 + 5/12, "feet"),
  37972. default: true
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(6, "feet"),
  37981. name: "Front",
  37982. image: {
  37983. source: "./media/characters/maverick/front.svg",
  37984. extra: 1672/1661,
  37985. bottom: 85/1757
  37986. }
  37987. },
  37988. back: {
  37989. height: math.unit(6, "feet"),
  37990. name: "Back",
  37991. image: {
  37992. source: "./media/characters/maverick/back.svg",
  37993. extra: 1642/1631,
  37994. bottom: 38/1680
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Normal",
  38001. height: math.unit(6, "feet"),
  38002. default: true
  38003. },
  38004. ]
  38005. ))
  38006. characterMakers.push(() => makeCharacter(
  38007. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38008. {
  38009. front: {
  38010. height: math.unit(15, "feet"),
  38011. weight: math.unit(615, "lb"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/grockle/front.svg",
  38015. extra: 1535/1427,
  38016. bottom: 56/1591
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal",
  38023. height: math.unit(15, "feet"),
  38024. default: true
  38025. },
  38026. {
  38027. name: "Large",
  38028. height: math.unit(150, "feet")
  38029. },
  38030. {
  38031. name: "Macro",
  38032. height: math.unit(1876, "feet")
  38033. },
  38034. {
  38035. name: "Mega Macro",
  38036. height: math.unit(121940, "feet")
  38037. },
  38038. {
  38039. name: "Giga Macro",
  38040. height: math.unit(750, "km")
  38041. },
  38042. {
  38043. name: "Tera Macro",
  38044. height: math.unit(750000, "km")
  38045. },
  38046. {
  38047. name: "Galactic",
  38048. height: math.unit(1.4e5, "km")
  38049. },
  38050. {
  38051. name: "Godlike",
  38052. height: math.unit(9.8e280, "galaxies")
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(11, "meters"),
  38061. weight: math.unit(20, "tonnes"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/alistair/front.svg",
  38065. extra: 1265/1009,
  38066. bottom: 93/1358
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Normal",
  38073. height: math.unit(11, "meters"),
  38074. default: true
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38080. {
  38081. front: {
  38082. height: math.unit(5 + 8/12, "feet"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/haruka/front.svg",
  38086. extra: 2012/1952,
  38087. bottom: 0/2012
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Normal",
  38094. height: math.unit(5 + 8/12, "feet"),
  38095. default: true
  38096. },
  38097. ]
  38098. ))
  38099. characterMakers.push(() => makeCharacter(
  38100. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38101. {
  38102. back: {
  38103. height: math.unit(9, "feet"),
  38104. name: "Back",
  38105. image: {
  38106. source: "./media/characters/vivian-sylveon/back.svg",
  38107. extra: 1853/1714,
  38108. bottom: 0/1853
  38109. }
  38110. },
  38111. },
  38112. [
  38113. {
  38114. name: "Normal",
  38115. height: math.unit(9, "feet"),
  38116. default: true
  38117. },
  38118. {
  38119. name: "Macro",
  38120. height: math.unit(500, "feet")
  38121. },
  38122. {
  38123. name: "Megamacro",
  38124. height: math.unit(600, "miles")
  38125. },
  38126. {
  38127. name: "Gigamacro",
  38128. height: math.unit(30000, "miles")
  38129. },
  38130. ]
  38131. ))
  38132. characterMakers.push(() => makeCharacter(
  38133. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38134. {
  38135. anthro: {
  38136. height: math.unit(5 + 10/12, "feet"),
  38137. weight: math.unit(100, "lb"),
  38138. name: "Anthro",
  38139. image: {
  38140. source: "./media/characters/daiki/anthro.svg",
  38141. extra: 1115/1027,
  38142. bottom: 69/1184
  38143. }
  38144. },
  38145. feral: {
  38146. height: math.unit(200, "feet"),
  38147. name: "Feral",
  38148. image: {
  38149. source: "./media/characters/daiki/feral.svg",
  38150. extra: 1256/313,
  38151. bottom: 39/1295
  38152. }
  38153. },
  38154. feralHead: {
  38155. height: math.unit(171, "feet"),
  38156. name: "Feral Head",
  38157. image: {
  38158. source: "./media/characters/daiki/feral-head.svg"
  38159. }
  38160. },
  38161. manaDragon: {
  38162. height: math.unit(170, "meters"),
  38163. name: "Mana-dragon",
  38164. image: {
  38165. source: "./media/characters/daiki/mana-dragon.svg",
  38166. extra: 763/420,
  38167. bottom: 97/860
  38168. }
  38169. },
  38170. },
  38171. [
  38172. {
  38173. name: "Normal",
  38174. height: math.unit(5 + 10/12, "feet"),
  38175. default: true
  38176. },
  38177. ]
  38178. ))
  38179. characterMakers.push(() => makeCharacter(
  38180. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38181. {
  38182. fullyEquippedFront: {
  38183. height: math.unit(3 + 1/12, "feet"),
  38184. weight: math.unit(24, "lb"),
  38185. name: "Fully Equipped (Front)",
  38186. image: {
  38187. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38188. extra: 687/605,
  38189. bottom: 18/705
  38190. }
  38191. },
  38192. fullyEquippedBack: {
  38193. height: math.unit(3 + 1/12, "feet"),
  38194. weight: math.unit(24, "lb"),
  38195. name: "Fully Equipped (Back)",
  38196. image: {
  38197. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38198. extra: 689/590,
  38199. bottom: 18/707
  38200. }
  38201. },
  38202. dailyWear: {
  38203. height: math.unit(3 + 1/12, "feet"),
  38204. weight: math.unit(24, "lb"),
  38205. name: "Daily Wear",
  38206. image: {
  38207. source: "./media/characters/tea-spot/daily-wear.svg",
  38208. extra: 701/620,
  38209. bottom: 21/722
  38210. }
  38211. },
  38212. maidWork: {
  38213. height: math.unit(3 + 1/12, "feet"),
  38214. weight: math.unit(24, "lb"),
  38215. name: "Maid Work",
  38216. image: {
  38217. source: "./media/characters/tea-spot/maid-work.svg",
  38218. extra: 693/609,
  38219. bottom: 15/708
  38220. }
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "Normal",
  38226. height: math.unit(3 + 1/12, "feet"),
  38227. default: true
  38228. },
  38229. ]
  38230. ))
  38231. characterMakers.push(() => makeCharacter(
  38232. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38233. {
  38234. front: {
  38235. height: math.unit(175, "cm"),
  38236. weight: math.unit(75, "kg"),
  38237. name: "Front",
  38238. image: {
  38239. source: "./media/characters/chee/front.svg",
  38240. extra: 1796/1740,
  38241. bottom: 40/1836
  38242. }
  38243. },
  38244. },
  38245. [
  38246. {
  38247. name: "Micro-Micro",
  38248. height: math.unit(1, "nm")
  38249. },
  38250. {
  38251. name: "Micro-erst",
  38252. height: math.unit(1, "micrometer")
  38253. },
  38254. {
  38255. name: "Micro-er",
  38256. height: math.unit(1, "cm")
  38257. },
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(175, "cm"),
  38261. default: true
  38262. },
  38263. {
  38264. name: "Macro",
  38265. height: math.unit(100, "m")
  38266. },
  38267. {
  38268. name: "Macro-er",
  38269. height: math.unit(1, "km")
  38270. },
  38271. {
  38272. name: "Macro-erst",
  38273. height: math.unit(10, "km")
  38274. },
  38275. {
  38276. name: "Macro-Macro",
  38277. height: math.unit(100, "km")
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(11 + 9/12, "feet"),
  38286. weight: math.unit(935, "lb"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/kingsley/front.svg",
  38290. extra: 1803/1674,
  38291. bottom: 127/1930
  38292. }
  38293. },
  38294. frontNude: {
  38295. height: math.unit(11 + 9/12, "feet"),
  38296. weight: math.unit(935, "lb"),
  38297. name: "Front (Nude)",
  38298. image: {
  38299. source: "./media/characters/kingsley/front-nude.svg",
  38300. extra: 1803/1674,
  38301. bottom: 127/1930
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(11 + 9/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38315. {
  38316. side: {
  38317. height: math.unit(9, "feet"),
  38318. name: "Side",
  38319. image: {
  38320. source: "./media/characters/rymel/side.svg",
  38321. extra: 792/469,
  38322. bottom: 121/913
  38323. }
  38324. },
  38325. maw: {
  38326. height: math.unit(2.4, "meters"),
  38327. name: "Maw",
  38328. image: {
  38329. source: "./media/characters/rymel/maw.svg"
  38330. }
  38331. },
  38332. },
  38333. [
  38334. {
  38335. name: "House Drake",
  38336. height: math.unit(2, "feet")
  38337. },
  38338. {
  38339. name: "Reduced",
  38340. height: math.unit(4.5, "feet")
  38341. },
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(9, "feet"),
  38345. default: true
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(1.74, "meters"),
  38354. weight: math.unit(55, "kg"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/rubus/front.svg",
  38358. extra: 1894/1742,
  38359. bottom: 44/1938
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Normal",
  38366. height: math.unit(1.74, "meters"),
  38367. default: true
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38373. {
  38374. front: {
  38375. height: math.unit(5 + 2/12, "feet"),
  38376. weight: math.unit(112, "lb"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/cassie-kingston/front.svg",
  38380. extra: 1438/1390,
  38381. bottom: 47/1485
  38382. }
  38383. },
  38384. },
  38385. [
  38386. {
  38387. name: "Normal",
  38388. height: math.unit(5 + 2/12, "feet"),
  38389. default: true
  38390. },
  38391. {
  38392. name: "Macro",
  38393. height: math.unit(128, "feet")
  38394. },
  38395. {
  38396. name: "Megamacro",
  38397. height: math.unit(2.56, "miles")
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38403. {
  38404. front: {
  38405. height: math.unit(7, "feet"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/fox/front.svg",
  38409. extra: 1798/1703,
  38410. bottom: 55/1853
  38411. }
  38412. },
  38413. back: {
  38414. height: math.unit(7, "feet"),
  38415. name: "Back",
  38416. image: {
  38417. source: "./media/characters/fox/back.svg",
  38418. extra: 1748/1649,
  38419. bottom: 32/1780
  38420. }
  38421. },
  38422. head: {
  38423. height: math.unit(1.95, "feet"),
  38424. name: "Head",
  38425. image: {
  38426. source: "./media/characters/fox/head.svg"
  38427. }
  38428. },
  38429. dick: {
  38430. height: math.unit(1.33, "feet"),
  38431. name: "Dick",
  38432. image: {
  38433. source: "./media/characters/fox/dick.svg"
  38434. }
  38435. },
  38436. foot: {
  38437. height: math.unit(1, "feet"),
  38438. name: "Foot",
  38439. image: {
  38440. source: "./media/characters/fox/foot.svg"
  38441. }
  38442. },
  38443. paw: {
  38444. height: math.unit(0.92, "feet"),
  38445. name: "Paw",
  38446. image: {
  38447. source: "./media/characters/fox/paw.svg"
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Small",
  38454. height: math.unit(3, "inches")
  38455. },
  38456. {
  38457. name: "\"Realistic\"",
  38458. height: math.unit(7, "feet")
  38459. },
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(150, "feet"),
  38463. default: true
  38464. },
  38465. {
  38466. name: "BIG",
  38467. height: math.unit(1200, "feet")
  38468. },
  38469. {
  38470. name: "👀",
  38471. height: math.unit(5, "miles")
  38472. },
  38473. {
  38474. name: "👀👀👀",
  38475. height: math.unit(64, "miles")
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(625, "feet"),
  38484. name: "Front",
  38485. image: {
  38486. source: "./media/characters/asonja-rossa/front.svg",
  38487. extra: 1833/1686,
  38488. bottom: 24/1857
  38489. }
  38490. },
  38491. back: {
  38492. height: math.unit(625, "feet"),
  38493. name: "Back",
  38494. image: {
  38495. source: "./media/characters/asonja-rossa/back.svg",
  38496. extra: 1852/1753,
  38497. bottom: 26/1878
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Macro",
  38504. height: math.unit(625, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38511. {
  38512. side: {
  38513. height: math.unit(8, "feet"),
  38514. name: "Side",
  38515. image: {
  38516. source: "./media/characters/rezukii/side.svg",
  38517. extra: 979/542,
  38518. bottom: 87/1066
  38519. }
  38520. },
  38521. sitting: {
  38522. height: math.unit(14.6, "feet"),
  38523. name: "Sitting",
  38524. image: {
  38525. source: "./media/characters/rezukii/sitting.svg",
  38526. extra: 1023/813,
  38527. bottom: 45/1068
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Tiny",
  38534. height: math.unit(2, "feet")
  38535. },
  38536. {
  38537. name: "Smol",
  38538. height: math.unit(4, "feet")
  38539. },
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(8, "feet"),
  38543. default: true
  38544. },
  38545. {
  38546. name: "Big",
  38547. height: math.unit(12, "feet")
  38548. },
  38549. {
  38550. name: "Macro",
  38551. height: math.unit(30, "feet")
  38552. },
  38553. ]
  38554. ))
  38555. characterMakers.push(() => makeCharacter(
  38556. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38557. {
  38558. front: {
  38559. height: math.unit(14, "feet"),
  38560. weight: math.unit(9.5, "tonnes"),
  38561. name: "Front",
  38562. image: {
  38563. source: "./media/characters/dawnheart/front.svg",
  38564. extra: 2792/2675,
  38565. bottom: 64/2856
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(14, "feet"),
  38573. default: true
  38574. },
  38575. ]
  38576. ))
  38577. characterMakers.push(() => makeCharacter(
  38578. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38579. {
  38580. front: {
  38581. height: math.unit(1.7, "m"),
  38582. name: "Front",
  38583. image: {
  38584. source: "./media/characters/gladi/front.svg",
  38585. extra: 1460/1362,
  38586. bottom: 19/1479
  38587. }
  38588. },
  38589. back: {
  38590. height: math.unit(1.7, "m"),
  38591. name: "Back",
  38592. image: {
  38593. source: "./media/characters/gladi/back.svg",
  38594. extra: 1459/1357,
  38595. bottom: 12/1471
  38596. }
  38597. },
  38598. feral: {
  38599. height: math.unit(2.05, "m"),
  38600. name: "Feral",
  38601. image: {
  38602. source: "./media/characters/gladi/feral.svg",
  38603. extra: 821/557,
  38604. bottom: 91/912
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Shortest",
  38611. height: math.unit(70, "cm")
  38612. },
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(1.7, "m")
  38616. },
  38617. {
  38618. name: "Macro",
  38619. height: math.unit(10, "m"),
  38620. default: true
  38621. },
  38622. {
  38623. name: "Tallest",
  38624. height: math.unit(200, "m")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(5 + 7/12, "feet"),
  38633. weight: math.unit(2, "tons"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/erdno/front.svg",
  38637. extra: 1234/1129,
  38638. bottom: 35/1269
  38639. }
  38640. },
  38641. angled: {
  38642. height: math.unit(5 + 7/12, "feet"),
  38643. weight: math.unit(2, "tons"),
  38644. name: "Angled",
  38645. image: {
  38646. source: "./media/characters/erdno/angled.svg",
  38647. extra: 1185/1139,
  38648. bottom: 36/1221
  38649. }
  38650. },
  38651. side: {
  38652. height: math.unit(5 + 7/12, "feet"),
  38653. weight: math.unit(2, "tons"),
  38654. name: "Side",
  38655. image: {
  38656. source: "./media/characters/erdno/side.svg",
  38657. extra: 1191/1144,
  38658. bottom: 40/1231
  38659. }
  38660. },
  38661. back: {
  38662. height: math.unit(5 + 7/12, "feet"),
  38663. weight: math.unit(2, "tons"),
  38664. name: "Back",
  38665. image: {
  38666. source: "./media/characters/erdno/back.svg",
  38667. extra: 1202/1146,
  38668. bottom: 17/1219
  38669. }
  38670. },
  38671. frontNsfw: {
  38672. height: math.unit(5 + 7/12, "feet"),
  38673. weight: math.unit(2, "tons"),
  38674. name: "Front (NSFW)",
  38675. image: {
  38676. source: "./media/characters/erdno/front-nsfw.svg",
  38677. extra: 1234/1129,
  38678. bottom: 35/1269
  38679. }
  38680. },
  38681. angledNsfw: {
  38682. height: math.unit(5 + 7/12, "feet"),
  38683. weight: math.unit(2, "tons"),
  38684. name: "Angled (NSFW)",
  38685. image: {
  38686. source: "./media/characters/erdno/angled-nsfw.svg",
  38687. extra: 1185/1139,
  38688. bottom: 36/1221
  38689. }
  38690. },
  38691. sideNsfw: {
  38692. height: math.unit(5 + 7/12, "feet"),
  38693. weight: math.unit(2, "tons"),
  38694. name: "Side (NSFW)",
  38695. image: {
  38696. source: "./media/characters/erdno/side-nsfw.svg",
  38697. extra: 1191/1144,
  38698. bottom: 40/1231
  38699. }
  38700. },
  38701. backNsfw: {
  38702. height: math.unit(5 + 7/12, "feet"),
  38703. weight: math.unit(2, "tons"),
  38704. name: "Back (NSFW)",
  38705. image: {
  38706. source: "./media/characters/erdno/back-nsfw.svg",
  38707. extra: 1202/1146,
  38708. bottom: 17/1219
  38709. }
  38710. },
  38711. frontHyper: {
  38712. height: math.unit(5 + 7/12, "feet"),
  38713. weight: math.unit(2, "tons"),
  38714. name: "Front (Hyper)",
  38715. image: {
  38716. source: "./media/characters/erdno/front-hyper.svg",
  38717. extra: 1298/1136,
  38718. bottom: 35/1333
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(5 + 7/12, "feet"),
  38726. default: true
  38727. },
  38728. {
  38729. name: "Big",
  38730. height: math.unit(5.7, "meters")
  38731. },
  38732. {
  38733. name: "Macro",
  38734. height: math.unit(5.7, "kilometers")
  38735. },
  38736. {
  38737. name: "Megamacro",
  38738. height: math.unit(5.7, "earths")
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(5 + 10/12, "feet"),
  38747. weight: math.unit(150, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/jamie/front.svg",
  38751. extra: 1908/1768,
  38752. bottom: 19/1927
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Minimum",
  38759. height: math.unit(2, "cm")
  38760. },
  38761. {
  38762. name: "Micro",
  38763. height: math.unit(3, "inches")
  38764. },
  38765. {
  38766. name: "Normal",
  38767. height: math.unit(5 + 10/12, "feet"),
  38768. default: true
  38769. },
  38770. {
  38771. name: "Macro",
  38772. height: math.unit(150, "feet")
  38773. },
  38774. {
  38775. name: "Megamacro",
  38776. height: math.unit(10000, "m")
  38777. },
  38778. ]
  38779. ))
  38780. characterMakers.push(() => makeCharacter(
  38781. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38782. {
  38783. front: {
  38784. height: math.unit(2, "meters"),
  38785. weight: math.unit(100, "kg"),
  38786. name: "Front",
  38787. image: {
  38788. source: "./media/characters/shiron/front.svg",
  38789. extra: 2103/1985,
  38790. bottom: 98/2201
  38791. }
  38792. },
  38793. back: {
  38794. height: math.unit(2, "meters"),
  38795. weight: math.unit(100, "kg"),
  38796. name: "Back",
  38797. image: {
  38798. source: "./media/characters/shiron/back.svg",
  38799. extra: 2110/2015,
  38800. bottom: 89/2199
  38801. }
  38802. },
  38803. hand: {
  38804. height: math.unit(0.96, "feet"),
  38805. name: "Hand",
  38806. image: {
  38807. source: "./media/characters/shiron/hand.svg"
  38808. }
  38809. },
  38810. foot: {
  38811. height: math.unit(1.464, "feet"),
  38812. name: "Foot",
  38813. image: {
  38814. source: "./media/characters/shiron/foot.svg"
  38815. }
  38816. },
  38817. },
  38818. [
  38819. {
  38820. name: "Normal",
  38821. height: math.unit(2, "meters")
  38822. },
  38823. {
  38824. name: "Macro",
  38825. height: math.unit(500, "meters"),
  38826. default: true
  38827. },
  38828. {
  38829. name: "Megamacro",
  38830. height: math.unit(20, "km")
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(6, "feet"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/sam/front.svg",
  38842. extra: 849/826,
  38843. bottom: 19/868
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(6, "feet"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(8 + 4/12, "feet"),
  38860. weight: math.unit(122, "kg"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/namori-kurogawa/front.svg",
  38864. extra: 1894/1576,
  38865. bottom: 34/1928
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(8 + 4/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(9, "feet"),
  38882. weight: math.unit(621, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/unmru/front.svg",
  38886. extra: 1853/1747,
  38887. bottom: 73/1926
  38888. }
  38889. },
  38890. side: {
  38891. height: math.unit(9, "feet"),
  38892. weight: math.unit(621, "lb"),
  38893. name: "Side",
  38894. image: {
  38895. source: "./media/characters/unmru/side.svg",
  38896. extra: 1781/1671,
  38897. bottom: 127/1908
  38898. }
  38899. },
  38900. back: {
  38901. height: math.unit(9, "feet"),
  38902. weight: math.unit(621, "lb"),
  38903. name: "Back",
  38904. image: {
  38905. source: "./media/characters/unmru/back.svg",
  38906. extra: 1894/1765,
  38907. bottom: 75/1969
  38908. }
  38909. },
  38910. dick: {
  38911. height: math.unit(3, "feet"),
  38912. weight: math.unit(35, "lb"),
  38913. name: "Dick",
  38914. image: {
  38915. source: "./media/characters/unmru/dick.svg"
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(9, "feet")
  38923. },
  38924. {
  38925. name: "Natural",
  38926. height: math.unit(27, "feet"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Giant",
  38931. height: math.unit(90, "feet")
  38932. },
  38933. {
  38934. name: "Kaiju",
  38935. height: math.unit(270, "feet")
  38936. },
  38937. {
  38938. name: "Macro",
  38939. height: math.unit(900, "feet")
  38940. },
  38941. {
  38942. name: "Macro+",
  38943. height: math.unit(2700, "feet")
  38944. },
  38945. {
  38946. name: "Megamacro",
  38947. height: math.unit(9000, "feet")
  38948. },
  38949. {
  38950. name: "City-Crushing",
  38951. height: math.unit(27000, "feet")
  38952. },
  38953. {
  38954. name: "Mountain-Mashing",
  38955. height: math.unit(90000, "feet")
  38956. },
  38957. {
  38958. name: "Earth-Eclipsing",
  38959. height: math.unit(2.7e8, "feet")
  38960. },
  38961. {
  38962. name: "Sol-Swallowing",
  38963. height: math.unit(9e10, "feet")
  38964. },
  38965. {
  38966. name: "Majoris-Munching",
  38967. height: math.unit(2.7e13, "feet")
  38968. },
  38969. ]
  38970. ))
  38971. characterMakers.push(() => makeCharacter(
  38972. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38973. {
  38974. front: {
  38975. height: math.unit(1, "inch"),
  38976. name: "Front",
  38977. image: {
  38978. source: "./media/characters/squeaks-mouse/front.svg",
  38979. extra: 352/308,
  38980. bottom: 25/377
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Micro",
  38987. height: math.unit(1, "inch"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38994. {
  38995. side: {
  38996. height: math.unit(35, "feet"),
  38997. name: "Side",
  38998. image: {
  38999. source: "./media/characters/sayko/side.svg",
  39000. extra: 1697/1021,
  39001. bottom: 82/1779
  39002. }
  39003. },
  39004. head: {
  39005. height: math.unit(16, "feet"),
  39006. name: "Head",
  39007. image: {
  39008. source: "./media/characters/sayko/head.svg"
  39009. }
  39010. },
  39011. forepaw: {
  39012. height: math.unit(7.85, "feet"),
  39013. name: "Forepaw",
  39014. image: {
  39015. source: "./media/characters/sayko/forepaw.svg"
  39016. }
  39017. },
  39018. hindpaw: {
  39019. height: math.unit(8.8, "feet"),
  39020. name: "Hindpaw",
  39021. image: {
  39022. source: "./media/characters/sayko/hindpaw.svg"
  39023. }
  39024. },
  39025. },
  39026. [
  39027. {
  39028. name: "Normal",
  39029. height: math.unit(35, "feet"),
  39030. default: true
  39031. },
  39032. {
  39033. name: "Colossus",
  39034. height: math.unit(100, "meters")
  39035. },
  39036. {
  39037. name: "\"Small\" Deity",
  39038. height: math.unit(1, "km")
  39039. },
  39040. {
  39041. name: "\"Large\" Deity",
  39042. height: math.unit(15, "km")
  39043. },
  39044. ]
  39045. ))
  39046. characterMakers.push(() => makeCharacter(
  39047. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39048. {
  39049. front: {
  39050. height: math.unit(6, "feet"),
  39051. weight: math.unit(250, "lb"),
  39052. name: "Front",
  39053. image: {
  39054. source: "./media/characters/mukiro/front.svg",
  39055. extra: 1368/1310,
  39056. bottom: 34/1402
  39057. }
  39058. },
  39059. },
  39060. [
  39061. {
  39062. name: "Normal",
  39063. height: math.unit(6, "feet"),
  39064. default: true
  39065. },
  39066. ]
  39067. ))
  39068. characterMakers.push(() => makeCharacter(
  39069. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39070. {
  39071. front: {
  39072. height: math.unit(12 + 4/12, "feet"),
  39073. name: "Front",
  39074. image: {
  39075. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39076. extra: 1346/1311,
  39077. bottom: 65/1411
  39078. }
  39079. },
  39080. },
  39081. [
  39082. {
  39083. name: "Base",
  39084. height: math.unit(12 + 4/12, "feet"),
  39085. default: true
  39086. },
  39087. {
  39088. name: "Macro",
  39089. height: math.unit(150, "feet")
  39090. },
  39091. {
  39092. name: "Mega",
  39093. height: math.unit(2, "miles")
  39094. },
  39095. {
  39096. name: "Demi God",
  39097. height: math.unit(4, "AU")
  39098. },
  39099. {
  39100. name: "God Size",
  39101. height: math.unit(1, "universe")
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(3 + 3/12, "feet"),
  39110. weight: math.unit(88, "lb"),
  39111. name: "Front",
  39112. image: {
  39113. source: "./media/characters/trey/front.svg",
  39114. extra: 1815/1509,
  39115. bottom: 60/1875
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(3 + 3/12, "feet"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39129. {
  39130. front: {
  39131. height: math.unit(4, "meters"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/adelonda/front.svg",
  39135. extra: 1077/982,
  39136. bottom: 39/1116
  39137. }
  39138. },
  39139. back: {
  39140. height: math.unit(4, "meters"),
  39141. name: "Back",
  39142. image: {
  39143. source: "./media/characters/adelonda/back.svg",
  39144. extra: 1105/1003,
  39145. bottom: 25/1130
  39146. }
  39147. },
  39148. feral: {
  39149. height: math.unit(40/1.5, "meters"),
  39150. name: "Feral",
  39151. image: {
  39152. source: "./media/characters/adelonda/feral.svg",
  39153. extra: 597/271,
  39154. bottom: 387/984
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(4, "meters"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(8 + 4/12, "feet"),
  39171. weight: math.unit(670, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/acadiel/front.svg",
  39175. extra: 1901/1595,
  39176. bottom: 142/2043
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(8 + 4/12, "feet"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Macro",
  39188. height: math.unit(200, "feet")
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(6 + 2/12, "feet"),
  39197. weight: math.unit(185, "lb"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/kayne-ein/front.svg",
  39201. extra: 1780/1560,
  39202. bottom: 81/1861
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(6 + 2/12, "feet"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Transformation Stage",
  39214. height: math.unit(15, "feet")
  39215. },
  39216. {
  39217. name: "Macro",
  39218. height: math.unit(150, "feet")
  39219. },
  39220. {
  39221. name: "Earth's Shadow",
  39222. height: math.unit(6200, "miles")
  39223. },
  39224. {
  39225. name: "Universal Demon",
  39226. height: math.unit(28e9, "parsecs")
  39227. },
  39228. {
  39229. name: "Multiverse God",
  39230. height: math.unit(3, "multiverses")
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39236. {
  39237. front: {
  39238. height: math.unit(5 + 5/12, "feet"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/fawn/front.svg",
  39242. extra: 1873/1731,
  39243. bottom: 95/1968
  39244. }
  39245. },
  39246. back: {
  39247. height: math.unit(5 + 5/12, "feet"),
  39248. name: "Back",
  39249. image: {
  39250. source: "./media/characters/fawn/back.svg",
  39251. extra: 1813/1700,
  39252. bottom: 14/1827
  39253. }
  39254. },
  39255. hoof: {
  39256. height: math.unit(1.45, "feet"),
  39257. name: "Hoof",
  39258. image: {
  39259. source: "./media/characters/fawn/hoof.svg"
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(5 + 5/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(2 + 5/12, "feet"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/orion/front.svg",
  39279. extra: 1366/1304,
  39280. bottom: 43/1409
  39281. }
  39282. },
  39283. paw: {
  39284. height: math.unit(0.52, "feet"),
  39285. name: "Paw",
  39286. image: {
  39287. source: "./media/characters/orion/paw.svg"
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(2 + 5/12, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(5 + 10/12, "feet"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/vera/front.svg",
  39307. extra: 1680/1575,
  39308. bottom: 49/1729
  39309. }
  39310. },
  39311. back: {
  39312. height: math.unit(5 + 10/12, "feet"),
  39313. name: "Back",
  39314. image: {
  39315. source: "./media/characters/vera/back.svg",
  39316. extra: 1700/1588,
  39317. bottom: 18/1718
  39318. }
  39319. },
  39320. arcanine: {
  39321. height: math.unit(6 + 8/12, "feet"),
  39322. name: "Arcanine",
  39323. image: {
  39324. source: "./media/characters/vera/arcanine.svg",
  39325. extra: 1590/1511,
  39326. bottom: 71/1661
  39327. }
  39328. },
  39329. maw: {
  39330. height: math.unit(0.82, "feet"),
  39331. name: "Maw",
  39332. image: {
  39333. source: "./media/characters/vera/maw.svg"
  39334. }
  39335. },
  39336. mawArcanine: {
  39337. height: math.unit(0.97, "feet"),
  39338. name: "Maw (Arcanine)",
  39339. image: {
  39340. source: "./media/characters/vera/maw-arcanine.svg"
  39341. }
  39342. },
  39343. paw: {
  39344. height: math.unit(0.75, "feet"),
  39345. name: "Paw",
  39346. image: {
  39347. source: "./media/characters/vera/paw.svg"
  39348. }
  39349. },
  39350. pawprint: {
  39351. height: math.unit(0.52, "feet"),
  39352. name: "Pawprint",
  39353. image: {
  39354. source: "./media/characters/vera/pawprint.svg"
  39355. }
  39356. },
  39357. },
  39358. [
  39359. {
  39360. name: "Normal",
  39361. height: math.unit(5 + 10/12, "feet"),
  39362. default: true
  39363. },
  39364. {
  39365. name: "Macro",
  39366. height: math.unit(75, "feet")
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(4, "feet"),
  39375. weight: math.unit(40, "lb"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/orvan-rabbit/front.svg",
  39379. extra: 1896/1642,
  39380. bottom: 29/1925
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(4, "feet"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(6, "feet"),
  39397. weight: math.unit(168, "lb"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/lisa/front.svg",
  39401. extra: 2065/1867,
  39402. bottom: 46/2111
  39403. }
  39404. },
  39405. back: {
  39406. height: math.unit(6, "feet"),
  39407. weight: math.unit(168, "lb"),
  39408. name: "Back",
  39409. image: {
  39410. source: "./media/characters/lisa/back.svg",
  39411. extra: 1982/1838,
  39412. bottom: 29/2011
  39413. }
  39414. },
  39415. maw: {
  39416. height: math.unit(0.81, "feet"),
  39417. name: "Maw",
  39418. image: {
  39419. source: "./media/characters/lisa/maw.svg"
  39420. }
  39421. },
  39422. paw: {
  39423. height: math.unit(0.9, "feet"),
  39424. name: "Paw",
  39425. image: {
  39426. source: "./media/characters/lisa/paw.svg"
  39427. }
  39428. },
  39429. caribousune: {
  39430. height: math.unit(7 + 2/12, "feet"),
  39431. weight: math.unit(268, "lb"),
  39432. name: "Caribousune",
  39433. image: {
  39434. source: "./media/characters/lisa/caribousune.svg",
  39435. extra: 1843/1633,
  39436. bottom: 29/1872
  39437. }
  39438. },
  39439. frontCaribousune: {
  39440. height: math.unit(7 + 2/12, "feet"),
  39441. weight: math.unit(268, "lb"),
  39442. name: "Front (Caribousune)",
  39443. image: {
  39444. source: "./media/characters/lisa/front-caribousune.svg",
  39445. extra: 1818/1638,
  39446. bottom: 52/1870
  39447. }
  39448. },
  39449. sideCaribousune: {
  39450. height: math.unit(7 + 2/12, "feet"),
  39451. weight: math.unit(268, "lb"),
  39452. name: "Side (Caribousune)",
  39453. image: {
  39454. source: "./media/characters/lisa/side-caribousune.svg",
  39455. extra: 1851/1635,
  39456. bottom: 16/1867
  39457. }
  39458. },
  39459. backCaribousune: {
  39460. height: math.unit(7 + 2/12, "feet"),
  39461. weight: math.unit(268, "lb"),
  39462. name: "Back (Caribousune)",
  39463. image: {
  39464. source: "./media/characters/lisa/back-caribousune.svg",
  39465. extra: 1801/1604,
  39466. bottom: 44/1845
  39467. }
  39468. },
  39469. caribou: {
  39470. height: math.unit(7 + 2/12, "feet"),
  39471. weight: math.unit(268, "lb"),
  39472. name: "Caribou",
  39473. image: {
  39474. source: "./media/characters/lisa/caribou.svg",
  39475. extra: 1843/1633,
  39476. bottom: 29/1872
  39477. }
  39478. },
  39479. frontCaribou: {
  39480. height: math.unit(7 + 2/12, "feet"),
  39481. weight: math.unit(268, "lb"),
  39482. name: "Front (Caribou)",
  39483. image: {
  39484. source: "./media/characters/lisa/front-caribou.svg",
  39485. extra: 1818/1638,
  39486. bottom: 52/1870
  39487. }
  39488. },
  39489. sideCaribou: {
  39490. height: math.unit(7 + 2/12, "feet"),
  39491. weight: math.unit(268, "lb"),
  39492. name: "Side (Caribou)",
  39493. image: {
  39494. source: "./media/characters/lisa/side-caribou.svg",
  39495. extra: 1851/1635,
  39496. bottom: 16/1867
  39497. }
  39498. },
  39499. backCaribou: {
  39500. height: math.unit(7 + 2/12, "feet"),
  39501. weight: math.unit(268, "lb"),
  39502. name: "Back (Caribou)",
  39503. image: {
  39504. source: "./media/characters/lisa/back-caribou.svg",
  39505. extra: 1801/1604,
  39506. bottom: 44/1845
  39507. }
  39508. },
  39509. mawCaribou: {
  39510. height: math.unit(1.45, "feet"),
  39511. name: "Maw (Caribou)",
  39512. image: {
  39513. source: "./media/characters/lisa/maw-caribou.svg"
  39514. }
  39515. },
  39516. mawCaribousune: {
  39517. height: math.unit(1.45, "feet"),
  39518. name: "Maw (Caribousune)",
  39519. image: {
  39520. source: "./media/characters/lisa/maw-caribousune.svg"
  39521. }
  39522. },
  39523. pawCaribousune: {
  39524. height: math.unit(1.61, "feet"),
  39525. name: "Paw (Caribou)",
  39526. image: {
  39527. source: "./media/characters/lisa/paw-caribousune.svg"
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(6, "feet")
  39535. },
  39536. {
  39537. name: "God Size",
  39538. height: math.unit(72, "feet"),
  39539. default: true
  39540. },
  39541. {
  39542. name: "Towering",
  39543. height: math.unit(288, "feet")
  39544. },
  39545. {
  39546. name: "City Size",
  39547. height: math.unit(48384, "feet")
  39548. },
  39549. {
  39550. name: "Continental",
  39551. height: math.unit(4200, "miles")
  39552. },
  39553. {
  39554. name: "Planet Eater",
  39555. height: math.unit(42, "earths")
  39556. },
  39557. {
  39558. name: "Star Swallower",
  39559. height: math.unit(42, "solarradii")
  39560. },
  39561. {
  39562. name: "System Swallower",
  39563. height: math.unit(84000, "AU")
  39564. },
  39565. {
  39566. name: "Galaxy Gobbler",
  39567. height: math.unit(42, "galaxies")
  39568. },
  39569. {
  39570. name: "Universe Devourer",
  39571. height: math.unit(42, "universes")
  39572. },
  39573. {
  39574. name: "Multiverse Muncher",
  39575. height: math.unit(42, "multiverses")
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(36, "feet"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/shadow-rat/front.svg",
  39587. extra: 1845/1758,
  39588. bottom: 83/1928
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Macro",
  39595. height: math.unit(36, "feet"),
  39596. default: true
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39602. {
  39603. side: {
  39604. height: math.unit(8, "feet"),
  39605. weight: math.unit(2630, "lb"),
  39606. name: "Side",
  39607. image: {
  39608. source: "./media/characters/torallia/side.svg",
  39609. extra: 2164/2021,
  39610. bottom: 371/2535
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Mortal Interaction",
  39617. height: math.unit(8, "feet")
  39618. },
  39619. {
  39620. name: "Natural",
  39621. height: math.unit(24, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Giant",
  39626. height: math.unit(80, "feet")
  39627. },
  39628. {
  39629. name: "Kaiju",
  39630. height: math.unit(240, "feet")
  39631. },
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(800, "feet")
  39635. },
  39636. {
  39637. name: "Macro+",
  39638. height: math.unit(2400, "feet")
  39639. },
  39640. {
  39641. name: "Macro++",
  39642. height: math.unit(8000, "feet")
  39643. },
  39644. {
  39645. name: "City-Crushing",
  39646. height: math.unit(24000, "feet")
  39647. },
  39648. {
  39649. name: "Mountain-Mashing",
  39650. height: math.unit(80000, "feet")
  39651. },
  39652. {
  39653. name: "District Demolisher",
  39654. height: math.unit(240000, "feet")
  39655. },
  39656. {
  39657. name: "Tri-County Terror",
  39658. height: math.unit(800000, "feet")
  39659. },
  39660. {
  39661. name: "State Smasher",
  39662. height: math.unit(2.4e6, "feet")
  39663. },
  39664. {
  39665. name: "Nation Nemesis",
  39666. height: math.unit(8e6, "feet")
  39667. },
  39668. {
  39669. name: "Continent Cracker",
  39670. height: math.unit(2.4e7, "feet")
  39671. },
  39672. {
  39673. name: "Planet-Pillaging",
  39674. height: math.unit(8e7, "feet")
  39675. },
  39676. {
  39677. name: "Earth-Eclipsing",
  39678. height: math.unit(2.4e8, "feet")
  39679. },
  39680. {
  39681. name: "Jovian-Jostling",
  39682. height: math.unit(8e8, "feet")
  39683. },
  39684. {
  39685. name: "Gas Giant Gulper",
  39686. height: math.unit(2.4e9, "feet")
  39687. },
  39688. {
  39689. name: "Astral Annihilator",
  39690. height: math.unit(8e9, "feet")
  39691. },
  39692. {
  39693. name: "Celestial Conqueror",
  39694. height: math.unit(2.4e10, "feet")
  39695. },
  39696. {
  39697. name: "Sol-Swallowing",
  39698. height: math.unit(8e10, "feet")
  39699. },
  39700. {
  39701. name: "Hunter of the Heavens",
  39702. height: math.unit(2.4e13, "feet")
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(6 + 8/12, "feet"),
  39711. weight: math.unit(250, "kilograms"),
  39712. volume: math.unit(28, "liters"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/rebecca-pawlson/front.svg",
  39716. extra: 1737/1596,
  39717. bottom: 107/1844
  39718. }
  39719. },
  39720. back: {
  39721. height: math.unit(6 + 8/12, "feet"),
  39722. weight: math.unit(250, "kilograms"),
  39723. volume: math.unit(28, "liters"),
  39724. name: "Back",
  39725. image: {
  39726. source: "./media/characters/rebecca-pawlson/back.svg",
  39727. extra: 1702/1523,
  39728. bottom: 86/1788
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(6 + 8/12, "feet")
  39736. },
  39737. {
  39738. name: "Mini Macro",
  39739. height: math.unit(10, "feet"),
  39740. default: true
  39741. },
  39742. {
  39743. name: "Macro",
  39744. height: math.unit(100, "feet")
  39745. },
  39746. {
  39747. name: "Mega Macro",
  39748. height: math.unit(2500, "feet")
  39749. },
  39750. {
  39751. name: "Giga Macro",
  39752. height: math.unit(50, "miles")
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(7 + 6/12, "feet"),
  39761. weight: math.unit(600, "lb"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/moxie-nova/front.svg",
  39765. extra: 1734/1652,
  39766. bottom: 41/1775
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(7 + 6/12, "feet"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39780. {
  39781. goat: {
  39782. height: math.unit(4, "feet"),
  39783. weight: math.unit(180, "lb"),
  39784. name: "Goat",
  39785. image: {
  39786. source: "./media/characters/tiffany/goat.svg",
  39787. extra: 1845/1595,
  39788. bottom: 106/1951
  39789. }
  39790. },
  39791. front: {
  39792. height: math.unit(5, "feet"),
  39793. weight: math.unit(150, "lb"),
  39794. name: "Foxcoon",
  39795. image: {
  39796. source: "./media/characters/tiffany/foxcoon.svg",
  39797. extra: 1941/1845,
  39798. bottom: 58/1999
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Normal",
  39805. height: math.unit(5, "feet"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(8, "feet"),
  39815. weight: math.unit(300, "lb"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/raxinath/front.svg",
  39819. extra: 1407/1309,
  39820. bottom: 39/1446
  39821. }
  39822. },
  39823. back: {
  39824. height: math.unit(8, "feet"),
  39825. weight: math.unit(300, "lb"),
  39826. name: "Back",
  39827. image: {
  39828. source: "./media/characters/raxinath/back.svg",
  39829. extra: 1405/1315,
  39830. bottom: 9/1414
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Speck",
  39837. height: math.unit(0.5, "nm")
  39838. },
  39839. {
  39840. name: "Micro",
  39841. height: math.unit(3, "inches")
  39842. },
  39843. {
  39844. name: "Kobold",
  39845. height: math.unit(3, "feet")
  39846. },
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(8, "feet"),
  39850. default: true
  39851. },
  39852. {
  39853. name: "Giant",
  39854. height: math.unit(50, "feet")
  39855. },
  39856. {
  39857. name: "Macro",
  39858. height: math.unit(1000, "feet")
  39859. },
  39860. {
  39861. name: "Megamacro",
  39862. height: math.unit(1, "mile")
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(10, "feet"),
  39871. weight: math.unit(1442, "lb"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/mal-dragon/front.svg",
  39875. extra: 1515/1444,
  39876. bottom: 113/1628
  39877. }
  39878. },
  39879. back: {
  39880. height: math.unit(10, "feet"),
  39881. weight: math.unit(1442, "lb"),
  39882. name: "Back",
  39883. image: {
  39884. source: "./media/characters/mal-dragon/back.svg",
  39885. extra: 1527/1434,
  39886. bottom: 25/1552
  39887. }
  39888. },
  39889. },
  39890. [
  39891. {
  39892. name: "Mortal Interaction",
  39893. height: math.unit(10, "feet"),
  39894. default: true
  39895. },
  39896. {
  39897. name: "Large",
  39898. height: math.unit(30, "feet")
  39899. },
  39900. {
  39901. name: "Kaiju",
  39902. height: math.unit(300, "feet")
  39903. },
  39904. {
  39905. name: "Megamacro",
  39906. height: math.unit(10000, "feet")
  39907. },
  39908. {
  39909. name: "Continent Cracker",
  39910. height: math.unit(30000000, "feet")
  39911. },
  39912. {
  39913. name: "Sol-Swallowing",
  39914. height: math.unit(1e11, "feet")
  39915. },
  39916. {
  39917. name: "Light Universal",
  39918. height: math.unit(5, "universes")
  39919. },
  39920. {
  39921. name: "Universe Atoms",
  39922. height: math.unit(1.829e9, "universes")
  39923. },
  39924. {
  39925. name: "Light Multiversal",
  39926. height: math.unit(5, "multiverses")
  39927. },
  39928. {
  39929. name: "Multiverse Atoms",
  39930. height: math.unit(1.829e9, "multiverses")
  39931. },
  39932. {
  39933. name: "Fabric of Time",
  39934. height: math.unit(1e262, "multiverses")
  39935. },
  39936. ]
  39937. ))
  39938. characterMakers.push(() => makeCharacter(
  39939. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39940. {
  39941. front: {
  39942. height: math.unit(9, "feet"),
  39943. weight: math.unit(1050, "lb"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/tabitha/front.svg",
  39947. extra: 2083/1994,
  39948. bottom: 68/2151
  39949. }
  39950. },
  39951. },
  39952. [
  39953. {
  39954. name: "Baseline",
  39955. height: math.unit(9, "feet"),
  39956. default: true
  39957. },
  39958. {
  39959. name: "Giant",
  39960. height: math.unit(90, "feet")
  39961. },
  39962. {
  39963. name: "Macro",
  39964. height: math.unit(900, "feet")
  39965. },
  39966. {
  39967. name: "Megamacro",
  39968. height: math.unit(9000, "feet")
  39969. },
  39970. {
  39971. name: "City-Crushing",
  39972. height: math.unit(27000, "feet")
  39973. },
  39974. {
  39975. name: "Mountain-Mashing",
  39976. height: math.unit(90000, "feet")
  39977. },
  39978. {
  39979. name: "Nation Nemesis",
  39980. height: math.unit(9e6, "feet")
  39981. },
  39982. {
  39983. name: "Continent Cracker",
  39984. height: math.unit(27e6, "feet")
  39985. },
  39986. {
  39987. name: "Earth-Eclipsing",
  39988. height: math.unit(2.7e8, "feet")
  39989. },
  39990. {
  39991. name: "Gas Giant Gulper",
  39992. height: math.unit(2.7e9, "feet")
  39993. },
  39994. {
  39995. name: "Sol-Swallowing",
  39996. height: math.unit(9e10, "feet")
  39997. },
  39998. {
  39999. name: "Galaxy Gulper",
  40000. height: math.unit(9, "galaxies")
  40001. },
  40002. {
  40003. name: "Cosmos Churner",
  40004. height: math.unit(9, "universes")
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40010. {
  40011. front: {
  40012. height: math.unit(160, "cm"),
  40013. weight: math.unit(55, "kg"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/tow/front.svg",
  40017. extra: 1751/1722,
  40018. bottom: 74/1825
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Norm",
  40025. height: math.unit(160, "cm")
  40026. },
  40027. {
  40028. name: "Casual",
  40029. height: math.unit(3200, "m"),
  40030. default: true
  40031. },
  40032. {
  40033. name: "Show-Off",
  40034. height: math.unit(160, "km")
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40040. {
  40041. front: {
  40042. height: math.unit(7 + 11/12, "feet"),
  40043. weight: math.unit(342.8, "lb"),
  40044. name: "Front",
  40045. image: {
  40046. source: "./media/characters/vivian-orca-dragon/front.svg",
  40047. extra: 1890/1865,
  40048. bottom: 28/1918
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Micro",
  40055. height: math.unit(5, "inches")
  40056. },
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(7 + 11/12, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(395 + 7/12, "feet")
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40070. {
  40071. side: {
  40072. height: math.unit(10, "feet"),
  40073. weight: math.unit(1442, "lb"),
  40074. name: "Side",
  40075. image: {
  40076. source: "./media/characters/lotherakon/side.svg",
  40077. extra: 1604/1497,
  40078. bottom: 89/1693
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Mortal Interaction",
  40085. height: math.unit(10, "feet")
  40086. },
  40087. {
  40088. name: "Large",
  40089. height: math.unit(30, "feet"),
  40090. default: true
  40091. },
  40092. {
  40093. name: "Giant",
  40094. height: math.unit(100, "feet")
  40095. },
  40096. {
  40097. name: "Kaiju",
  40098. height: math.unit(300, "feet")
  40099. },
  40100. {
  40101. name: "Macro",
  40102. height: math.unit(1000, "feet")
  40103. },
  40104. {
  40105. name: "Macro+",
  40106. height: math.unit(3000, "feet")
  40107. },
  40108. {
  40109. name: "Megamacro",
  40110. height: math.unit(10000, "feet")
  40111. },
  40112. {
  40113. name: "City-Crushing",
  40114. height: math.unit(30000, "feet")
  40115. },
  40116. {
  40117. name: "Continent Cracker",
  40118. height: math.unit(30e6, "feet")
  40119. },
  40120. {
  40121. name: "Earth Eclipsing",
  40122. height: math.unit(3e8, "feet")
  40123. },
  40124. {
  40125. name: "Gas Giant Gulper",
  40126. height: math.unit(3e9, "feet")
  40127. },
  40128. {
  40129. name: "Sol-Swallowing",
  40130. height: math.unit(1e11, "feet")
  40131. },
  40132. {
  40133. name: "System Swallower",
  40134. height: math.unit(3e14, "feet")
  40135. },
  40136. {
  40137. name: "Galaxy Gulper",
  40138. height: math.unit(10, "galaxies")
  40139. },
  40140. {
  40141. name: "Light Universal",
  40142. height: math.unit(5, "universes")
  40143. },
  40144. {
  40145. name: "Universe Palm",
  40146. height: math.unit(20, "universes")
  40147. },
  40148. {
  40149. name: "Light Multiversal",
  40150. height: math.unit(5, "multiverses")
  40151. },
  40152. {
  40153. name: "Multiverse Palm",
  40154. height: math.unit(20, "multiverses")
  40155. },
  40156. {
  40157. name: "Inferno Incarnate",
  40158. height: math.unit(1e7, "multiverses")
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(8, "feet"),
  40167. weight: math.unit(1200, "lb"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/malithee/front.svg",
  40171. extra: 1675/1640,
  40172. bottom: 162/1837
  40173. }
  40174. },
  40175. },
  40176. [
  40177. {
  40178. name: "Mortal Interaction",
  40179. height: math.unit(8, "feet"),
  40180. default: true
  40181. },
  40182. {
  40183. name: "Large",
  40184. height: math.unit(24, "feet")
  40185. },
  40186. {
  40187. name: "Kaiju",
  40188. height: math.unit(240, "feet")
  40189. },
  40190. {
  40191. name: "Megamacro",
  40192. height: math.unit(8000, "feet")
  40193. },
  40194. {
  40195. name: "Continent Cracker",
  40196. height: math.unit(24e6, "feet")
  40197. },
  40198. {
  40199. name: "Earth-Eclipsing",
  40200. height: math.unit(2.4e8, "feet")
  40201. },
  40202. {
  40203. name: "Sol-Swallowing",
  40204. height: math.unit(8e10, "feet")
  40205. },
  40206. {
  40207. name: "Galaxy Gulper",
  40208. height: math.unit(8, "galaxies")
  40209. },
  40210. {
  40211. name: "Light Universal",
  40212. height: math.unit(4, "universes")
  40213. },
  40214. {
  40215. name: "Universe Atoms",
  40216. height: math.unit(1.829e9, "universes")
  40217. },
  40218. {
  40219. name: "Light Multiversal",
  40220. height: math.unit(4, "multiverses")
  40221. },
  40222. {
  40223. name: "Multiverse Atoms",
  40224. height: math.unit(1.829e9, "multiverses")
  40225. },
  40226. {
  40227. name: "Nigh-Omnipresence",
  40228. height: math.unit(8e261, "multiverses")
  40229. },
  40230. ]
  40231. ))
  40232. characterMakers.push(() => makeCharacter(
  40233. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40234. {
  40235. front: {
  40236. height: math.unit(10, "feet"),
  40237. weight: math.unit(1500, "lb"),
  40238. name: "Front",
  40239. image: {
  40240. source: "./media/characters/miles-thestia/front.svg",
  40241. extra: 1812/1727,
  40242. bottom: 86/1898
  40243. }
  40244. },
  40245. back: {
  40246. height: math.unit(10, "feet"),
  40247. weight: math.unit(1500, "lb"),
  40248. name: "Back",
  40249. image: {
  40250. source: "./media/characters/miles-thestia/back.svg",
  40251. extra: 1799/1690,
  40252. bottom: 47/1846
  40253. }
  40254. },
  40255. frontNsfw: {
  40256. height: math.unit(10, "feet"),
  40257. weight: math.unit(1500, "lb"),
  40258. name: "Front (NSFW)",
  40259. image: {
  40260. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40261. extra: 1812/1727,
  40262. bottom: 86/1898
  40263. }
  40264. },
  40265. },
  40266. [
  40267. {
  40268. name: "Mini-Macro",
  40269. height: math.unit(10, "feet"),
  40270. default: true
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(25, "feet"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/titan-s-wulf/front.svg",
  40282. extra: 1560/1484,
  40283. bottom: 76/1636
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Smallest",
  40290. height: math.unit(25, "feet"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Normal",
  40295. height: math.unit(200, "feet")
  40296. },
  40297. {
  40298. name: "Macro",
  40299. height: math.unit(200000, "feet")
  40300. },
  40301. {
  40302. name: "Multiversal Original",
  40303. height: math.unit(10000, "multiverses")
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(8, "feet"),
  40312. weight: math.unit(553, "lb"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/tawendeh/front.svg",
  40316. extra: 2365/2268,
  40317. bottom: 83/2448
  40318. }
  40319. },
  40320. frontClothed: {
  40321. height: math.unit(8, "feet"),
  40322. weight: math.unit(553, "lb"),
  40323. name: "Front (Clothed)",
  40324. image: {
  40325. source: "./media/characters/tawendeh/front-clothed.svg",
  40326. extra: 2365/2268,
  40327. bottom: 83/2448
  40328. }
  40329. },
  40330. back: {
  40331. height: math.unit(8, "feet"),
  40332. weight: math.unit(553, "lb"),
  40333. name: "Back",
  40334. image: {
  40335. source: "./media/characters/tawendeh/back.svg",
  40336. extra: 2397/2294,
  40337. bottom: 42/2439
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Mortal Interaction",
  40344. height: math.unit(8, "feet"),
  40345. default: true
  40346. },
  40347. {
  40348. name: "Giant",
  40349. height: math.unit(80, "feet")
  40350. },
  40351. {
  40352. name: "Macro",
  40353. height: math.unit(800, "feet")
  40354. },
  40355. {
  40356. name: "Megamacro",
  40357. height: math.unit(8000, "feet")
  40358. },
  40359. {
  40360. name: "City-Crushing",
  40361. height: math.unit(24000, "feet")
  40362. },
  40363. {
  40364. name: "Mountain-Mashing",
  40365. height: math.unit(80000, "feet")
  40366. },
  40367. {
  40368. name: "Nation Nemesis",
  40369. height: math.unit(8e6, "feet")
  40370. },
  40371. {
  40372. name: "Continent Cracker",
  40373. height: math.unit(24e6, "feet")
  40374. },
  40375. {
  40376. name: "Earth-Eclipsing",
  40377. height: math.unit(2.4e8, "feet")
  40378. },
  40379. {
  40380. name: "Gas Giant Gulper",
  40381. height: math.unit(2.4e9, "feet")
  40382. },
  40383. {
  40384. name: "Sol-Swallowing",
  40385. height: math.unit(8e10, "feet")
  40386. },
  40387. {
  40388. name: "Galaxy Gulper",
  40389. height: math.unit(8, "galaxies")
  40390. },
  40391. {
  40392. name: "Cosmos Churner",
  40393. height: math.unit(8, "universes")
  40394. },
  40395. {
  40396. name: "Omnipotent Otter",
  40397. height: math.unit(80, "universes")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(2.6, "meters"),
  40406. weight: math.unit(900, "kg"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/neesha/front.svg",
  40410. extra: 1803/1653,
  40411. bottom: 128/1931
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(2.6, "meters"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(50, "meters")
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(5, "feet"),
  40432. weight: math.unit(185, "lb"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/kyera/front.svg",
  40436. extra: 1875/1790,
  40437. bottom: 96/1971
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(5, "feet"),
  40445. default: true
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(7 + 6/12, "feet"),
  40454. weight: math.unit(540, "lb"),
  40455. name: "Front",
  40456. image: {
  40457. source: "./media/characters/yuko/front.svg",
  40458. extra: 1282/1222,
  40459. bottom: 101/1383
  40460. }
  40461. },
  40462. frontClothed: {
  40463. height: math.unit(7 + 6/12, "feet"),
  40464. weight: math.unit(540, "lb"),
  40465. name: "Front (Clothed)",
  40466. image: {
  40467. source: "./media/characters/yuko/front-clothed.svg",
  40468. extra: 1282/1222,
  40469. bottom: 101/1383
  40470. }
  40471. },
  40472. },
  40473. [
  40474. {
  40475. name: "Normal",
  40476. height: math.unit(7 + 6/12, "feet"),
  40477. default: true
  40478. },
  40479. {
  40480. name: "Macro",
  40481. height: math.unit(26 + 9/12, "feet")
  40482. },
  40483. {
  40484. name: "Megamacro",
  40485. height: math.unit(300, "feet")
  40486. },
  40487. {
  40488. name: "Gigamacro",
  40489. height: math.unit(5000, "feet")
  40490. },
  40491. {
  40492. name: "Planetary",
  40493. height: math.unit(10000, "miles")
  40494. },
  40495. ]
  40496. ))
  40497. characterMakers.push(() => makeCharacter(
  40498. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40499. {
  40500. front: {
  40501. height: math.unit(8 + 2/12, "feet"),
  40502. weight: math.unit(600, "lb"),
  40503. name: "Front",
  40504. image: {
  40505. source: "./media/characters/deam-nitrel/front.svg",
  40506. extra: 1308/1234,
  40507. bottom: 125/1433
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "Normal",
  40514. height: math.unit(8 + 2/12, "feet"),
  40515. default: true
  40516. },
  40517. ]
  40518. ))
  40519. characterMakers.push(() => makeCharacter(
  40520. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40521. {
  40522. front: {
  40523. height: math.unit(6.1, "feet"),
  40524. weight: math.unit(180, "lb"),
  40525. name: "Front",
  40526. image: {
  40527. source: "./media/characters/skyress/front.svg",
  40528. extra: 1045/915,
  40529. bottom: 28/1073
  40530. }
  40531. },
  40532. maw: {
  40533. height: math.unit(1, "feet"),
  40534. name: "Maw",
  40535. image: {
  40536. source: "./media/characters/skyress/maw.svg"
  40537. }
  40538. },
  40539. },
  40540. [
  40541. {
  40542. name: "Normal",
  40543. height: math.unit(6.1, "feet"),
  40544. default: true
  40545. },
  40546. {
  40547. name: "Macro",
  40548. height: math.unit(200, "feet")
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(4 + 2/12, "feet"),
  40557. weight: math.unit(40, "kg"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/amethyst-jones/front.svg",
  40561. extra: 1220/1150,
  40562. bottom: 101/1321
  40563. }
  40564. },
  40565. },
  40566. [
  40567. {
  40568. name: "Normal",
  40569. height: math.unit(4 + 2/12, "feet"),
  40570. default: true
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(1.7, "m"),
  40579. weight: math.unit(135, "lb"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/jade/front.svg",
  40583. extra: 1818/1767,
  40584. bottom: 32/1850
  40585. }
  40586. },
  40587. back: {
  40588. height: math.unit(1.7, "m"),
  40589. weight: math.unit(135, "lb"),
  40590. name: "Back",
  40591. image: {
  40592. source: "./media/characters/jade/back.svg",
  40593. extra: 1869/1809,
  40594. bottom: 35/1904
  40595. }
  40596. },
  40597. hand: {
  40598. height: math.unit(0.24, "m"),
  40599. name: "Hand",
  40600. image: {
  40601. source: "./media/characters/jade/hand.svg"
  40602. }
  40603. },
  40604. foot: {
  40605. height: math.unit(0.263, "m"),
  40606. name: "Foot",
  40607. image: {
  40608. source: "./media/characters/jade/foot.svg"
  40609. }
  40610. },
  40611. dick: {
  40612. height: math.unit(0.47, "m"),
  40613. name: "Dick",
  40614. image: {
  40615. source: "./media/characters/jade/dick.svg"
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Micro",
  40622. height: math.unit(22, "cm")
  40623. },
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(1.7, "m"),
  40627. default: true
  40628. },
  40629. {
  40630. name: "Macro",
  40631. height: math.unit(152, "m")
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(100, "miles"),
  40640. weight: math.unit(20000, "tons"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/cookie/front.svg",
  40644. extra: 1125/1070,
  40645. bottom: 30/1155
  40646. }
  40647. },
  40648. },
  40649. [
  40650. {
  40651. name: "Big",
  40652. height: math.unit(50, "feet")
  40653. },
  40654. {
  40655. name: "Macro",
  40656. height: math.unit(100, "miles"),
  40657. default: true
  40658. },
  40659. {
  40660. name: "Megamacro",
  40661. height: math.unit(90000, "miles")
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(6, "feet"),
  40670. weight: math.unit(145, "lb"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/farzian/front.svg",
  40674. extra: 1902/1693,
  40675. bottom: 108/2010
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Macro",
  40682. height: math.unit(500, "feet"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(3 + 6/12, "feet"),
  40692. weight: math.unit(50, "lb"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/kimberly-tilson/front.svg",
  40696. extra: 1400/1322,
  40697. bottom: 36/1436
  40698. }
  40699. },
  40700. back: {
  40701. height: math.unit(3 + 6/12, "feet"),
  40702. weight: math.unit(50, "lb"),
  40703. name: "Back",
  40704. image: {
  40705. source: "./media/characters/kimberly-tilson/back.svg",
  40706. extra: 1370/1307,
  40707. bottom: 20/1390
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(3 + 6/12, "feet"),
  40715. default: true
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(1148, "feet"),
  40724. weight: math.unit(34057, "lb"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/harthos/front.svg",
  40728. extra: 1391/1339,
  40729. bottom: 13/1404
  40730. }
  40731. },
  40732. },
  40733. [
  40734. {
  40735. name: "Macro",
  40736. height: math.unit(1148, "feet"),
  40737. default: true
  40738. },
  40739. ]
  40740. ))
  40741. characterMakers.push(() => makeCharacter(
  40742. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40743. {
  40744. front: {
  40745. height: math.unit(15, "feet"),
  40746. name: "Front",
  40747. image: {
  40748. source: "./media/characters/hypatia/front.svg",
  40749. extra: 1653/1591,
  40750. bottom: 79/1732
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Normal",
  40757. height: math.unit(15, "feet")
  40758. },
  40759. {
  40760. name: "Small",
  40761. height: math.unit(300, "feet")
  40762. },
  40763. {
  40764. name: "Macro",
  40765. height: math.unit(2500, "feet"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Mega Macro",
  40770. height: math.unit(1500, "miles")
  40771. },
  40772. {
  40773. name: "Giga Macro",
  40774. height: math.unit(1.5e6, "miles")
  40775. },
  40776. ]
  40777. ))
  40778. characterMakers.push(() => makeCharacter(
  40779. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40780. {
  40781. front: {
  40782. height: math.unit(6, "feet"),
  40783. weight: math.unit(200, "lb"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/wulver/front.svg",
  40787. extra: 1724/1632,
  40788. bottom: 130/1854
  40789. }
  40790. },
  40791. frontNsfw: {
  40792. height: math.unit(6, "feet"),
  40793. weight: math.unit(200, "lb"),
  40794. name: "Front (NSFW)",
  40795. image: {
  40796. source: "./media/characters/wulver/front-nsfw.svg",
  40797. extra: 1724/1632,
  40798. bottom: 130/1854
  40799. }
  40800. },
  40801. },
  40802. [
  40803. {
  40804. name: "Human-Sized",
  40805. height: math.unit(6, "feet")
  40806. },
  40807. {
  40808. name: "Normal",
  40809. height: math.unit(4, "meters"),
  40810. default: true
  40811. },
  40812. {
  40813. name: "Large",
  40814. height: math.unit(6, "m")
  40815. },
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40820. {
  40821. front: {
  40822. height: math.unit(7, "feet"),
  40823. name: "Front",
  40824. image: {
  40825. source: "./media/characters/maru/front.svg",
  40826. extra: 1595/1570,
  40827. bottom: 0/1595
  40828. }
  40829. },
  40830. },
  40831. [
  40832. {
  40833. name: "Normal",
  40834. height: math.unit(7, "feet"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Macro",
  40839. height: math.unit(700, "feet")
  40840. },
  40841. {
  40842. name: "Mega Macro",
  40843. height: math.unit(25, "miles")
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(6, "feet"),
  40852. weight: math.unit(170, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/xenon/front.svg",
  40856. extra: 1376/1305,
  40857. bottom: 56/1432
  40858. }
  40859. },
  40860. back: {
  40861. height: math.unit(6, "feet"),
  40862. weight: math.unit(170, "lb"),
  40863. name: "Back",
  40864. image: {
  40865. source: "./media/characters/xenon/back.svg",
  40866. extra: 1328/1259,
  40867. bottom: 95/1423
  40868. }
  40869. },
  40870. maw: {
  40871. height: math.unit(0.52, "feet"),
  40872. name: "Maw",
  40873. image: {
  40874. source: "./media/characters/xenon/maw.svg"
  40875. }
  40876. },
  40877. hand: {
  40878. height: math.unit(0.82, "feet"),
  40879. name: "Hand",
  40880. image: {
  40881. source: "./media/characters/xenon/hand.svg"
  40882. }
  40883. },
  40884. foot: {
  40885. height: math.unit(1.13, "feet"),
  40886. name: "Foot",
  40887. image: {
  40888. source: "./media/characters/xenon/foot.svg"
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Micro",
  40895. height: math.unit(0.8, "inches")
  40896. },
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(6, "feet")
  40900. },
  40901. {
  40902. name: "Macro",
  40903. height: math.unit(50, "feet"),
  40904. default: true
  40905. },
  40906. {
  40907. name: "Macro+",
  40908. height: math.unit(250, "feet")
  40909. },
  40910. {
  40911. name: "Megamacro",
  40912. height: math.unit(1500, "feet")
  40913. },
  40914. ]
  40915. ))
  40916. characterMakers.push(() => makeCharacter(
  40917. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40918. {
  40919. front: {
  40920. height: math.unit(7 + 5/12, "feet"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/zane/front.svg",
  40924. extra: 1260/1203,
  40925. bottom: 94/1354
  40926. }
  40927. },
  40928. back: {
  40929. height: math.unit(5.05, "feet"),
  40930. name: "Back",
  40931. image: {
  40932. source: "./media/characters/zane/back.svg",
  40933. extra: 893/829,
  40934. bottom: 30/923
  40935. }
  40936. },
  40937. werewolf: {
  40938. height: math.unit(11, "feet"),
  40939. name: "Werewolf",
  40940. image: {
  40941. source: "./media/characters/zane/werewolf.svg",
  40942. extra: 1383/1323,
  40943. bottom: 89/1472
  40944. }
  40945. },
  40946. foot: {
  40947. height: math.unit(1.46, "feet"),
  40948. name: "Foot",
  40949. image: {
  40950. source: "./media/characters/zane/foot.svg"
  40951. }
  40952. },
  40953. footFront: {
  40954. height: math.unit(0.784, "feet"),
  40955. name: "Foot (Front)",
  40956. image: {
  40957. source: "./media/characters/zane/foot-front.svg"
  40958. }
  40959. },
  40960. dick: {
  40961. height: math.unit(1.95, "feet"),
  40962. name: "Dick",
  40963. image: {
  40964. source: "./media/characters/zane/dick.svg"
  40965. }
  40966. },
  40967. dickWerewolf: {
  40968. height: math.unit(3.77, "feet"),
  40969. name: "Dick (Werewolf)",
  40970. image: {
  40971. source: "./media/characters/zane/dick.svg"
  40972. }
  40973. },
  40974. },
  40975. [
  40976. {
  40977. name: "Normal",
  40978. height: math.unit(7 + 5/12, "feet"),
  40979. default: true
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(6 + 2/12, "feet"),
  40988. weight: math.unit(284, "lb"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/benni-desparque/front.svg",
  40992. extra: 1353/1126,
  40993. bottom: 69/1422
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Civilian",
  41000. height: math.unit(6 + 2/12, "feet")
  41001. },
  41002. {
  41003. name: "Normal",
  41004. height: math.unit(98, "feet"),
  41005. default: true
  41006. },
  41007. {
  41008. name: "Kaiju Fighter",
  41009. height: math.unit(268, "feet")
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(5, "feet"),
  41018. weight: math.unit(105, "lb"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/maxine/front.svg",
  41022. extra: 1386/1250,
  41023. bottom: 71/1457
  41024. }
  41025. },
  41026. },
  41027. [
  41028. {
  41029. name: "Normal",
  41030. height: math.unit(5, "feet"),
  41031. default: true
  41032. },
  41033. ]
  41034. ))
  41035. characterMakers.push(() => makeCharacter(
  41036. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41037. {
  41038. front: {
  41039. height: math.unit(11 + 7/12, "feet"),
  41040. weight: math.unit(9576, "lb"),
  41041. name: "Front",
  41042. image: {
  41043. source: "./media/characters/scaly/front.svg",
  41044. extra: 888/867,
  41045. bottom: 36/924
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(11 + 7/12, "feet"),
  41053. default: true
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41059. {
  41060. front: {
  41061. height: math.unit(6 + 3/12, "feet"),
  41062. name: "Front",
  41063. image: {
  41064. source: "./media/characters/saelria/front.svg",
  41065. extra: 1243/1138,
  41066. bottom: 46/1289
  41067. }
  41068. },
  41069. },
  41070. [
  41071. {
  41072. name: "Micro",
  41073. height: math.unit(6, "inches"),
  41074. },
  41075. {
  41076. name: "Normal",
  41077. height: math.unit(6 + 3/12, "feet"),
  41078. default: true
  41079. },
  41080. {
  41081. name: "Macro",
  41082. height: math.unit(25, "feet")
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41088. {
  41089. front: {
  41090. height: math.unit(80, "meters"),
  41091. weight: math.unit(7000, "tonnes"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/tef/front.svg",
  41095. extra: 2036/1991,
  41096. bottom: 54/2090
  41097. }
  41098. },
  41099. back: {
  41100. height: math.unit(80, "meters"),
  41101. weight: math.unit(7000, "tonnes"),
  41102. name: "Back",
  41103. image: {
  41104. source: "./media/characters/tef/back.svg",
  41105. extra: 2036/1991,
  41106. bottom: 54/2090
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Macro",
  41113. height: math.unit(80, "meters"),
  41114. default: true
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41120. {
  41121. front: {
  41122. height: math.unit(13, "feet"),
  41123. weight: math.unit(6, "tons"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/rover/front.svg",
  41127. extra: 1233/1156,
  41128. bottom: 50/1283
  41129. }
  41130. },
  41131. back: {
  41132. height: math.unit(13, "feet"),
  41133. weight: math.unit(6, "tons"),
  41134. name: "Back",
  41135. image: {
  41136. source: "./media/characters/rover/back.svg",
  41137. extra: 1327/1258,
  41138. bottom: 39/1366
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(13, "feet"),
  41146. default: true
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(1300, "feet")
  41151. },
  41152. {
  41153. name: "Megamacro",
  41154. height: math.unit(1300, "miles")
  41155. },
  41156. {
  41157. name: "Gigamacro",
  41158. height: math.unit(1300000, "miles")
  41159. },
  41160. ]
  41161. ))
  41162. characterMakers.push(() => makeCharacter(
  41163. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41164. {
  41165. front: {
  41166. height: math.unit(6, "feet"),
  41167. weight: math.unit(150, "lb"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/ariz/front.svg",
  41171. extra: 1401/1346,
  41172. bottom: 5/1406
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(10, "feet"),
  41180. default: true
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(6, "feet"),
  41189. weight: math.unit(140, "lb"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/sigrun/front.svg",
  41193. extra: 1418/1359,
  41194. bottom: 27/1445
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Macro",
  41201. height: math.unit(35, "feet"),
  41202. default: true
  41203. },
  41204. ]
  41205. ))
  41206. characterMakers.push(() => makeCharacter(
  41207. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41208. {
  41209. front: {
  41210. height: math.unit(6, "feet"),
  41211. weight: math.unit(150, "lb"),
  41212. name: "Front",
  41213. image: {
  41214. source: "./media/characters/numin/front.svg",
  41215. extra: 1433/1388,
  41216. bottom: 12/1445
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Macro",
  41223. height: math.unit(21.5, "km"),
  41224. default: true
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41230. {
  41231. front: {
  41232. height: math.unit(6, "feet"),
  41233. weight: math.unit(463, "lb"),
  41234. name: "Front",
  41235. image: {
  41236. source: "./media/characters/melwa/front.svg",
  41237. extra: 1307/1248,
  41238. bottom: 93/1400
  41239. }
  41240. },
  41241. },
  41242. [
  41243. {
  41244. name: "Macro",
  41245. height: math.unit(50, "meters"),
  41246. default: true
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41252. {
  41253. front: {
  41254. height: math.unit(325, "feet"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/zorkaiju/front.svg",
  41258. extra: 1955/1814,
  41259. bottom: 40/1995
  41260. }
  41261. },
  41262. frontExtended: {
  41263. height: math.unit(325, "feet"),
  41264. name: "Front (Extended)",
  41265. image: {
  41266. source: "./media/characters/zorkaiju/front-extended.svg",
  41267. extra: 1955/1814,
  41268. bottom: 40/1995
  41269. }
  41270. },
  41271. side: {
  41272. height: math.unit(325, "feet"),
  41273. name: "Side",
  41274. image: {
  41275. source: "./media/characters/zorkaiju/side.svg",
  41276. extra: 1495/1396,
  41277. bottom: 17/1512
  41278. }
  41279. },
  41280. sideExtended: {
  41281. height: math.unit(325, "feet"),
  41282. name: "Side (Extended)",
  41283. image: {
  41284. source: "./media/characters/zorkaiju/side-extended.svg",
  41285. extra: 1495/1396,
  41286. bottom: 17/1512
  41287. }
  41288. },
  41289. back: {
  41290. height: math.unit(325, "feet"),
  41291. name: "Back",
  41292. image: {
  41293. source: "./media/characters/zorkaiju/back.svg",
  41294. extra: 1959/1821,
  41295. bottom: 31/1990
  41296. }
  41297. },
  41298. backExtended: {
  41299. height: math.unit(325, "feet"),
  41300. name: "Back (Extended)",
  41301. image: {
  41302. source: "./media/characters/zorkaiju/back-extended.svg",
  41303. extra: 1959/1821,
  41304. bottom: 31/1990
  41305. }
  41306. },
  41307. hand: {
  41308. height: math.unit(58.4, "feet"),
  41309. name: "Hand",
  41310. image: {
  41311. source: "./media/characters/zorkaiju/hand.svg"
  41312. }
  41313. },
  41314. handExtended: {
  41315. height: math.unit(61.4, "feet"),
  41316. name: "Hand (Extended)",
  41317. image: {
  41318. source: "./media/characters/zorkaiju/hand-extended.svg"
  41319. }
  41320. },
  41321. foot: {
  41322. height: math.unit(95, "feet"),
  41323. name: "Foot",
  41324. image: {
  41325. source: "./media/characters/zorkaiju/foot.svg"
  41326. }
  41327. },
  41328. leftArm: {
  41329. height: math.unit(59, "feet"),
  41330. name: "Left Arm",
  41331. image: {
  41332. source: "./media/characters/zorkaiju/left-arm.svg"
  41333. }
  41334. },
  41335. rightArm: {
  41336. height: math.unit(59, "feet"),
  41337. name: "Right Arm",
  41338. image: {
  41339. source: "./media/characters/zorkaiju/right-arm.svg"
  41340. }
  41341. },
  41342. tail: {
  41343. height: math.unit(104, "feet"),
  41344. name: "Tail",
  41345. image: {
  41346. source: "./media/characters/zorkaiju/tail.svg"
  41347. }
  41348. },
  41349. tailExtended: {
  41350. height: math.unit(104, "feet"),
  41351. name: "Tail (Extended)",
  41352. image: {
  41353. source: "./media/characters/zorkaiju/tail-extended.svg"
  41354. }
  41355. },
  41356. tailBottom: {
  41357. height: math.unit(104, "feet"),
  41358. name: "Tail Bottom",
  41359. image: {
  41360. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41361. }
  41362. },
  41363. crystal: {
  41364. height: math.unit(27.54, "feet"),
  41365. name: "Crystal",
  41366. image: {
  41367. source: "./media/characters/zorkaiju/crystal.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Kaiju",
  41374. height: math.unit(325, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(6 + 1/12, "feet"),
  41384. weight: math.unit(115, "lb"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/bailey-belfry/front.svg",
  41388. extra: 1240/1121,
  41389. bottom: 101/1341
  41390. }
  41391. },
  41392. },
  41393. [
  41394. {
  41395. name: "Normal",
  41396. height: math.unit(6 + 1/12, "feet"),
  41397. default: true
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41403. {
  41404. side: {
  41405. height: math.unit(4, "meters"),
  41406. weight: math.unit(250, "kg"),
  41407. name: "Side",
  41408. image: {
  41409. source: "./media/characters/blacky/side.svg",
  41410. extra: 1027/919,
  41411. bottom: 43/1070
  41412. }
  41413. },
  41414. maw: {
  41415. height: math.unit(1, "meters"),
  41416. name: "Maw",
  41417. image: {
  41418. source: "./media/characters/blacky/maw.svg"
  41419. }
  41420. },
  41421. paw: {
  41422. height: math.unit(1, "meters"),
  41423. name: "Paw",
  41424. image: {
  41425. source: "./media/characters/blacky/paw.svg"
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(4, "meters"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(170, "cm"),
  41442. weight: math.unit(66, "kg"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/thux-ei/front.svg",
  41446. extra: 1109/1011,
  41447. bottom: 8/1117
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(170, "cm"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(5, "feet"),
  41464. weight: math.unit(120, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/roxanne-voltaire/front.svg",
  41468. extra: 1901/1779,
  41469. bottom: 53/1954
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(5, "feet"),
  41477. default: true
  41478. },
  41479. {
  41480. name: "Giant",
  41481. height: math.unit(50, "feet")
  41482. },
  41483. {
  41484. name: "Titan",
  41485. height: math.unit(500, "feet")
  41486. },
  41487. {
  41488. name: "Macro",
  41489. height: math.unit(5000, "feet")
  41490. },
  41491. {
  41492. name: "Megamacro",
  41493. height: math.unit(50000, "feet")
  41494. },
  41495. {
  41496. name: "Gigamacro",
  41497. height: math.unit(500000, "feet")
  41498. },
  41499. {
  41500. name: "Teramacro",
  41501. height: math.unit(5e6, "feet")
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(6 + 2/12, "feet"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/squeaks/front.svg",
  41513. extra: 1823/1768,
  41514. bottom: 138/1961
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Micro",
  41521. height: math.unit(0.5, "inches")
  41522. },
  41523. {
  41524. name: "Normal",
  41525. height: math.unit(6 + 2/12, "feet"),
  41526. default: true
  41527. },
  41528. {
  41529. name: "Macro",
  41530. height: math.unit(600, "feet")
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(1.72, "meters"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/archinger/front.svg",
  41542. extra: 1861/1675,
  41543. bottom: 125/1986
  41544. }
  41545. },
  41546. back: {
  41547. height: math.unit(1.72, "meters"),
  41548. name: "Back",
  41549. image: {
  41550. source: "./media/characters/archinger/back.svg",
  41551. extra: 1844/1701,
  41552. bottom: 104/1948
  41553. }
  41554. },
  41555. cock: {
  41556. height: math.unit(0.59, "feet"),
  41557. name: "Cock",
  41558. image: {
  41559. source: "./media/characters/archinger/cock.svg"
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(1.72, "meters"),
  41567. default: true
  41568. },
  41569. {
  41570. name: "Macro",
  41571. height: math.unit(84, "meters")
  41572. },
  41573. {
  41574. name: "Macro+",
  41575. height: math.unit(112, "meters")
  41576. },
  41577. {
  41578. name: "Macro++",
  41579. height: math.unit(960, "meters")
  41580. },
  41581. {
  41582. name: "Macro+++",
  41583. height: math.unit(4, "km")
  41584. },
  41585. {
  41586. name: "Macro++++",
  41587. height: math.unit(48, "km")
  41588. },
  41589. {
  41590. name: "Macro+++++",
  41591. height: math.unit(4500, "km")
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(5 + 5/12, "feet"),
  41600. name: "Front",
  41601. image: {
  41602. source: "./media/characters/alsnapz/front.svg",
  41603. extra: 1157/1065,
  41604. bottom: 42/1199
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(5 + 5/12, "feet"),
  41612. default: true
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41618. {
  41619. side: {
  41620. height: math.unit(3.2, "earths"),
  41621. name: "Side",
  41622. image: {
  41623. source: "./media/characters/mag/side.svg",
  41624. extra: 1331/1008,
  41625. bottom: 52/1383
  41626. }
  41627. },
  41628. wing: {
  41629. height: math.unit(1.94, "earths"),
  41630. name: "Wing",
  41631. image: {
  41632. source: "./media/characters/mag/wing.svg"
  41633. }
  41634. },
  41635. dick: {
  41636. height: math.unit(1.8, "earths"),
  41637. name: "Dick",
  41638. image: {
  41639. source: "./media/characters/mag/dick.svg"
  41640. }
  41641. },
  41642. ass: {
  41643. height: math.unit(1.33, "earths"),
  41644. name: "Ass",
  41645. image: {
  41646. source: "./media/characters/mag/ass.svg"
  41647. }
  41648. },
  41649. head: {
  41650. height: math.unit(1.1, "earths"),
  41651. name: "Head",
  41652. image: {
  41653. source: "./media/characters/mag/head.svg"
  41654. }
  41655. },
  41656. maw: {
  41657. height: math.unit(1.62, "earths"),
  41658. name: "Maw",
  41659. image: {
  41660. source: "./media/characters/mag/maw.svg"
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Small",
  41667. height: math.unit(162, "feet")
  41668. },
  41669. {
  41670. name: "Normal",
  41671. height: math.unit(3.2, "earths"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(512, "feet"),
  41681. weight: math.unit(63509, "tonnes"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/vorrel-harroc/front.svg",
  41685. extra: 1075/1063,
  41686. bottom: 62/1137
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(10, "feet")
  41694. },
  41695. {
  41696. name: "Macro",
  41697. height: math.unit(512, "feet"),
  41698. default: true
  41699. },
  41700. {
  41701. name: "Megamacro",
  41702. height: math.unit(256, "miles")
  41703. },
  41704. {
  41705. name: "Gigamacro",
  41706. height: math.unit(4096, "miles")
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41712. {
  41713. side: {
  41714. height: math.unit(50, "feet"),
  41715. name: "Side",
  41716. image: {
  41717. source: "./media/characters/froimar/side.svg",
  41718. extra: 855/638,
  41719. bottom: 99/954
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Macro",
  41726. height: math.unit(50, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41733. {
  41734. front: {
  41735. height: math.unit(210, "miles"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/timothy/front.svg",
  41739. extra: 1007/943,
  41740. bottom: 62/1069
  41741. }
  41742. },
  41743. frontSkirt: {
  41744. height: math.unit(210, "miles"),
  41745. name: "Front (Skirt)",
  41746. image: {
  41747. source: "./media/characters/timothy/front-skirt.svg",
  41748. extra: 1007/943,
  41749. bottom: 62/1069
  41750. }
  41751. },
  41752. frontCoat: {
  41753. height: math.unit(210, "miles"),
  41754. name: "Front (Coat)",
  41755. image: {
  41756. source: "./media/characters/timothy/front-coat.svg",
  41757. extra: 1007/943,
  41758. bottom: 62/1069
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(210, "miles"),
  41766. default: true
  41767. },
  41768. {
  41769. name: "Megamacro",
  41770. height: math.unit(210000, "miles")
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(188, "feet"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/pyotr/front.svg",
  41782. extra: 1912/1826,
  41783. bottom: 18/1930
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(188, "feet"),
  41791. default: true
  41792. },
  41793. {
  41794. name: "Megamacro",
  41795. height: math.unit(8, "miles")
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41801. {
  41802. side: {
  41803. height: math.unit(10, "feet"),
  41804. weight: math.unit(4500, "lb"),
  41805. name: "Side",
  41806. image: {
  41807. source: "./media/characters/ackart/side.svg",
  41808. extra: 1776/1668,
  41809. bottom: 116/1892
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Normal",
  41816. height: math.unit(10, "feet"),
  41817. default: true
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41823. {
  41824. side: {
  41825. height: math.unit(21, "feet"),
  41826. name: "Side",
  41827. image: {
  41828. source: "./media/characters/nolow/side.svg",
  41829. extra: 1484/1434,
  41830. bottom: 85/1569
  41831. }
  41832. },
  41833. sideErect: {
  41834. height: math.unit(21, "feet"),
  41835. name: "Side-erect",
  41836. image: {
  41837. source: "./media/characters/nolow/side-erect.svg",
  41838. extra: 1484/1434,
  41839. bottom: 85/1569
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Regular",
  41846. height: math.unit(12, "feet")
  41847. },
  41848. {
  41849. name: "Big Chee",
  41850. height: math.unit(21, "feet"),
  41851. default: true
  41852. },
  41853. ]
  41854. ))
  41855. characterMakers.push(() => makeCharacter(
  41856. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41857. {
  41858. front: {
  41859. height: math.unit(7, "feet"),
  41860. weight: math.unit(250, "lb"),
  41861. name: "Front",
  41862. image: {
  41863. source: "./media/characters/nines/front.svg",
  41864. extra: 1741/1607,
  41865. bottom: 41/1782
  41866. }
  41867. },
  41868. side: {
  41869. height: math.unit(7, "feet"),
  41870. weight: math.unit(250, "lb"),
  41871. name: "Side",
  41872. image: {
  41873. source: "./media/characters/nines/side.svg",
  41874. extra: 1854/1735,
  41875. bottom: 93/1947
  41876. }
  41877. },
  41878. back: {
  41879. height: math.unit(7, "feet"),
  41880. weight: math.unit(250, "lb"),
  41881. name: "Back",
  41882. image: {
  41883. source: "./media/characters/nines/back.svg",
  41884. extra: 1748/1615,
  41885. bottom: 20/1768
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Megamacro",
  41892. height: math.unit(99, "km"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(5 + 10/12, "feet"),
  41902. weight: math.unit(210, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/zenith/front.svg",
  41906. extra: 1531/1452,
  41907. bottom: 198/1729
  41908. }
  41909. },
  41910. back: {
  41911. height: math.unit(5 + 10/12, "feet"),
  41912. weight: math.unit(210, "lb"),
  41913. name: "Back",
  41914. image: {
  41915. source: "./media/characters/zenith/back.svg",
  41916. extra: 1571/1487,
  41917. bottom: 75/1646
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(5 + 10/12, "feet"),
  41925. default: true
  41926. }
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(4, "feet"),
  41934. weight: math.unit(60, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/jasper/front.svg",
  41938. extra: 1450/1379,
  41939. bottom: 19/1469
  41940. }
  41941. },
  41942. },
  41943. [
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(4, "feet"),
  41947. default: true
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(6 + 5/12, "feet"),
  41956. weight: math.unit(290, "lb"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/tiberius-thyben/front.svg",
  41960. extra: 757/739,
  41961. bottom: 39/796
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Micro",
  41968. height: math.unit(1.5, "inches")
  41969. },
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(6 + 5/12, "feet"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Macro",
  41977. height: math.unit(300, "feet")
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(5 + 6/12, "feet"),
  41986. weight: math.unit(60, "kg"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/sabre/front.svg",
  41990. extra: 738/671,
  41991. bottom: 27/765
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Teeny",
  41998. height: math.unit(2, "inches")
  41999. },
  42000. {
  42001. name: "Smol",
  42002. height: math.unit(8, "inches")
  42003. },
  42004. {
  42005. name: "Normal",
  42006. height: math.unit(5 + 6/12, "feet"),
  42007. default: true
  42008. },
  42009. {
  42010. name: "Mini-Macro",
  42011. height: math.unit(15, "feet")
  42012. },
  42013. {
  42014. name: "Macro",
  42015. height: math.unit(50, "feet")
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(6 + 4/12, "feet"),
  42024. weight: math.unit(170, "lb"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/charlie/front.svg",
  42028. extra: 1348/1228,
  42029. bottom: 15/1363
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Macro",
  42036. height: math.unit(1700, "meters"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "MegaMacro",
  42041. height: math.unit(20400, "meters")
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42047. {
  42048. front: {
  42049. height: math.unit(6 + 3/12, "feet"),
  42050. weight: math.unit(185, "lb"),
  42051. name: "Front",
  42052. image: {
  42053. source: "./media/characters/susan-grant/front.svg",
  42054. extra: 1351/1327,
  42055. bottom: 26/1377
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Normal",
  42062. height: math.unit(6 + 3/12, "feet"),
  42063. default: true
  42064. },
  42065. {
  42066. name: "Macro",
  42067. height: math.unit(225, "feet")
  42068. },
  42069. {
  42070. name: "Macro+",
  42071. height: math.unit(900, "feet")
  42072. },
  42073. {
  42074. name: "MegaMacro",
  42075. height: math.unit(14400, "feet")
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(5 + 4/12, "feet"),
  42084. weight: math.unit(110, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/axel-isanov/front.svg",
  42088. extra: 1096/1065,
  42089. bottom: 13/1109
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(5 + 4/12, "feet"),
  42097. default: true
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(9, "feet"),
  42106. weight: math.unit(467, "lb"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/necahual/front.svg",
  42110. extra: 920/873,
  42111. bottom: 26/946
  42112. }
  42113. },
  42114. back: {
  42115. height: math.unit(9, "feet"),
  42116. weight: math.unit(467, "lb"),
  42117. name: "Back",
  42118. image: {
  42119. source: "./media/characters/necahual/back.svg",
  42120. extra: 930/884,
  42121. bottom: 16/946
  42122. }
  42123. },
  42124. frontUnderwear: {
  42125. height: math.unit(9, "feet"),
  42126. weight: math.unit(467, "lb"),
  42127. name: "Front (Underwear)",
  42128. image: {
  42129. source: "./media/characters/necahual/front-underwear.svg",
  42130. extra: 920/873,
  42131. bottom: 26/946
  42132. }
  42133. },
  42134. frontDressed: {
  42135. height: math.unit(9, "feet"),
  42136. weight: math.unit(467, "lb"),
  42137. name: "Front (Dressed)",
  42138. image: {
  42139. source: "./media/characters/necahual/front-dressed.svg",
  42140. extra: 920/873,
  42141. bottom: 26/946
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Comprsesed",
  42148. height: math.unit(9, "feet")
  42149. },
  42150. {
  42151. name: "Natural",
  42152. height: math.unit(15, "feet"),
  42153. default: true
  42154. },
  42155. {
  42156. name: "Boosted",
  42157. height: math.unit(50, "feet")
  42158. },
  42159. {
  42160. name: "Boosted+",
  42161. height: math.unit(150, "feet")
  42162. },
  42163. {
  42164. name: "Max",
  42165. height: math.unit(500, "feet")
  42166. },
  42167. ]
  42168. ))
  42169. characterMakers.push(() => makeCharacter(
  42170. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42171. {
  42172. front: {
  42173. height: math.unit(22 + 1/12, "feet"),
  42174. weight: math.unit(3200, "lb"),
  42175. name: "Front",
  42176. image: {
  42177. source: "./media/characters/theo-acacia/front.svg",
  42178. extra: 1796/1741,
  42179. bottom: 83/1879
  42180. }
  42181. },
  42182. frontUnderwear: {
  42183. height: math.unit(22 + 1/12, "feet"),
  42184. weight: math.unit(3200, "lb"),
  42185. name: "Front (Underwear)",
  42186. image: {
  42187. source: "./media/characters/theo-acacia/front-underwear.svg",
  42188. extra: 1796/1741,
  42189. bottom: 83/1879
  42190. }
  42191. },
  42192. frontNude: {
  42193. height: math.unit(22 + 1/12, "feet"),
  42194. weight: math.unit(3200, "lb"),
  42195. name: "Front (Nude)",
  42196. image: {
  42197. source: "./media/characters/theo-acacia/front-nude.svg",
  42198. extra: 1796/1741,
  42199. bottom: 83/1879
  42200. }
  42201. },
  42202. },
  42203. [
  42204. {
  42205. name: "Normal",
  42206. height: math.unit(22 + 1/12, "feet"),
  42207. default: true
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42213. {
  42214. front: {
  42215. height: math.unit(20, "feet"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/astra/front.svg",
  42219. extra: 1850/1714,
  42220. bottom: 106/1956
  42221. }
  42222. },
  42223. frontUndressed: {
  42224. height: math.unit(20, "feet"),
  42225. name: "Front (Undressed)",
  42226. image: {
  42227. source: "./media/characters/astra/front-undressed.svg",
  42228. extra: 1926/1749,
  42229. bottom: 0/1926
  42230. }
  42231. },
  42232. hand: {
  42233. height: math.unit(1.53, "feet"),
  42234. name: "Hand",
  42235. image: {
  42236. source: "./media/characters/astra/hand.svg"
  42237. }
  42238. },
  42239. paw: {
  42240. height: math.unit(1.53, "feet"),
  42241. name: "Paw",
  42242. image: {
  42243. source: "./media/characters/astra/paw.svg"
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Smallest",
  42250. height: math.unit(20, "feet")
  42251. },
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(1e9, "miles"),
  42255. default: true
  42256. },
  42257. {
  42258. name: "Larger",
  42259. height: math.unit(5, "multiverses")
  42260. },
  42261. {
  42262. name: "Largest",
  42263. height: math.unit(1e9, "multiverses")
  42264. },
  42265. ]
  42266. ))
  42267. characterMakers.push(() => makeCharacter(
  42268. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42269. {
  42270. front: {
  42271. height: math.unit(8, "feet"),
  42272. name: "Front",
  42273. image: {
  42274. source: "./media/characters/breanna/front.svg",
  42275. extra: 1912/1632,
  42276. bottom: 33/1945
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Smallest",
  42283. height: math.unit(8, "feet")
  42284. },
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(1, "mile"),
  42288. default: true
  42289. },
  42290. {
  42291. name: "Maximum",
  42292. height: math.unit(1500000000000, "lightyears")
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42298. {
  42299. front: {
  42300. height: math.unit(5 + 11/12, "feet"),
  42301. weight: math.unit(155, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/cai/front.svg",
  42305. extra: 1823/1702,
  42306. bottom: 32/1855
  42307. }
  42308. },
  42309. back: {
  42310. height: math.unit(5 + 11/12, "feet"),
  42311. weight: math.unit(155, "lb"),
  42312. name: "Back",
  42313. image: {
  42314. source: "./media/characters/cai/back.svg",
  42315. extra: 1809/1708,
  42316. bottom: 31/1840
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Normal",
  42323. height: math.unit(5 + 11/12, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Big",
  42328. height: math.unit(15, "feet")
  42329. },
  42330. {
  42331. name: "Macro",
  42332. height: math.unit(200, "feet")
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(5 + 6/12, "feet"),
  42341. weight: math.unit(160, "lb"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42345. extra: 1227/1174,
  42346. bottom: 37/1264
  42347. }
  42348. },
  42349. },
  42350. [
  42351. {
  42352. name: "Macro",
  42353. height: math.unit(444, "meters"),
  42354. default: true
  42355. },
  42356. ]
  42357. ))
  42358. characterMakers.push(() => makeCharacter(
  42359. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42360. {
  42361. front: {
  42362. height: math.unit(18 + 7/12, "feet"),
  42363. name: "Front",
  42364. image: {
  42365. source: "./media/characters/rex/front.svg",
  42366. extra: 1941/1807,
  42367. bottom: 66/2007
  42368. }
  42369. },
  42370. back: {
  42371. height: math.unit(18 + 7/12, "feet"),
  42372. name: "Back",
  42373. image: {
  42374. source: "./media/characters/rex/back.svg",
  42375. extra: 1937/1822,
  42376. bottom: 42/1979
  42377. }
  42378. },
  42379. boot: {
  42380. height: math.unit(3.45, "feet"),
  42381. name: "Boot",
  42382. image: {
  42383. source: "./media/characters/rex/boot.svg"
  42384. }
  42385. },
  42386. paw: {
  42387. height: math.unit(4.17, "feet"),
  42388. name: "Paw",
  42389. image: {
  42390. source: "./media/characters/rex/paw.svg"
  42391. }
  42392. },
  42393. head: {
  42394. height: math.unit(6.728, "feet"),
  42395. name: "Head",
  42396. image: {
  42397. source: "./media/characters/rex/head.svg"
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Nano",
  42404. height: math.unit(18 + 7/12, "feet")
  42405. },
  42406. {
  42407. name: "Micro",
  42408. height: math.unit(1.5, "megameters")
  42409. },
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(440, "megameters"),
  42413. default: true
  42414. },
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(2.5, "gigameters")
  42418. },
  42419. {
  42420. name: "Gigamacro",
  42421. height: math.unit(2, "galaxies")
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42427. {
  42428. side: {
  42429. height: math.unit(32, "feet"),
  42430. weight: math.unit(250000, "lb"),
  42431. name: "Side",
  42432. image: {
  42433. source: "./media/characters/silverwing/side.svg",
  42434. extra: 1100/1019,
  42435. bottom: 204/1304
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(32, "feet"),
  42443. default: true
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(6 + 6/12, "feet"),
  42452. weight: math.unit(350, "lb"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/tristan-hawthorne/front.svg",
  42456. extra: 1159/1124,
  42457. bottom: 37/1196
  42458. },
  42459. form: "labrador",
  42460. default: true
  42461. },
  42462. skunkFront: {
  42463. height: math.unit(4 + 6/12, "feet"),
  42464. weight: math.unit(120, "lb"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42468. extra: 1609/1551,
  42469. bottom: 169/1778
  42470. },
  42471. form: "skunk",
  42472. default: true
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Normal",
  42478. height: math.unit(6 + 6/12, "feet"),
  42479. form: "labrador",
  42480. default: true
  42481. },
  42482. {
  42483. name: "Normal",
  42484. height: math.unit(4 + 6/12, "feet"),
  42485. form: "skunk",
  42486. default: true
  42487. },
  42488. ],
  42489. {
  42490. "labrador": {
  42491. name: "Labrador",
  42492. default: true
  42493. },
  42494. "skunk": {
  42495. name: "Skunk"
  42496. }
  42497. }
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(5 + 11/12, "feet"),
  42504. weight: math.unit(190, "lb"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/mizu/front.svg",
  42508. extra: 1988/1788,
  42509. bottom: 14/2002
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(5 + 11/12, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(1.7, "feet"),
  42526. weight: math.unit(50, "lb"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/dechroma/front.svg",
  42530. extra: 1095/859,
  42531. bottom: 64/1159
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(1.7, "feet"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42545. {
  42546. side: {
  42547. height: math.unit(30, "feet"),
  42548. name: "Side",
  42549. image: {
  42550. source: "./media/characters/veluren-thanazel/side.svg",
  42551. extra: 1611/633,
  42552. bottom: 118/1729
  42553. }
  42554. },
  42555. front: {
  42556. height: math.unit(30, "feet"),
  42557. name: "Front",
  42558. image: {
  42559. source: "./media/characters/veluren-thanazel/front.svg",
  42560. extra: 1486/636,
  42561. bottom: 238/1724
  42562. }
  42563. },
  42564. head: {
  42565. height: math.unit(21.4, "feet"),
  42566. name: "Head",
  42567. image: {
  42568. source: "./media/characters/veluren-thanazel/head.svg"
  42569. }
  42570. },
  42571. genitals: {
  42572. height: math.unit(19.4, "feet"),
  42573. name: "Genitals",
  42574. image: {
  42575. source: "./media/characters/veluren-thanazel/genitals.svg"
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Social",
  42582. height: math.unit(6, "feet")
  42583. },
  42584. {
  42585. name: "Play",
  42586. height: math.unit(12, "feet")
  42587. },
  42588. {
  42589. name: "True",
  42590. height: math.unit(30, "feet"),
  42591. default: true
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(7 + 6/12, "feet"),
  42600. weight: math.unit(500, "kg"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/arcturas/front.svg",
  42604. extra: 1700/1500,
  42605. bottom: 145/1845
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(7 + 6/12, "feet"),
  42613. default: true
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42619. {
  42620. side: {
  42621. height: math.unit(6, "feet"),
  42622. weight: math.unit(2, "tons"),
  42623. name: "Side",
  42624. image: {
  42625. source: "./media/characters/vitaen/side.svg",
  42626. extra: 1157/617,
  42627. bottom: 122/1279
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Normal",
  42634. height: math.unit(6, "feet"),
  42635. default: true
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(19, "feet"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/fia-dreamweaver/front.svg",
  42647. extra: 1630/1504,
  42648. bottom: 25/1655
  42649. }
  42650. },
  42651. },
  42652. [
  42653. {
  42654. name: "Normal",
  42655. height: math.unit(19, "feet"),
  42656. default: true
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42662. {
  42663. front: {
  42664. height: math.unit(5 + 4/12, "feet"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/artan/front.svg",
  42668. extra: 1618/1535,
  42669. bottom: 46/1664
  42670. }
  42671. },
  42672. back: {
  42673. height: math.unit(5 + 4/12, "feet"),
  42674. name: "Back",
  42675. image: {
  42676. source: "./media/characters/artan/back.svg",
  42677. extra: 1618/1543,
  42678. bottom: 31/1649
  42679. }
  42680. },
  42681. },
  42682. [
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(5 + 4/12, "feet"),
  42686. default: true
  42687. },
  42688. ]
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42692. {
  42693. side: {
  42694. height: math.unit(182, "cm"),
  42695. weight: math.unit(1000, "lb"),
  42696. name: "Side",
  42697. image: {
  42698. source: "./media/characters/silver-dragon/side.svg",
  42699. extra: 710/287,
  42700. bottom: 88/798
  42701. }
  42702. },
  42703. },
  42704. [
  42705. {
  42706. name: "Normal",
  42707. height: math.unit(182, "cm"),
  42708. default: true
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42714. {
  42715. side: {
  42716. height: math.unit(6 + 6/12, "feet"),
  42717. weight: math.unit(1.5, "tons"),
  42718. name: "Side",
  42719. image: {
  42720. source: "./media/characters/zephyr/side.svg",
  42721. extra: 1433/586,
  42722. bottom: 109/1542
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(6 + 6/12, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42736. {
  42737. side: {
  42738. height: math.unit(1, "feet"),
  42739. name: "Side",
  42740. image: {
  42741. source: "./media/characters/vixye/side.svg",
  42742. extra: 632/541,
  42743. bottom: 0/632
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Normal",
  42750. height: math.unit(1, "feet"),
  42751. default: true
  42752. },
  42753. {
  42754. name: "True",
  42755. height: math.unit(1e15, "multiverses")
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(8 + 2/12, "feet"),
  42764. weight: math.unit(650, "lb"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42768. extra: 1174/1137,
  42769. bottom: 82/1256
  42770. }
  42771. },
  42772. back: {
  42773. height: math.unit(8 + 2/12, "feet"),
  42774. weight: math.unit(650, "lb"),
  42775. name: "Back",
  42776. image: {
  42777. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42778. extra: 1204/1157,
  42779. bottom: 46/1250
  42780. }
  42781. },
  42782. },
  42783. [
  42784. {
  42785. name: "Wildform",
  42786. height: math.unit(8 + 2/12, "feet"),
  42787. default: true
  42788. },
  42789. ]
  42790. ))
  42791. characterMakers.push(() => makeCharacter(
  42792. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42793. {
  42794. front: {
  42795. height: math.unit(18, "feet"),
  42796. name: "Front",
  42797. image: {
  42798. source: "./media/characters/cyphin/front.svg",
  42799. extra: 970/886,
  42800. bottom: 42/1012
  42801. }
  42802. },
  42803. back: {
  42804. height: math.unit(18, "feet"),
  42805. name: "Back",
  42806. image: {
  42807. source: "./media/characters/cyphin/back.svg",
  42808. extra: 1009/894,
  42809. bottom: 24/1033
  42810. }
  42811. },
  42812. head: {
  42813. height: math.unit(5.05, "feet"),
  42814. name: "Head",
  42815. image: {
  42816. source: "./media/characters/cyphin/head.svg"
  42817. }
  42818. },
  42819. tailbud: {
  42820. height: math.unit(5, "feet"),
  42821. name: "Tailbud",
  42822. image: {
  42823. source: "./media/characters/cyphin/tailbud.svg"
  42824. }
  42825. },
  42826. },
  42827. [
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42832. {
  42833. side: {
  42834. height: math.unit(10, "feet"),
  42835. weight: math.unit(6, "tons"),
  42836. name: "Side",
  42837. image: {
  42838. source: "./media/characters/raijin/side.svg",
  42839. extra: 1529/613,
  42840. bottom: 337/1866
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Normal",
  42847. height: math.unit(10, "feet"),
  42848. default: true
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42854. {
  42855. side: {
  42856. height: math.unit(9, "feet"),
  42857. name: "Side",
  42858. image: {
  42859. source: "./media/characters/nilghais/side.svg",
  42860. extra: 1047/744,
  42861. bottom: 91/1138
  42862. }
  42863. },
  42864. head: {
  42865. height: math.unit(3.14, "feet"),
  42866. name: "Head",
  42867. image: {
  42868. source: "./media/characters/nilghais/head.svg"
  42869. }
  42870. },
  42871. mouth: {
  42872. height: math.unit(4.6, "feet"),
  42873. name: "Mouth",
  42874. image: {
  42875. source: "./media/characters/nilghais/mouth.svg"
  42876. }
  42877. },
  42878. wings: {
  42879. height: math.unit(24, "feet"),
  42880. name: "Wings",
  42881. image: {
  42882. source: "./media/characters/nilghais/wings.svg"
  42883. }
  42884. },
  42885. ass: {
  42886. height: math.unit(6.12, "feet"),
  42887. name: "Ass",
  42888. image: {
  42889. source: "./media/characters/nilghais/ass.svg"
  42890. }
  42891. },
  42892. },
  42893. [
  42894. {
  42895. name: "Normal",
  42896. height: math.unit(9, "feet"),
  42897. default: true
  42898. },
  42899. ]
  42900. ))
  42901. characterMakers.push(() => makeCharacter(
  42902. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42903. {
  42904. regular: {
  42905. height: math.unit(16 + 2/12, "feet"),
  42906. weight: math.unit(2300, "lb"),
  42907. name: "Regular",
  42908. image: {
  42909. source: "./media/characters/zolgar/regular.svg",
  42910. extra: 1246/1004,
  42911. bottom: 124/1370
  42912. }
  42913. },
  42914. boxers: {
  42915. height: math.unit(16 + 2/12, "feet"),
  42916. weight: math.unit(2300, "lb"),
  42917. name: "Boxers",
  42918. image: {
  42919. source: "./media/characters/zolgar/boxers.svg",
  42920. extra: 1246/1004,
  42921. bottom: 124/1370
  42922. }
  42923. },
  42924. armored: {
  42925. height: math.unit(16 + 2/12, "feet"),
  42926. weight: math.unit(2300, "lb"),
  42927. name: "Armored",
  42928. image: {
  42929. source: "./media/characters/zolgar/armored.svg",
  42930. extra: 1246/1004,
  42931. bottom: 124/1370
  42932. }
  42933. },
  42934. goth: {
  42935. height: math.unit(16 + 2/12, "feet"),
  42936. weight: math.unit(2300, "lb"),
  42937. name: "Goth",
  42938. image: {
  42939. source: "./media/characters/zolgar/goth.svg",
  42940. extra: 1246/1004,
  42941. bottom: 124/1370
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Shrunken Down",
  42948. height: math.unit(9 + 2/12, "feet")
  42949. },
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(16 + 2/12, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42959. {
  42960. front: {
  42961. height: math.unit(6, "feet"),
  42962. weight: math.unit(168, "lb"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/luca/front.svg",
  42966. extra: 841/667,
  42967. bottom: 102/943
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(6, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42981. {
  42982. side: {
  42983. height: math.unit(7 + 3/12, "feet"),
  42984. weight: math.unit(312, "lb"),
  42985. name: "Side",
  42986. image: {
  42987. source: "./media/characters/zezo/side.svg",
  42988. extra: 1192/1067,
  42989. bottom: 63/1255
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Normal",
  42996. height: math.unit(7 + 3/12, "feet"),
  42997. default: true
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43003. {
  43004. front: {
  43005. height: math.unit(5 + 5/12, "feet"),
  43006. weight: math.unit(170, "lb"),
  43007. name: "Front",
  43008. image: {
  43009. source: "./media/characters/mayso/front.svg",
  43010. extra: 1215/1108,
  43011. bottom: 16/1231
  43012. }
  43013. },
  43014. },
  43015. [
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(5 + 5/12, "feet"),
  43019. default: true
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(4 + 3/12, "feet"),
  43028. weight: math.unit(80, "lb"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/hess/front.svg",
  43032. extra: 1200/1123,
  43033. bottom: 16/1216
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(4 + 3/12, "feet"),
  43041. default: true
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43047. {
  43048. front: {
  43049. height: math.unit(1.9, "meters"),
  43050. name: "Front",
  43051. image: {
  43052. source: "./media/characters/ashgar/front.svg",
  43053. extra: 1177/1146,
  43054. bottom: 99/1276
  43055. }
  43056. },
  43057. back: {
  43058. height: math.unit(1.9, "meters"),
  43059. name: "Back",
  43060. image: {
  43061. source: "./media/characters/ashgar/back.svg",
  43062. extra: 1201/1183,
  43063. bottom: 53/1254
  43064. }
  43065. },
  43066. feral: {
  43067. height: math.unit(1.4, "meters"),
  43068. name: "Feral",
  43069. image: {
  43070. source: "./media/characters/ashgar/feral.svg",
  43071. extra: 370/345,
  43072. bottom: 45/415
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(1.9, "meters"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43086. {
  43087. regular: {
  43088. height: math.unit(6, "feet"),
  43089. weight: math.unit(220, "lb"),
  43090. name: "Regular",
  43091. image: {
  43092. source: "./media/characters/phillip/regular.svg",
  43093. extra: 1373/1277,
  43094. bottom: 75/1448
  43095. }
  43096. },
  43097. dressed: {
  43098. height: math.unit(6, "feet"),
  43099. weight: math.unit(220, "lb"),
  43100. name: "Dressed",
  43101. image: {
  43102. source: "./media/characters/phillip/dressed.svg",
  43103. extra: 1373/1277,
  43104. bottom: 75/1448
  43105. }
  43106. },
  43107. paw: {
  43108. height: math.unit(1.44, "feet"),
  43109. name: "Paw",
  43110. image: {
  43111. source: "./media/characters/phillip/paw.svg"
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(6, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43125. {
  43126. side: {
  43127. height: math.unit(42, "feet"),
  43128. name: "Side",
  43129. image: {
  43130. source: "./media/characters/uvula/side.svg",
  43131. extra: 683/586,
  43132. bottom: 60/743
  43133. }
  43134. },
  43135. front: {
  43136. height: math.unit(42, "feet"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/uvula/front.svg",
  43140. extra: 705/613,
  43141. bottom: 54/759
  43142. }
  43143. },
  43144. maw: {
  43145. height: math.unit(23.5, "feet"),
  43146. name: "Maw",
  43147. image: {
  43148. source: "./media/characters/uvula/maw.svg"
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Original Size",
  43155. height: math.unit(14, "inches")
  43156. },
  43157. {
  43158. name: "Human Size",
  43159. height: math.unit(6, "feet")
  43160. },
  43161. {
  43162. name: "Big",
  43163. height: math.unit(42, "feet"),
  43164. default: true
  43165. },
  43166. {
  43167. name: "Bigger",
  43168. height: math.unit(100, "feet")
  43169. },
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43174. {
  43175. front: {
  43176. height: math.unit(5 + 11/12, "feet"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/lannah/front.svg",
  43180. extra: 1208/1113,
  43181. bottom: 97/1305
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(5 + 11/12, "feet"),
  43189. default: true
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43195. {
  43196. front: {
  43197. height: math.unit(6 + 3/12, "feet"),
  43198. weight: math.unit(3.5, "tons"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/emberflame/front.svg",
  43202. extra: 1198/672,
  43203. bottom: 82/1280
  43204. }
  43205. },
  43206. side: {
  43207. height: math.unit(6 + 3/12, "feet"),
  43208. weight: math.unit(3.5, "tons"),
  43209. name: "Side",
  43210. image: {
  43211. source: "./media/characters/emberflame/side.svg",
  43212. extra: 938/527,
  43213. bottom: 56/994
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Normal",
  43220. height: math.unit(6 + 3/12, "feet"),
  43221. default: true
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43227. {
  43228. side: {
  43229. height: math.unit(17.5, "feet"),
  43230. weight: math.unit(35, "tons"),
  43231. name: "Side",
  43232. image: {
  43233. source: "./media/characters/sophie-ambrose/side.svg",
  43234. extra: 1573/1242,
  43235. bottom: 71/1644
  43236. }
  43237. },
  43238. maw: {
  43239. height: math.unit(7.4, "feet"),
  43240. name: "Maw",
  43241. image: {
  43242. source: "./media/characters/sophie-ambrose/maw.svg"
  43243. }
  43244. },
  43245. },
  43246. [
  43247. {
  43248. name: "Normal",
  43249. height: math.unit(17.5, "feet"),
  43250. default: true
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(280, "feet"),
  43259. weight: math.unit(550, "tons"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/king-mugi/front.svg",
  43263. extra: 1102/947,
  43264. bottom: 104/1206
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "King Mugi",
  43271. height: math.unit(280, "feet"),
  43272. default: true
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(64, "meters"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/nova-fox/front.svg",
  43284. extra: 1310/1246,
  43285. bottom: 65/1375
  43286. }
  43287. },
  43288. },
  43289. [
  43290. {
  43291. name: "Macro",
  43292. height: math.unit(64, "meters"),
  43293. default: true
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(6 + 3/12, "feet"),
  43302. weight: math.unit(170, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/sam-bat/front.svg",
  43306. extra: 1601/1411,
  43307. bottom: 125/1726
  43308. }
  43309. },
  43310. back: {
  43311. height: math.unit(6 + 3/12, "feet"),
  43312. weight: math.unit(170, "lb"),
  43313. name: "Back",
  43314. image: {
  43315. source: "./media/characters/sam-bat/back.svg",
  43316. extra: 1577/1405,
  43317. bottom: 58/1635
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(6 + 3/12, "feet"),
  43325. default: true
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43331. {
  43332. front: {
  43333. height: math.unit(59, "feet"),
  43334. weight: math.unit(40000, "lb"),
  43335. name: "Front",
  43336. image: {
  43337. source: "./media/characters/inari/front.svg",
  43338. extra: 1884/1350,
  43339. bottom: 95/1979
  43340. }
  43341. },
  43342. },
  43343. [
  43344. {
  43345. name: "Gigantamax",
  43346. height: math.unit(59, "feet"),
  43347. default: true
  43348. },
  43349. ]
  43350. ))
  43351. characterMakers.push(() => makeCharacter(
  43352. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43353. {
  43354. front: {
  43355. height: math.unit(5 + 8/12, "feet"),
  43356. name: "Front",
  43357. image: {
  43358. source: "./media/characters/elizabeth/front.svg",
  43359. extra: 1395/1298,
  43360. bottom: 54/1449
  43361. }
  43362. },
  43363. mouth: {
  43364. height: math.unit(1.97, "feet"),
  43365. name: "Mouth",
  43366. image: {
  43367. source: "./media/characters/elizabeth/mouth.svg"
  43368. }
  43369. },
  43370. foot: {
  43371. height: math.unit(1.17, "feet"),
  43372. name: "Foot",
  43373. image: {
  43374. source: "./media/characters/elizabeth/foot.svg"
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(5 + 8/12, "feet"),
  43382. default: true
  43383. },
  43384. {
  43385. name: "Minimacro",
  43386. height: math.unit(18, "feet")
  43387. },
  43388. {
  43389. name: "Macro",
  43390. height: math.unit(180, "feet")
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(5 + 2/12, "feet"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/october-gossamer/front.svg",
  43402. extra: 505/454,
  43403. bottom: 7/512
  43404. }
  43405. },
  43406. back: {
  43407. height: math.unit(5 + 2/12, "feet"),
  43408. name: "Back",
  43409. image: {
  43410. source: "./media/characters/october-gossamer/back.svg",
  43411. extra: 501/454,
  43412. bottom: 11/512
  43413. }
  43414. },
  43415. },
  43416. [
  43417. {
  43418. name: "Normal",
  43419. height: math.unit(5 + 2/12, "feet"),
  43420. default: true
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(5, "feet"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/epiglottis/front.svg",
  43432. extra: 923/849,
  43433. bottom: 17/940
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Original Size",
  43440. height: math.unit(10, "inches")
  43441. },
  43442. {
  43443. name: "Human Size",
  43444. height: math.unit(5, "feet"),
  43445. default: true
  43446. },
  43447. {
  43448. name: "Big",
  43449. height: math.unit(25, "feet")
  43450. },
  43451. {
  43452. name: "Bigger",
  43453. height: math.unit(50, "feet")
  43454. },
  43455. {
  43456. name: "oh lawd",
  43457. height: math.unit(75, "feet")
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(2 + 4/12, "feet"),
  43466. weight: math.unit(60, "lb"),
  43467. name: "Front",
  43468. image: {
  43469. source: "./media/characters/lerm/front.svg",
  43470. extra: 796/790,
  43471. bottom: 79/875
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(2 + 4/12, "feet"),
  43479. default: true
  43480. },
  43481. ]
  43482. ))
  43483. characterMakers.push(() => makeCharacter(
  43484. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43485. {
  43486. front: {
  43487. height: math.unit(5.5, "feet"),
  43488. weight: math.unit(130, "lb"),
  43489. name: "Front",
  43490. image: {
  43491. source: "./media/characters/xena-nebadon/front.svg",
  43492. extra: 1828/1730,
  43493. bottom: 79/1907
  43494. }
  43495. },
  43496. },
  43497. [
  43498. {
  43499. name: "Tiny Puppy",
  43500. height: math.unit(3, "inches")
  43501. },
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(5.5, "feet"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Lotta Lady",
  43509. height: math.unit(12, "feet")
  43510. },
  43511. {
  43512. name: "Pretty Big",
  43513. height: math.unit(100, "feet")
  43514. },
  43515. {
  43516. name: "Big",
  43517. height: math.unit(500, "feet")
  43518. },
  43519. {
  43520. name: "Skyscraper Toys",
  43521. height: math.unit(2500, "feet")
  43522. },
  43523. {
  43524. name: "Plane Catcher",
  43525. height: math.unit(8, "miles")
  43526. },
  43527. {
  43528. name: "Planet Toys",
  43529. height: math.unit(15, "earths")
  43530. },
  43531. {
  43532. name: "Stardust",
  43533. height: math.unit(0.25, "galaxies")
  43534. },
  43535. {
  43536. name: "Snacks",
  43537. height: math.unit(70, "universes")
  43538. },
  43539. ]
  43540. ))
  43541. characterMakers.push(() => makeCharacter(
  43542. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43543. {
  43544. front: {
  43545. height: math.unit(1.6, "meters"),
  43546. weight: math.unit(60, "kg"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/bounty/front.svg",
  43550. extra: 1426/1308,
  43551. bottom: 15/1441
  43552. }
  43553. },
  43554. back: {
  43555. height: math.unit(1.6, "meters"),
  43556. weight: math.unit(60, "kg"),
  43557. name: "Back",
  43558. image: {
  43559. source: "./media/characters/bounty/back.svg",
  43560. extra: 1417/1307,
  43561. bottom: 8/1425
  43562. }
  43563. },
  43564. },
  43565. [
  43566. {
  43567. name: "Normal",
  43568. height: math.unit(1.6, "meters"),
  43569. default: true
  43570. },
  43571. {
  43572. name: "Macro",
  43573. height: math.unit(300, "meters")
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43579. {
  43580. front: {
  43581. height: math.unit(2 + 8/12, "feet"),
  43582. weight: math.unit(15, "lb"),
  43583. name: "Front",
  43584. image: {
  43585. source: "./media/characters/mochi/front.svg",
  43586. extra: 1022/852,
  43587. bottom: 435/1457
  43588. }
  43589. },
  43590. back: {
  43591. height: math.unit(2 + 8/12, "feet"),
  43592. weight: math.unit(15, "lb"),
  43593. name: "Back",
  43594. image: {
  43595. source: "./media/characters/mochi/back.svg",
  43596. extra: 1335/1119,
  43597. bottom: 39/1374
  43598. }
  43599. },
  43600. bird: {
  43601. height: math.unit(2 + 8/12, "feet"),
  43602. weight: math.unit(15, "lb"),
  43603. name: "Bird",
  43604. image: {
  43605. source: "./media/characters/mochi/bird.svg",
  43606. extra: 1251/1113,
  43607. bottom: 178/1429
  43608. }
  43609. },
  43610. kaiju: {
  43611. height: math.unit(154, "feet"),
  43612. weight: math.unit(1e7, "lb"),
  43613. name: "Kaiju",
  43614. image: {
  43615. source: "./media/characters/mochi/kaiju.svg",
  43616. extra: 460/324,
  43617. bottom: 40/500
  43618. }
  43619. },
  43620. head: {
  43621. height: math.unit(1.21, "feet"),
  43622. name: "Head",
  43623. image: {
  43624. source: "./media/characters/mochi/head.svg"
  43625. }
  43626. },
  43627. alternateTail: {
  43628. height: math.unit(2 + 8/12, "feet"),
  43629. weight: math.unit(45, "lb"),
  43630. name: "Alternate Tail",
  43631. image: {
  43632. source: "./media/characters/mochi/alternate-tail.svg",
  43633. extra: 139/76,
  43634. bottom: 45/184
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Micro",
  43641. height: math.unit(2, "inches")
  43642. },
  43643. {
  43644. name: "Normal",
  43645. height: math.unit(2 + 8/12, "feet"),
  43646. default: true
  43647. },
  43648. {
  43649. name: "Macro",
  43650. height: math.unit(106, "feet")
  43651. },
  43652. ]
  43653. ))
  43654. characterMakers.push(() => makeCharacter(
  43655. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43656. {
  43657. front: {
  43658. height: math.unit(5.67, "feet"),
  43659. weight: math.unit(135, "lb"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/sarel/front.svg",
  43663. extra: 865/788,
  43664. bottom: 97/962
  43665. }
  43666. },
  43667. back: {
  43668. height: math.unit(5.67, "feet"),
  43669. weight: math.unit(135, "lb"),
  43670. name: "Back",
  43671. image: {
  43672. source: "./media/characters/sarel/back.svg",
  43673. extra: 857/777,
  43674. bottom: 32/889
  43675. }
  43676. },
  43677. chozoan: {
  43678. height: math.unit(5.67, "feet"),
  43679. weight: math.unit(135, "lb"),
  43680. name: "Chozoan",
  43681. image: {
  43682. source: "./media/characters/sarel/chozoan.svg",
  43683. extra: 865/788,
  43684. bottom: 97/962
  43685. }
  43686. },
  43687. current: {
  43688. height: math.unit(5.67, "feet"),
  43689. weight: math.unit(135, "lb"),
  43690. name: "Current",
  43691. image: {
  43692. source: "./media/characters/sarel/current.svg",
  43693. extra: 865/788,
  43694. bottom: 97/962
  43695. }
  43696. },
  43697. head: {
  43698. height: math.unit(1.77, "feet"),
  43699. name: "Head",
  43700. image: {
  43701. source: "./media/characters/sarel/head.svg"
  43702. }
  43703. },
  43704. claws: {
  43705. height: math.unit(1.8, "feet"),
  43706. name: "Claws",
  43707. image: {
  43708. source: "./media/characters/sarel/claws.svg"
  43709. }
  43710. },
  43711. clawsAlt: {
  43712. height: math.unit(1.8, "feet"),
  43713. name: "Claws-alt",
  43714. image: {
  43715. source: "./media/characters/sarel/claws-alt.svg"
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(5.67, "feet"),
  43723. default: true
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43729. {
  43730. front: {
  43731. height: math.unit(5500, "feet"),
  43732. name: "Front",
  43733. image: {
  43734. source: "./media/characters/alyonia/front.svg",
  43735. extra: 1200/1135,
  43736. bottom: 29/1229
  43737. }
  43738. },
  43739. back: {
  43740. height: math.unit(5500, "feet"),
  43741. name: "Back",
  43742. image: {
  43743. source: "./media/characters/alyonia/back.svg",
  43744. extra: 1205/1138,
  43745. bottom: 10/1215
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Small",
  43752. height: math.unit(10, "feet")
  43753. },
  43754. {
  43755. name: "Macro",
  43756. height: math.unit(500, "feet")
  43757. },
  43758. {
  43759. name: "Mega Macro",
  43760. height: math.unit(5500, "feet"),
  43761. default: true
  43762. },
  43763. {
  43764. name: "Mega Macro+",
  43765. height: math.unit(500000, "feet")
  43766. },
  43767. {
  43768. name: "Giga Macro",
  43769. height: math.unit(3000, "miles")
  43770. },
  43771. {
  43772. name: "Tera Macro",
  43773. height: math.unit(2.8e6, "miles")
  43774. },
  43775. {
  43776. name: "Galactic",
  43777. height: math.unit(120000, "lightyears")
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43783. {
  43784. werewolf: {
  43785. height: math.unit(8, "feet"),
  43786. weight: math.unit(425, "lb"),
  43787. name: "Werewolf",
  43788. image: {
  43789. source: "./media/characters/autumn/werewolf.svg",
  43790. extra: 2154/2031,
  43791. bottom: 160/2314
  43792. }
  43793. },
  43794. human: {
  43795. height: math.unit(5 + 8/12, "feet"),
  43796. weight: math.unit(150, "lb"),
  43797. name: "Human",
  43798. image: {
  43799. source: "./media/characters/autumn/human.svg",
  43800. extra: 1200/1149,
  43801. bottom: 30/1230
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(8, "feet"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43815. {
  43816. front: {
  43817. height: math.unit(8 + 5/12, "feet"),
  43818. weight: math.unit(825, "lb"),
  43819. name: "Front",
  43820. image: {
  43821. source: "./media/characters/cobalt-charizard/front.svg",
  43822. extra: 1268/1155,
  43823. bottom: 122/1390
  43824. }
  43825. },
  43826. side: {
  43827. height: math.unit(8 + 5/12, "feet"),
  43828. weight: math.unit(825, "lb"),
  43829. name: "Side",
  43830. image: {
  43831. source: "./media/characters/cobalt-charizard/side.svg",
  43832. extra: 1348/1257,
  43833. bottom: 58/1406
  43834. }
  43835. },
  43836. gMax: {
  43837. height: math.unit(134 + 11/12, "feet"),
  43838. name: "G-Max",
  43839. image: {
  43840. source: "./media/characters/cobalt-charizard/g-max.svg",
  43841. extra: 1835/1541,
  43842. bottom: 151/1986
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Normal",
  43849. height: math.unit(8 + 5/12, "feet"),
  43850. default: true
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(6 + 3/12, "feet"),
  43859. weight: math.unit(210, "lb"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/stella/front.svg",
  43863. extra: 3549/3335,
  43864. bottom: 51/3600
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(6 + 3/12, "feet"),
  43872. default: true
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43878. {
  43879. front: {
  43880. height: math.unit(5, "feet"),
  43881. weight: math.unit(90, "lb"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/riley-bishop/front.svg",
  43885. extra: 1450/1428,
  43886. bottom: 152/1602
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Normal",
  43893. height: math.unit(5, "feet"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43900. {
  43901. side: {
  43902. height: math.unit(8 + 2/12, "feet"),
  43903. weight: math.unit(500, "kg"),
  43904. name: "Side",
  43905. image: {
  43906. source: "./media/characters/theo-arcanine/side.svg",
  43907. extra: 1342/1074,
  43908. bottom: 111/1453
  43909. }
  43910. },
  43911. },
  43912. [
  43913. {
  43914. name: "Normal",
  43915. height: math.unit(8 + 2/12, "feet"),
  43916. default: true
  43917. },
  43918. ]
  43919. ))
  43920. characterMakers.push(() => makeCharacter(
  43921. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43922. {
  43923. front: {
  43924. height: math.unit(4, "feet"),
  43925. name: "Front",
  43926. image: {
  43927. source: "./media/characters/kali/front.svg",
  43928. extra: 1921/1357,
  43929. bottom: 70/1991
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Normal",
  43936. height: math.unit(4, "feet"),
  43937. default: true
  43938. },
  43939. {
  43940. name: "Macro",
  43941. height: math.unit(32, "meters")
  43942. },
  43943. {
  43944. name: "Macro+",
  43945. height: math.unit(150, "meters")
  43946. },
  43947. {
  43948. name: "Megamacro",
  43949. height: math.unit(7500, "meters")
  43950. },
  43951. {
  43952. name: "Megamacro+",
  43953. height: math.unit(80, "kilometers")
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43959. {
  43960. side: {
  43961. height: math.unit(5 + 11/12, "feet"),
  43962. weight: math.unit(236, "lb"),
  43963. name: "Side",
  43964. image: {
  43965. source: "./media/characters/gapp/side.svg",
  43966. extra: 775/340,
  43967. bottom: 58/833
  43968. }
  43969. },
  43970. mouth: {
  43971. height: math.unit(2.98, "feet"),
  43972. name: "Mouth",
  43973. image: {
  43974. source: "./media/characters/gapp/mouth.svg"
  43975. }
  43976. },
  43977. },
  43978. [
  43979. {
  43980. name: "Normal",
  43981. height: math.unit(5 + 1/12, "feet"),
  43982. default: true
  43983. },
  43984. ]
  43985. ))
  43986. characterMakers.push(() => makeCharacter(
  43987. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43988. {
  43989. front: {
  43990. height: math.unit(6, "feet"),
  43991. name: "Front",
  43992. image: {
  43993. source: "./media/characters/persephone/front.svg",
  43994. extra: 1895/1717,
  43995. bottom: 96/1991
  43996. }
  43997. },
  43998. back: {
  43999. height: math.unit(6, "feet"),
  44000. name: "Back",
  44001. image: {
  44002. source: "./media/characters/persephone/back.svg",
  44003. extra: 1868/1679,
  44004. bottom: 26/1894
  44005. }
  44006. },
  44007. casual: {
  44008. height: math.unit(6, "feet"),
  44009. name: "Casual",
  44010. image: {
  44011. source: "./media/characters/persephone/casual.svg",
  44012. extra: 1713/1541,
  44013. bottom: 76/1789
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Human Size",
  44020. height: math.unit(6, "feet")
  44021. },
  44022. {
  44023. name: "Big Steppy",
  44024. height: math.unit(600, "meters"),
  44025. default: true
  44026. },
  44027. {
  44028. name: "Galaxy Brain",
  44029. height: math.unit(1, "zettameter")
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44035. {
  44036. front: {
  44037. height: math.unit(1.85, "meters"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/riley-foxthing/front.svg",
  44041. extra: 1495/1354,
  44042. bottom: 122/1617
  44043. }
  44044. },
  44045. frontAlt: {
  44046. height: math.unit(1.85, "meters"),
  44047. name: "Front (Alt)",
  44048. image: {
  44049. source: "./media/characters/riley-foxthing/front-alt.svg",
  44050. extra: 1572/1389,
  44051. bottom: 116/1688
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal Sized",
  44058. height: math.unit(1.85, "meters"),
  44059. default: true
  44060. },
  44061. {
  44062. name: "Quite Sizable",
  44063. height: math.unit(5, "meters")
  44064. },
  44065. {
  44066. name: "Rather Large",
  44067. height: math.unit(20, "meters")
  44068. },
  44069. {
  44070. name: "Macro",
  44071. height: math.unit(450, "meters")
  44072. },
  44073. {
  44074. name: "Giga",
  44075. height: math.unit(5, "km")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(6, "feet"),
  44084. weight: math.unit(200, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/blizzard/front.svg",
  44088. extra: 1136/990,
  44089. bottom: 136/1272
  44090. }
  44091. },
  44092. back: {
  44093. height: math.unit(6, "feet"),
  44094. weight: math.unit(200, "lb"),
  44095. name: "Back",
  44096. image: {
  44097. source: "./media/characters/blizzard/back.svg",
  44098. extra: 1175/1034,
  44099. bottom: 97/1272
  44100. }
  44101. },
  44102. sitting: {
  44103. height: math.unit(3.725, "feet"),
  44104. weight: math.unit(200, "lb"),
  44105. name: "Sitting",
  44106. image: {
  44107. source: "./media/characters/blizzard/sitting.svg",
  44108. extra: 581/485,
  44109. bottom: 90/671
  44110. }
  44111. },
  44112. frontWizard: {
  44113. height: math.unit(7.9, "feet"),
  44114. weight: math.unit(200, "lb"),
  44115. name: "Front (Wizard)",
  44116. image: {
  44117. source: "./media/characters/blizzard/front-wizard.svg"
  44118. }
  44119. },
  44120. backWizard: {
  44121. height: math.unit(7.9, "feet"),
  44122. weight: math.unit(200, "lb"),
  44123. name: "Back (Wizard)",
  44124. image: {
  44125. source: "./media/characters/blizzard/back-wizard.svg"
  44126. }
  44127. },
  44128. frontNsfw: {
  44129. height: math.unit(6, "feet"),
  44130. weight: math.unit(200, "lb"),
  44131. name: "Front (NSFW)",
  44132. image: {
  44133. source: "./media/characters/blizzard/front-nsfw.svg",
  44134. extra: 1136/990,
  44135. bottom: 136/1272
  44136. }
  44137. },
  44138. backNsfw: {
  44139. height: math.unit(6, "feet"),
  44140. weight: math.unit(200, "lb"),
  44141. name: "Back (NSFW)",
  44142. image: {
  44143. source: "./media/characters/blizzard/back-nsfw.svg",
  44144. extra: 1175/1034,
  44145. bottom: 97/1272
  44146. }
  44147. },
  44148. sittingNsfw: {
  44149. height: math.unit(3.725, "feet"),
  44150. weight: math.unit(200, "lb"),
  44151. name: "Sitting (NSFW)",
  44152. image: {
  44153. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44154. extra: 581/485,
  44155. bottom: 90/671
  44156. }
  44157. },
  44158. wizardFrontNsfw: {
  44159. height: math.unit(7.9, "feet"),
  44160. weight: math.unit(200, "lb"),
  44161. name: "Wizard (Front, NSFW)",
  44162. image: {
  44163. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(6, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(5 + 2/12, "feet"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/lumi/front.svg",
  44183. extra: 1328/1268,
  44184. bottom: 103/1431
  44185. }
  44186. },
  44187. back: {
  44188. height: math.unit(5 + 2/12, "feet"),
  44189. name: "Back",
  44190. image: {
  44191. source: "./media/characters/lumi/back.svg",
  44192. extra: 1381/1327,
  44193. bottom: 43/1424
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(5 + 2/12, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(5 + 9/12, "feet"),
  44210. name: "Front",
  44211. image: {
  44212. source: "./media/characters/aliya-cotton/front.svg",
  44213. extra: 577/564,
  44214. bottom: 29/606
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(5 + 9/12, "feet"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44228. {
  44229. front: {
  44230. height: math.unit(2.7, "meters"),
  44231. weight: math.unit(25000, "lb"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/noah-luxray/front.svg",
  44235. extra: 1644/825,
  44236. bottom: 339/1983
  44237. }
  44238. },
  44239. side: {
  44240. height: math.unit(2.97, "meters"),
  44241. weight: math.unit(25000, "lb"),
  44242. name: "Side",
  44243. image: {
  44244. source: "./media/characters/noah-luxray/side.svg",
  44245. extra: 1319/650,
  44246. bottom: 163/1482
  44247. }
  44248. },
  44249. dick: {
  44250. height: math.unit(7.4, "feet"),
  44251. weight: math.unit(2500, "lb"),
  44252. name: "Dick",
  44253. image: {
  44254. source: "./media/characters/noah-luxray/dick.svg"
  44255. }
  44256. },
  44257. dickAlt: {
  44258. height: math.unit(10.83, "feet"),
  44259. weight: math.unit(2500, "lb"),
  44260. name: "Dick-alt",
  44261. image: {
  44262. source: "./media/characters/noah-luxray/dick-alt.svg"
  44263. }
  44264. },
  44265. },
  44266. [
  44267. {
  44268. name: "BIG",
  44269. height: math.unit(2.7, "meters"),
  44270. default: true
  44271. },
  44272. ]
  44273. ))
  44274. characterMakers.push(() => makeCharacter(
  44275. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44276. {
  44277. standing: {
  44278. height: math.unit(183, "cm"),
  44279. weight: math.unit(68, "kg"),
  44280. name: "Standing",
  44281. image: {
  44282. source: "./media/characters/arion/standing.svg",
  44283. extra: 1869/1807,
  44284. bottom: 93/1962
  44285. }
  44286. },
  44287. reclining: {
  44288. height: math.unit(70.5, "cm"),
  44289. weight: math.unit(68, "lb"),
  44290. name: "Reclining",
  44291. image: {
  44292. source: "./media/characters/arion/reclining.svg",
  44293. extra: 937/870,
  44294. bottom: 63/1000
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Colossus Size, Low",
  44301. height: math.unit(33, "meters"),
  44302. default: true
  44303. },
  44304. {
  44305. name: "Colossus Size, Mid",
  44306. height: math.unit(52, "meters")
  44307. },
  44308. {
  44309. name: "Colossus Size, High",
  44310. height: math.unit(60, "meters")
  44311. },
  44312. {
  44313. name: "Titan Size, Low",
  44314. height: math.unit(91, "meters"),
  44315. },
  44316. {
  44317. name: "Titan Size, Mid",
  44318. height: math.unit(122, "meters")
  44319. },
  44320. {
  44321. name: "Titan Size, High",
  44322. height: math.unit(162, "meters")
  44323. },
  44324. ]
  44325. ))
  44326. characterMakers.push(() => makeCharacter(
  44327. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44328. {
  44329. front: {
  44330. height: math.unit(53, "meters"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/stellar-marbey/front.svg",
  44334. extra: 1913/1805,
  44335. bottom: 92/2005
  44336. }
  44337. },
  44338. back: {
  44339. height: math.unit(53, "meters"),
  44340. name: "Back",
  44341. image: {
  44342. source: "./media/characters/stellar-marbey/back.svg",
  44343. extra: 1960/1851,
  44344. bottom: 28/1988
  44345. }
  44346. },
  44347. mouth: {
  44348. height: math.unit(3.5, "meters"),
  44349. name: "Mouth",
  44350. image: {
  44351. source: "./media/characters/stellar-marbey/mouth.svg"
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Macro",
  44358. height: math.unit(53, "meters"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(8 + 1/12, "feet"),
  44368. weight: math.unit(233, "lb"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/matsu/front.svg",
  44372. extra: 832/772,
  44373. bottom: 40/872
  44374. }
  44375. },
  44376. back: {
  44377. height: math.unit(8 + 1/12, "feet"),
  44378. weight: math.unit(233, "lb"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/matsu/back.svg",
  44382. extra: 839/780,
  44383. bottom: 47/886
  44384. }
  44385. },
  44386. },
  44387. [
  44388. {
  44389. name: "Normal",
  44390. height: math.unit(8 + 1/12, "feet"),
  44391. default: true
  44392. },
  44393. ]
  44394. ))
  44395. characterMakers.push(() => makeCharacter(
  44396. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44397. {
  44398. front: {
  44399. height: math.unit(4, "feet"),
  44400. weight: math.unit(148, "lb"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/thiz/front.svg",
  44404. extra: 1913/1748,
  44405. bottom: 62/1975
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(4, "feet"),
  44413. default: true
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(7 + 6/12, "feet"),
  44422. weight: math.unit(267, "lb"),
  44423. name: "Front",
  44424. image: {
  44425. source: "./media/characters/marcel/front.svg",
  44426. extra: 1221/1096,
  44427. bottom: 76/1297
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Normal",
  44434. height: math.unit(7 + 6/12, "feet"),
  44435. default: true
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44441. {
  44442. side: {
  44443. height: math.unit(42, "meters"),
  44444. name: "Side",
  44445. image: {
  44446. source: "./media/characters/flake/side.svg",
  44447. extra: 1525/1306,
  44448. bottom: 209/1734
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(42, "meters"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44462. {
  44463. dressed: {
  44464. height: math.unit(6 + 4/12, "feet"),
  44465. weight: math.unit(520, "lb"),
  44466. name: "Dressed",
  44467. image: {
  44468. source: "./media/characters/someonne/dressed.svg",
  44469. extra: 1020/1010,
  44470. bottom: 178/1198
  44471. }
  44472. },
  44473. undressed: {
  44474. height: math.unit(6 + 4/12, "feet"),
  44475. weight: math.unit(520, "lb"),
  44476. name: "Undressed",
  44477. image: {
  44478. source: "./media/characters/someonne/undressed.svg",
  44479. extra: 1019/1014,
  44480. bottom: 169/1188
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(6 + 4/12, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(3, "feet"),
  44497. weight: math.unit(30, "lb"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/till/front.svg",
  44501. extra: 892/823,
  44502. bottom: 55/947
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(3, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(9 + 8/12, "feet"),
  44519. weight: math.unit(800, "lb"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/sydney-heki/front.svg",
  44523. extra: 1360/1300,
  44524. bottom: 22/1382
  44525. }
  44526. },
  44527. back: {
  44528. height: math.unit(9 + 8/12, "feet"),
  44529. weight: math.unit(800, "lb"),
  44530. name: "Back",
  44531. image: {
  44532. source: "./media/characters/sydney-heki/back.svg",
  44533. extra: 1356/1293,
  44534. bottom: 12/1368
  44535. }
  44536. },
  44537. frontDressed: {
  44538. height: math.unit(9 + 8/12, "feet"),
  44539. weight: math.unit(800, "lb"),
  44540. name: "Front-dressed",
  44541. image: {
  44542. source: "./media/characters/sydney-heki/front-dressed.svg",
  44543. extra: 1360/1300,
  44544. bottom: 22/1382
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(9 + 8/12, "feet"),
  44552. default: true
  44553. },
  44554. {
  44555. name: "Macro",
  44556. height: math.unit(500, "feet")
  44557. },
  44558. {
  44559. name: "Megamacro",
  44560. height: math.unit(3.6, "miles")
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44566. {
  44567. front: {
  44568. height: math.unit(200, "cm"),
  44569. weight: math.unit(250, "lb"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/fowler-karlsson/front.svg",
  44573. extra: 897/845,
  44574. bottom: 123/1020
  44575. }
  44576. },
  44577. back: {
  44578. height: math.unit(200, "cm"),
  44579. weight: math.unit(250, "lb"),
  44580. name: "Back",
  44581. image: {
  44582. source: "./media/characters/fowler-karlsson/back.svg",
  44583. extra: 999/944,
  44584. bottom: 26/1025
  44585. }
  44586. },
  44587. dick: {
  44588. height: math.unit(1.92, "feet"),
  44589. weight: math.unit(150, "lb"),
  44590. name: "Dick",
  44591. image: {
  44592. source: "./media/characters/fowler-karlsson/dick.svg"
  44593. }
  44594. },
  44595. },
  44596. [
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(200, "cm"),
  44600. default: true
  44601. },
  44602. {
  44603. name: "Smaller Macro",
  44604. height: math.unit(90, "m")
  44605. },
  44606. {
  44607. name: "Macro",
  44608. height: math.unit(150, "m")
  44609. },
  44610. {
  44611. name: "Bigger Macro",
  44612. height: math.unit(300, "m")
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44618. {
  44619. side: {
  44620. height: math.unit(8 + 2/12, "feet"),
  44621. weight: math.unit(1, "tonne"),
  44622. name: "Side",
  44623. image: {
  44624. source: "./media/characters/rylide/side.svg",
  44625. extra: 1318/1034,
  44626. bottom: 106/1424
  44627. }
  44628. },
  44629. sitting: {
  44630. height: math.unit(303, "cm"),
  44631. weight: math.unit(1, "tonne"),
  44632. name: "Sitting",
  44633. image: {
  44634. source: "./media/characters/rylide/sitting.svg",
  44635. extra: 1303/1103,
  44636. bottom: 36/1339
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(8 + 2/12, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(5 + 10/12, "feet"),
  44653. weight: math.unit(160, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/pudask/front.svg",
  44657. extra: 1616/1590,
  44658. bottom: 161/1777
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Ferret Height",
  44665. height: math.unit(2 + 5/12, "feet")
  44666. },
  44667. {
  44668. name: "Canon Height",
  44669. height: math.unit(5 + 10/12, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(3 + 6/12, "feet"),
  44679. weight: math.unit(60, "lb"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/ramita/front.svg",
  44683. extra: 1402/1232,
  44684. bottom: 62/1464
  44685. }
  44686. },
  44687. dressed: {
  44688. height: math.unit(3 + 6/12, "feet"),
  44689. weight: math.unit(60, "lb"),
  44690. name: "Dressed",
  44691. image: {
  44692. source: "./media/characters/ramita/dressed.svg",
  44693. extra: 1534/1249,
  44694. bottom: 50/1584
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(3 + 6/12, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(8, "feet"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/ark/front.svg",
  44714. extra: 772/693,
  44715. bottom: 45/817
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(8, "feet"),
  44723. default: true
  44724. },
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44729. {
  44730. front: {
  44731. height: math.unit(6, "feet"),
  44732. weight: math.unit(250, "lb"),
  44733. volume: math.unit(5/8, "gallons"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/ludwig-horn/front.svg",
  44737. extra: 1782/1635,
  44738. bottom: 96/1878
  44739. }
  44740. },
  44741. back: {
  44742. height: math.unit(6, "feet"),
  44743. weight: math.unit(250, "lb"),
  44744. volume: math.unit(5/8, "gallons"),
  44745. name: "Back",
  44746. image: {
  44747. source: "./media/characters/ludwig-horn/back.svg",
  44748. extra: 1874/1729,
  44749. bottom: 27/1901
  44750. }
  44751. },
  44752. dick: {
  44753. height: math.unit(1.05, "feet"),
  44754. weight: math.unit(15, "lb"),
  44755. volume: math.unit(5/8, "gallons"),
  44756. name: "Dick",
  44757. image: {
  44758. source: "./media/characters/ludwig-horn/dick.svg"
  44759. }
  44760. },
  44761. },
  44762. [
  44763. {
  44764. name: "Small",
  44765. height: math.unit(6, "feet")
  44766. },
  44767. {
  44768. name: "Typical",
  44769. height: math.unit(12, "feet"),
  44770. default: true
  44771. },
  44772. {
  44773. name: "Building",
  44774. height: math.unit(80, "feet")
  44775. },
  44776. {
  44777. name: "Town",
  44778. height: math.unit(800, "feet")
  44779. },
  44780. {
  44781. name: "Kingdom",
  44782. height: math.unit(80000, "feet")
  44783. },
  44784. {
  44785. name: "Planet",
  44786. height: math.unit(8000000, "feet")
  44787. },
  44788. {
  44789. name: "Universe",
  44790. height: math.unit(8000000000, "feet")
  44791. },
  44792. {
  44793. name: "Transcended",
  44794. height: math.unit(8e27, "feet")
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44800. {
  44801. front: {
  44802. height: math.unit(5, "feet"),
  44803. weight: math.unit(50, "kg"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/biot-avery/front.svg",
  44807. extra: 1295/1232,
  44808. bottom: 86/1381
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(5, "feet"),
  44816. default: true
  44817. },
  44818. ]
  44819. ))
  44820. characterMakers.push(() => makeCharacter(
  44821. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44822. {
  44823. front: {
  44824. height: math.unit(6, "feet"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/kitsune-kiro/front.svg",
  44828. extra: 1270/1158,
  44829. bottom: 42/1312
  44830. }
  44831. },
  44832. frontAlt: {
  44833. height: math.unit(6, "feet"),
  44834. name: "Front-alt",
  44835. image: {
  44836. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44837. extra: 1130/1081,
  44838. bottom: 36/1166
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Smol",
  44845. height: math.unit(3, "feet")
  44846. },
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(6, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(6, "feet"),
  44859. weight: math.unit(125, "lb"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/jack-thatcher/front.svg",
  44863. extra: 1474/1370,
  44864. bottom: 26/1500
  44865. }
  44866. },
  44867. back: {
  44868. height: math.unit(6, "feet"),
  44869. weight: math.unit(125, "lb"),
  44870. name: "Back",
  44871. image: {
  44872. source: "./media/characters/jack-thatcher/back.svg",
  44873. extra: 1489/1384,
  44874. bottom: 18/1507
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(6, "feet"),
  44882. default: true
  44883. },
  44884. {
  44885. name: "Macro",
  44886. height: math.unit(75, "feet")
  44887. },
  44888. {
  44889. name: "Macro-er",
  44890. height: math.unit(250, "feet")
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44896. {
  44897. front: {
  44898. height: math.unit(7, "feet"),
  44899. weight: math.unit(110, "kg"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/max-hyper/front.svg",
  44903. extra: 1969/1881,
  44904. bottom: 49/2018
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(7, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44918. {
  44919. front: {
  44920. height: math.unit(5 + 5/12, "feet"),
  44921. weight: math.unit(160, "lb"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/spook/front.svg",
  44925. extra: 794/791,
  44926. bottom: 54/848
  44927. }
  44928. },
  44929. back: {
  44930. height: math.unit(5 + 5/12, "feet"),
  44931. weight: math.unit(160, "lb"),
  44932. name: "Back",
  44933. image: {
  44934. source: "./media/characters/spook/back.svg",
  44935. extra: 812/798,
  44936. bottom: 32/844
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(5 + 5/12, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(18, "feet"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/xeaduulix/front.svg",
  44956. extra: 1380/1166,
  44957. bottom: 110/1490
  44958. }
  44959. },
  44960. back: {
  44961. height: math.unit(18, "feet"),
  44962. name: "Back",
  44963. image: {
  44964. source: "./media/characters/xeaduulix/back.svg",
  44965. extra: 1592/1170,
  44966. bottom: 128/1720
  44967. }
  44968. },
  44969. frontNsfw: {
  44970. height: math.unit(18, "feet"),
  44971. name: "Front (NSFW)",
  44972. image: {
  44973. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44974. extra: 1380/1166,
  44975. bottom: 110/1490
  44976. }
  44977. },
  44978. backNsfw: {
  44979. height: math.unit(18, "feet"),
  44980. name: "Back (NSFW)",
  44981. image: {
  44982. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44983. extra: 1592/1170,
  44984. bottom: 128/1720
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "Normal",
  44991. height: math.unit(18, "feet"),
  44992. default: true
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44998. {
  44999. spreadWings: {
  45000. height: math.unit(20, "feet"),
  45001. name: "Spread Wings",
  45002. image: {
  45003. source: "./media/characters/fledge/spread-wings.svg",
  45004. extra: 693/635,
  45005. bottom: 26/719
  45006. }
  45007. },
  45008. front: {
  45009. height: math.unit(20, "feet"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/fledge/front.svg",
  45013. extra: 684/637,
  45014. bottom: 18/702
  45015. }
  45016. },
  45017. frontAlt: {
  45018. height: math.unit(20, "feet"),
  45019. name: "Front (Alt)",
  45020. image: {
  45021. source: "./media/characters/fledge/front-alt.svg",
  45022. extra: 708/664,
  45023. bottom: 13/721
  45024. }
  45025. },
  45026. back: {
  45027. height: math.unit(20, "feet"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/fledge/back.svg",
  45031. extra: 718/634,
  45032. bottom: 22/740
  45033. }
  45034. },
  45035. head: {
  45036. height: math.unit(5.55, "feet"),
  45037. name: "Head",
  45038. image: {
  45039. source: "./media/characters/fledge/head.svg"
  45040. }
  45041. },
  45042. headAlt: {
  45043. height: math.unit(5.1, "feet"),
  45044. name: "Head (Alt)",
  45045. image: {
  45046. source: "./media/characters/fledge/head-alt.svg"
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Small",
  45053. height: math.unit(6 + 2/12, "feet")
  45054. },
  45055. {
  45056. name: "Big",
  45057. height: math.unit(20, "feet"),
  45058. default: true
  45059. },
  45060. {
  45061. name: "Giant",
  45062. height: math.unit(100, "feet")
  45063. },
  45064. {
  45065. name: "Macro",
  45066. height: math.unit(200, "feet")
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45072. {
  45073. front: {
  45074. height: math.unit(1, "meter"),
  45075. name: "Front",
  45076. image: {
  45077. source: "./media/characters/atlas-morenai/front.svg",
  45078. extra: 1275/1043,
  45079. bottom: 19/1294
  45080. }
  45081. },
  45082. back: {
  45083. height: math.unit(1, "meter"),
  45084. name: "Back",
  45085. image: {
  45086. source: "./media/characters/atlas-morenai/back.svg",
  45087. extra: 1141/1001,
  45088. bottom: 25/1166
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Normal",
  45095. height: math.unit(1, "meter"),
  45096. default: true
  45097. },
  45098. {
  45099. name: "Magic-Infused",
  45100. height: math.unit(5, "meters")
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(5, "meters"),
  45109. name: "Front",
  45110. image: {
  45111. source: "./media/characters/cintia/front.svg",
  45112. extra: 1312/1228,
  45113. bottom: 38/1350
  45114. }
  45115. },
  45116. back: {
  45117. height: math.unit(5, "meters"),
  45118. name: "Back",
  45119. image: {
  45120. source: "./media/characters/cintia/back.svg",
  45121. extra: 1260/1166,
  45122. bottom: 98/1358
  45123. }
  45124. },
  45125. frontDick: {
  45126. height: math.unit(5, "meters"),
  45127. name: "Front (Dick)",
  45128. image: {
  45129. source: "./media/characters/cintia/front-dick.svg",
  45130. extra: 1312/1228,
  45131. bottom: 38/1350
  45132. }
  45133. },
  45134. backDick: {
  45135. height: math.unit(5, "meters"),
  45136. name: "Back (Dick)",
  45137. image: {
  45138. source: "./media/characters/cintia/back-dick.svg",
  45139. extra: 1260/1166,
  45140. bottom: 98/1358
  45141. }
  45142. },
  45143. bust: {
  45144. height: math.unit(1.97, "meters"),
  45145. name: "Bust",
  45146. image: {
  45147. source: "./media/characters/cintia/bust.svg",
  45148. extra: 617/565,
  45149. bottom: 0/617
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(5, "meters"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45163. {
  45164. side: {
  45165. height: math.unit(100, "feet"),
  45166. name: "Side",
  45167. image: {
  45168. source: "./media/characters/denora/side.svg",
  45169. extra: 875/803,
  45170. bottom: 9/884
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Standard",
  45177. height: math.unit(100, "feet"),
  45178. default: true
  45179. },
  45180. {
  45181. name: "Grand",
  45182. height: math.unit(1000, "feet")
  45183. },
  45184. {
  45185. name: "Conquering",
  45186. height: math.unit(10000, "feet")
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45192. {
  45193. dressed: {
  45194. height: math.unit(8 + 5/12, "feet"),
  45195. weight: math.unit(700, "lb"),
  45196. name: "Dressed",
  45197. image: {
  45198. source: "./media/characters/kiva/dressed.svg",
  45199. extra: 1102/1055,
  45200. bottom: 60/1162
  45201. }
  45202. },
  45203. nude: {
  45204. height: math.unit(8 + 5/12, "feet"),
  45205. weight: math.unit(700, "lb"),
  45206. name: "Nude",
  45207. image: {
  45208. source: "./media/characters/kiva/nude.svg",
  45209. extra: 1102/1055,
  45210. bottom: 60/1162
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Base Height",
  45217. height: math.unit(8 + 5/12, "feet"),
  45218. default: true
  45219. },
  45220. {
  45221. name: "Macro",
  45222. height: math.unit(100, "feet")
  45223. },
  45224. {
  45225. name: "Max",
  45226. height: math.unit(3280, "feet")
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(6 + 8/12, "feet"),
  45235. weight: math.unit(250, "lb"),
  45236. name: "Front",
  45237. image: {
  45238. source: "./media/characters/ztragon/front.svg",
  45239. extra: 1825/1684,
  45240. bottom: 98/1923
  45241. }
  45242. },
  45243. },
  45244. [
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(6 + 8/12, "feet"),
  45248. default: true
  45249. },
  45250. {
  45251. name: "Macro",
  45252. height: math.unit(80, "feet")
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45258. {
  45259. front: {
  45260. height: math.unit(10.4, "feet"),
  45261. weight: math.unit(2, "tons"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/yesenia/front.svg",
  45265. extra: 1479/1474,
  45266. bottom: 233/1712
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(10.4, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45280. {
  45281. normal: {
  45282. height: math.unit(6 + 1/12, "feet"),
  45283. weight: math.unit(180, "lb"),
  45284. name: "Normal",
  45285. image: {
  45286. source: "./media/characters/leanne-lycheborne/normal.svg",
  45287. extra: 1748/1660,
  45288. bottom: 98/1846
  45289. }
  45290. },
  45291. were: {
  45292. height: math.unit(12, "feet"),
  45293. weight: math.unit(1600, "lb"),
  45294. name: "Were",
  45295. image: {
  45296. source: "./media/characters/leanne-lycheborne/were.svg",
  45297. extra: 1485/1432,
  45298. bottom: 66/1551
  45299. }
  45300. },
  45301. },
  45302. [
  45303. {
  45304. name: "Normal",
  45305. height: math.unit(6 + 1/12, "feet"),
  45306. default: true
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45312. {
  45313. side: {
  45314. height: math.unit(13, "feet"),
  45315. name: "Side",
  45316. image: {
  45317. source: "./media/characters/kira-tyler/side.svg",
  45318. extra: 693/393,
  45319. bottom: 58/751
  45320. }
  45321. },
  45322. },
  45323. [
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(13, "feet"),
  45327. default: true
  45328. },
  45329. ]
  45330. ))
  45331. characterMakers.push(() => makeCharacter(
  45332. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45333. {
  45334. front: {
  45335. height: math.unit(10.3, "feet"),
  45336. weight: math.unit(150, "lb"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/blaze/front.svg",
  45340. extra: 1378/1286,
  45341. bottom: 172/1550
  45342. }
  45343. },
  45344. },
  45345. [
  45346. {
  45347. name: "Normal",
  45348. height: math.unit(10.3, "feet"),
  45349. default: true
  45350. },
  45351. ]
  45352. ))
  45353. characterMakers.push(() => makeCharacter(
  45354. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45355. {
  45356. side: {
  45357. height: math.unit(2, "meters"),
  45358. weight: math.unit(400, "kg"),
  45359. name: "Side",
  45360. image: {
  45361. source: "./media/characters/anu/side.svg",
  45362. extra: 506/394,
  45363. bottom: 18/524
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Humanoid",
  45370. height: math.unit(2, "meters")
  45371. },
  45372. {
  45373. name: "Normal",
  45374. height: math.unit(5, "meters"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(5 + 5/12, "feet"),
  45384. weight: math.unit(170, "lb"),
  45385. name: "Front",
  45386. image: {
  45387. source: "./media/characters/synx-the-lynx/front.svg",
  45388. extra: 1893/1745,
  45389. bottom: 17/1910
  45390. }
  45391. },
  45392. side: {
  45393. height: math.unit(5 + 5/12, "feet"),
  45394. weight: math.unit(170, "lb"),
  45395. name: "Side",
  45396. image: {
  45397. source: "./media/characters/synx-the-lynx/side.svg",
  45398. extra: 1884/1740,
  45399. bottom: 39/1923
  45400. }
  45401. },
  45402. back: {
  45403. height: math.unit(5 + 5/12, "feet"),
  45404. weight: math.unit(170, "lb"),
  45405. name: "Back",
  45406. image: {
  45407. source: "./media/characters/synx-the-lynx/back.svg",
  45408. extra: 1903/1755,
  45409. bottom: 14/1917
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(5 + 5/12, "feet"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45423. {
  45424. back: {
  45425. height: math.unit(15, "feet"),
  45426. name: "Back",
  45427. image: {
  45428. source: "./media/characters/nadezda-fex/back.svg",
  45429. extra: 1695/1481,
  45430. bottom: 25/1720
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(15, "feet"),
  45438. default: true
  45439. },
  45440. {
  45441. name: "Macro",
  45442. height: math.unit(2.5, "miles")
  45443. },
  45444. {
  45445. name: "Goddess",
  45446. height: math.unit(2, "multiverses")
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(216, "cm"),
  45455. name: "Front",
  45456. image: {
  45457. source: "./media/characters/lev/front.svg",
  45458. extra: 1728/1670,
  45459. bottom: 82/1810
  45460. }
  45461. },
  45462. back: {
  45463. height: math.unit(216, "cm"),
  45464. name: "Back",
  45465. image: {
  45466. source: "./media/characters/lev/back.svg",
  45467. extra: 1738/1675,
  45468. bottom: 24/1762
  45469. }
  45470. },
  45471. dressed: {
  45472. height: math.unit(216, "cm"),
  45473. name: "Dressed",
  45474. image: {
  45475. source: "./media/characters/lev/dressed.svg",
  45476. extra: 1397/1351,
  45477. bottom: 73/1470
  45478. }
  45479. },
  45480. head: {
  45481. height: math.unit(0.51, "meter"),
  45482. name: "Head",
  45483. image: {
  45484. source: "./media/characters/lev/head.svg"
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Normal",
  45491. height: math.unit(216, "cm"),
  45492. default: true
  45493. },
  45494. {
  45495. name: "Relatively Macro",
  45496. height: math.unit(80, "meters")
  45497. },
  45498. {
  45499. name: "Megamacro",
  45500. height: math.unit(21600, "meters")
  45501. },
  45502. {
  45503. name: "Megamacro+",
  45504. height: math.unit(64800, "meters")
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(2, "meters"),
  45513. weight: math.unit(80, "kg"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/moka/front.svg",
  45517. extra: 1337/1255,
  45518. bottom: 58/1395
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Micro",
  45525. height: math.unit(15, "cm")
  45526. },
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(2, "meters"),
  45530. default: true
  45531. },
  45532. {
  45533. name: "Macro",
  45534. height: math.unit(20, "meters"),
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(9, "feet"),
  45543. weight: math.unit(240, "lb"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/kuzco/front.svg",
  45547. extra: 1593/1487,
  45548. bottom: 32/1625
  45549. }
  45550. },
  45551. side: {
  45552. height: math.unit(9, "feet"),
  45553. weight: math.unit(240, "lb"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/kuzco/side.svg",
  45557. extra: 1575/1485,
  45558. bottom: 30/1605
  45559. }
  45560. },
  45561. back: {
  45562. height: math.unit(9, "feet"),
  45563. weight: math.unit(240, "lb"),
  45564. name: "Back",
  45565. image: {
  45566. source: "./media/characters/kuzco/back.svg",
  45567. extra: 1603/1514,
  45568. bottom: 14/1617
  45569. }
  45570. },
  45571. },
  45572. [
  45573. {
  45574. name: "Normal",
  45575. height: math.unit(9, "feet"),
  45576. default: true
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45582. {
  45583. side: {
  45584. height: math.unit(2, "meters"),
  45585. weight: math.unit(300, "kg"),
  45586. name: "Side",
  45587. image: {
  45588. source: "./media/characters/ceruleus/side.svg",
  45589. extra: 1068/974,
  45590. bottom: 126/1194
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(16, "meters"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45604. {
  45605. front: {
  45606. height: math.unit(9, "feet"),
  45607. weight: math.unit(500, "kg"),
  45608. name: "Front",
  45609. image: {
  45610. source: "./media/characters/acouya/front.svg",
  45611. extra: 1660/1473,
  45612. bottom: 28/1688
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(9, "feet"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45626. {
  45627. front: {
  45628. height: math.unit(5 + 6/12, "feet"),
  45629. weight: math.unit(195, "lb"),
  45630. name: "Front",
  45631. image: {
  45632. source: "./media/characters/vant/front.svg",
  45633. extra: 1396/1320,
  45634. bottom: 20/1416
  45635. }
  45636. },
  45637. back: {
  45638. height: math.unit(5 + 6/12, "feet"),
  45639. weight: math.unit(195, "lb"),
  45640. name: "Back",
  45641. image: {
  45642. source: "./media/characters/vant/back.svg",
  45643. extra: 1396/1320,
  45644. bottom: 20/1416
  45645. }
  45646. },
  45647. maw: {
  45648. height: math.unit(0.75, "feet"),
  45649. name: "Maw",
  45650. image: {
  45651. source: "./media/characters/vant/maw.svg"
  45652. }
  45653. },
  45654. paw: {
  45655. height: math.unit(1.07, "feet"),
  45656. name: "Paw",
  45657. image: {
  45658. source: "./media/characters/vant/paw.svg"
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Micro",
  45665. height: math.unit(0.25, "inches")
  45666. },
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(5 + 6/12, "feet"),
  45670. default: true
  45671. },
  45672. {
  45673. name: "Macro",
  45674. height: math.unit(75, "feet")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45680. {
  45681. front: {
  45682. height: math.unit(30, "meters"),
  45683. weight: math.unit(363, "tons"),
  45684. name: "Front",
  45685. image: {
  45686. source: "./media/characters/ahra/front.svg",
  45687. extra: 1914/1814,
  45688. bottom: 46/1960
  45689. }
  45690. },
  45691. },
  45692. [
  45693. {
  45694. name: "Macro",
  45695. height: math.unit(30, "meters"),
  45696. default: true
  45697. },
  45698. ]
  45699. ))
  45700. characterMakers.push(() => makeCharacter(
  45701. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45702. {
  45703. undressed: {
  45704. height: math.unit(2, "m"),
  45705. weight: math.unit(250, "kg"),
  45706. name: "Undressed",
  45707. image: {
  45708. source: "./media/characters/coriander/undressed.svg",
  45709. extra: 1757/1606,
  45710. bottom: 107/1864
  45711. }
  45712. },
  45713. dressed: {
  45714. height: math.unit(2, "m"),
  45715. weight: math.unit(250, "kg"),
  45716. name: "Dressed",
  45717. image: {
  45718. source: "./media/characters/coriander/dressed.svg",
  45719. extra: 1757/1606,
  45720. bottom: 107/1864
  45721. }
  45722. },
  45723. },
  45724. [
  45725. {
  45726. name: "Normal",
  45727. height: math.unit(4, "meters"),
  45728. default: true
  45729. },
  45730. {
  45731. name: "XL",
  45732. height: math.unit(6, "meters")
  45733. },
  45734. {
  45735. name: "XXL",
  45736. height: math.unit(8, "meters")
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45742. {
  45743. front: {
  45744. height: math.unit(6, "feet"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/syrinx/front.svg",
  45748. extra: 1557/1259,
  45749. bottom: 171/1728
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(6 + 3/12, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(11 + 6/12, "feet"),
  45766. weight: math.unit(1.5, "tons"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/bor/front.svg",
  45770. extra: 1189/1109,
  45771. bottom: 170/1359
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Normal",
  45778. height: math.unit(11 + 6/12, "feet"),
  45779. default: true
  45780. },
  45781. {
  45782. name: "Macro",
  45783. height: math.unit(32 + 9/12, "feet")
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45789. {
  45790. anthro: {
  45791. height: math.unit(9, "feet"),
  45792. weight: math.unit(2076, "lb"),
  45793. name: "Anthro",
  45794. image: {
  45795. source: "./media/characters/abacus/anthro.svg",
  45796. extra: 1540/1494,
  45797. bottom: 233/1773
  45798. }
  45799. },
  45800. pigeon: {
  45801. height: math.unit(1, "feet"),
  45802. name: "Pigeon",
  45803. image: {
  45804. source: "./media/characters/abacus/pigeon.svg",
  45805. extra: 528/525,
  45806. bottom: 46/574
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(9, "feet"),
  45814. default: true
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45820. {
  45821. side: {
  45822. height: math.unit(6, "feet"),
  45823. name: "Side",
  45824. image: {
  45825. source: "./media/characters/delkhan/side.svg",
  45826. extra: 1884/1786,
  45827. bottom: 308/2192
  45828. }
  45829. },
  45830. head: {
  45831. height: math.unit(3.38, "feet"),
  45832. name: "Head",
  45833. image: {
  45834. source: "./media/characters/delkhan/head.svg"
  45835. }
  45836. },
  45837. },
  45838. [
  45839. {
  45840. name: "Normal",
  45841. height: math.unit(72, "feet"),
  45842. default: true
  45843. },
  45844. {
  45845. name: "Giant",
  45846. height: math.unit(172, "feet")
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45852. {
  45853. standing: {
  45854. height: math.unit(6, "feet"),
  45855. name: "Standing",
  45856. image: {
  45857. source: "./media/characters/euchidat/standing.svg",
  45858. extra: 1612/1553,
  45859. bottom: 116/1728
  45860. }
  45861. },
  45862. leaning: {
  45863. height: math.unit(6, "feet"),
  45864. name: "Leaning",
  45865. image: {
  45866. source: "./media/characters/euchidat/leaning.svg",
  45867. extra: 1719/1674,
  45868. bottom: 27/1746
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(175, "feet"),
  45876. default: true
  45877. },
  45878. {
  45879. name: "Megamacro",
  45880. height: math.unit(190, "miles")
  45881. },
  45882. {
  45883. name: "Gigamacro",
  45884. height: math.unit(190000, "miles")
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45890. {
  45891. front: {
  45892. height: math.unit(6, "feet"),
  45893. weight: math.unit(150, "lb"),
  45894. name: "Front",
  45895. image: {
  45896. source: "./media/characters/rebecca-stack/front.svg",
  45897. extra: 1256/1201,
  45898. bottom: 18/1274
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "Normal",
  45905. height: math.unit(5 + 8/12, "feet"),
  45906. default: true
  45907. },
  45908. {
  45909. name: "Demolitionist",
  45910. height: math.unit(200, "feet")
  45911. },
  45912. {
  45913. name: "Out of Control",
  45914. height: math.unit(2, "miles")
  45915. },
  45916. {
  45917. name: "Giga",
  45918. height: math.unit(7200, "miles")
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(6, "feet"),
  45927. weight: math.unit(150, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/jenny-cartwright/front.svg",
  45931. extra: 1384/1376,
  45932. bottom: 58/1442
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(6 + 7/12, "feet"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Librarian",
  45944. height: math.unit(55, "feet")
  45945. },
  45946. {
  45947. name: "Sightseer",
  45948. height: math.unit(50, "miles")
  45949. },
  45950. {
  45951. name: "Giga",
  45952. height: math.unit(30000, "miles")
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45958. {
  45959. nude: {
  45960. height: math.unit(8, "feet"),
  45961. weight: math.unit(225, "lb"),
  45962. name: "Nude",
  45963. image: {
  45964. source: "./media/characters/marvy/nude.svg",
  45965. extra: 1900/1683,
  45966. bottom: 89/1989
  45967. }
  45968. },
  45969. dressed: {
  45970. height: math.unit(8, "feet"),
  45971. weight: math.unit(225, "lb"),
  45972. name: "Dressed",
  45973. image: {
  45974. source: "./media/characters/marvy/dressed.svg",
  45975. extra: 1900/1683,
  45976. bottom: 89/1989
  45977. }
  45978. },
  45979. head: {
  45980. height: math.unit(2.85, "feet"),
  45981. name: "Head",
  45982. image: {
  45983. source: "./media/characters/marvy/head.svg"
  45984. }
  45985. },
  45986. },
  45987. [
  45988. {
  45989. name: "Normal",
  45990. height: math.unit(8, "feet"),
  45991. default: true
  45992. },
  45993. ]
  45994. ))
  45995. characterMakers.push(() => makeCharacter(
  45996. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45997. {
  45998. front: {
  45999. height: math.unit(8, "feet"),
  46000. weight: math.unit(250, "lb"),
  46001. name: "Front",
  46002. image: {
  46003. source: "./media/characters/leah/front.svg",
  46004. extra: 1257/1149,
  46005. bottom: 109/1366
  46006. }
  46007. },
  46008. },
  46009. [
  46010. {
  46011. name: "Normal",
  46012. height: math.unit(8, "feet"),
  46013. default: true
  46014. },
  46015. {
  46016. name: "Minimacro",
  46017. height: math.unit(40, "feet")
  46018. },
  46019. {
  46020. name: "Macro",
  46021. height: math.unit(124, "feet")
  46022. },
  46023. {
  46024. name: "Megamacro",
  46025. height: math.unit(850, "feet")
  46026. },
  46027. ]
  46028. ))
  46029. characterMakers.push(() => makeCharacter(
  46030. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46031. {
  46032. side: {
  46033. height: math.unit(13 + 6/12, "feet"),
  46034. weight: math.unit(3200, "lb"),
  46035. name: "Side",
  46036. image: {
  46037. source: "./media/characters/alvir/side.svg",
  46038. extra: 896/589,
  46039. bottom: 26/922
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Normal",
  46046. height: math.unit(13 + 6/12, "feet"),
  46047. default: true
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46053. {
  46054. front: {
  46055. height: math.unit(5 + 4/12, "feet"),
  46056. weight: math.unit(236, "lb"),
  46057. name: "Front",
  46058. image: {
  46059. source: "./media/characters/zaina-khalil/front.svg",
  46060. extra: 1533/1485,
  46061. bottom: 94/1627
  46062. }
  46063. },
  46064. side: {
  46065. height: math.unit(5 + 4/12, "feet"),
  46066. weight: math.unit(236, "lb"),
  46067. name: "Side",
  46068. image: {
  46069. source: "./media/characters/zaina-khalil/side.svg",
  46070. extra: 1537/1498,
  46071. bottom: 66/1603
  46072. }
  46073. },
  46074. back: {
  46075. height: math.unit(5 + 4/12, "feet"),
  46076. weight: math.unit(236, "lb"),
  46077. name: "Back",
  46078. image: {
  46079. source: "./media/characters/zaina-khalil/back.svg",
  46080. extra: 1546/1494,
  46081. bottom: 89/1635
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(5 + 4/12, "feet"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46095. {
  46096. side: {
  46097. height: math.unit(12, "feet"),
  46098. weight: math.unit(4000, "lb"),
  46099. name: "Side",
  46100. image: {
  46101. source: "./media/characters/terry/side.svg",
  46102. extra: 1518/1439,
  46103. bottom: 149/1667
  46104. }
  46105. },
  46106. },
  46107. [
  46108. {
  46109. name: "Normal",
  46110. height: math.unit(12, "feet"),
  46111. default: true
  46112. },
  46113. ]
  46114. ))
  46115. characterMakers.push(() => makeCharacter(
  46116. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46117. {
  46118. front: {
  46119. height: math.unit(12, "feet"),
  46120. weight: math.unit(1500, "lb"),
  46121. name: "Front",
  46122. image: {
  46123. source: "./media/characters/kahea/front.svg",
  46124. extra: 1722/1617,
  46125. bottom: 179/1901
  46126. }
  46127. },
  46128. },
  46129. [
  46130. {
  46131. name: "Normal",
  46132. height: math.unit(12, "feet"),
  46133. default: true
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46139. {
  46140. demonFront: {
  46141. height: math.unit(36, "feet"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/alex-xuria/demon-front.svg",
  46145. extra: 1705/1673,
  46146. bottom: 198/1903
  46147. },
  46148. form: "demon",
  46149. default: true
  46150. },
  46151. demonBack: {
  46152. height: math.unit(36, "feet"),
  46153. name: "Back",
  46154. image: {
  46155. source: "./media/characters/alex-xuria/demon-back.svg",
  46156. extra: 1725/1693,
  46157. bottom: 70/1795
  46158. },
  46159. form: "demon"
  46160. },
  46161. demonHead: {
  46162. height: math.unit(2.14, "meters"),
  46163. name: "Head",
  46164. image: {
  46165. source: "./media/characters/alex-xuria/demon-head.svg"
  46166. },
  46167. form: "demon"
  46168. },
  46169. demonHand: {
  46170. height: math.unit(1.61, "meters"),
  46171. name: "Hand",
  46172. image: {
  46173. source: "./media/characters/alex-xuria/demon-hand.svg"
  46174. },
  46175. form: "demon"
  46176. },
  46177. demonPaw: {
  46178. height: math.unit(1.35, "meters"),
  46179. name: "Paw",
  46180. image: {
  46181. source: "./media/characters/alex-xuria/demon-paw.svg"
  46182. },
  46183. form: "demon"
  46184. },
  46185. demonFoot: {
  46186. height: math.unit(2.2, "meters"),
  46187. name: "Foot",
  46188. image: {
  46189. source: "./media/characters/alex-xuria/demon-foot.svg"
  46190. },
  46191. form: "demon"
  46192. },
  46193. demonCock: {
  46194. height: math.unit(1.74, "meters"),
  46195. name: "Cock",
  46196. image: {
  46197. source: "./media/characters/alex-xuria/demon-cock.svg"
  46198. },
  46199. form: "demon"
  46200. },
  46201. demonTailClosed: {
  46202. height: math.unit(1.47, "meters"),
  46203. name: "Tail (Closed)",
  46204. image: {
  46205. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46206. },
  46207. form: "demon"
  46208. },
  46209. demonTailOpen: {
  46210. height: math.unit(2.85, "meters"),
  46211. name: "Tail (Open)",
  46212. image: {
  46213. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46214. },
  46215. form: "demon"
  46216. },
  46217. incubusFront: {
  46218. height: math.unit(12, "feet"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/alex-xuria/incubus-front.svg",
  46222. extra: 1754/1677,
  46223. bottom: 125/1879
  46224. },
  46225. form: "incubus",
  46226. default: true
  46227. },
  46228. incubusBack: {
  46229. height: math.unit(12, "feet"),
  46230. name: "Back",
  46231. image: {
  46232. source: "./media/characters/alex-xuria/incubus-back.svg",
  46233. extra: 1702/1647,
  46234. bottom: 30/1732
  46235. },
  46236. form: "incubus"
  46237. },
  46238. incubusHead: {
  46239. height: math.unit(3.45, "feet"),
  46240. name: "Head",
  46241. image: {
  46242. source: "./media/characters/alex-xuria/incubus-head.svg"
  46243. },
  46244. form: "incubus"
  46245. },
  46246. rabbitFront: {
  46247. height: math.unit(6, "feet"),
  46248. name: "Front",
  46249. image: {
  46250. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46251. extra: 1369/1349,
  46252. bottom: 45/1414
  46253. },
  46254. form: "rabbit",
  46255. default: true
  46256. },
  46257. rabbitSide: {
  46258. height: math.unit(6, "feet"),
  46259. name: "Side",
  46260. image: {
  46261. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46262. extra: 1370/1356,
  46263. bottom: 37/1407
  46264. },
  46265. form: "rabbit"
  46266. },
  46267. rabbitBack: {
  46268. height: math.unit(6, "feet"),
  46269. name: "Back",
  46270. image: {
  46271. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46272. extra: 1375/1358,
  46273. bottom: 43/1418
  46274. },
  46275. form: "rabbit"
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Normal",
  46281. height: math.unit(6, "feet"),
  46282. default: true,
  46283. form: "rabbit"
  46284. },
  46285. {
  46286. name: "Incubus",
  46287. height: math.unit(12, "feet"),
  46288. default: true,
  46289. form: "incubus"
  46290. },
  46291. {
  46292. name: "Demon",
  46293. height: math.unit(36, "feet"),
  46294. default: true,
  46295. form: "demon"
  46296. }
  46297. ],
  46298. {
  46299. "demon": {
  46300. name: "Demon",
  46301. default: true
  46302. },
  46303. "incubus": {
  46304. name: "Incubus",
  46305. },
  46306. "rabbit": {
  46307. name: "Rabbit"
  46308. }
  46309. }
  46310. ))
  46311. characterMakers.push(() => makeCharacter(
  46312. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46313. {
  46314. front: {
  46315. height: math.unit(7 + 5/12, "feet"),
  46316. weight: math.unit(510, "lb"),
  46317. name: "Front",
  46318. image: {
  46319. source: "./media/characters/syrup/front.svg",
  46320. extra: 932/916,
  46321. bottom: 26/958
  46322. }
  46323. },
  46324. },
  46325. [
  46326. {
  46327. name: "Normal",
  46328. height: math.unit(7 + 5/12, "feet"),
  46329. default: true
  46330. },
  46331. {
  46332. name: "Big",
  46333. height: math.unit(50, "feet")
  46334. },
  46335. {
  46336. name: "Macro",
  46337. height: math.unit(300, "feet")
  46338. },
  46339. {
  46340. name: "Megamacro",
  46341. height: math.unit(1, "mile")
  46342. },
  46343. ]
  46344. ))
  46345. characterMakers.push(() => makeCharacter(
  46346. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46347. {
  46348. front: {
  46349. height: math.unit(6 + 9/12, "feet"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/zeimne/front.svg",
  46353. extra: 1969/1806,
  46354. bottom: 53/2022
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(6 + 9/12, "feet"),
  46362. default: true
  46363. },
  46364. {
  46365. name: "Giant",
  46366. height: math.unit(550, "feet")
  46367. },
  46368. {
  46369. name: "Mega",
  46370. height: math.unit(3, "miles")
  46371. },
  46372. {
  46373. name: "Giga",
  46374. height: math.unit(250, "miles")
  46375. },
  46376. {
  46377. name: "Tera",
  46378. height: math.unit(1, "AU")
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(5 + 2/12, "feet"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/grar/front.svg",
  46390. extra: 1331/1119,
  46391. bottom: 60/1391
  46392. }
  46393. },
  46394. back: {
  46395. height: math.unit(5 + 2/12, "feet"),
  46396. name: "Back",
  46397. image: {
  46398. source: "./media/characters/grar/back.svg",
  46399. extra: 1385/1169,
  46400. bottom: 23/1408
  46401. }
  46402. },
  46403. },
  46404. [
  46405. {
  46406. name: "Normal",
  46407. height: math.unit(5 + 2/12, "feet"),
  46408. default: true
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46414. {
  46415. front: {
  46416. height: math.unit(13 + 7/12, "feet"),
  46417. weight: math.unit(2200, "lb"),
  46418. name: "Front",
  46419. image: {
  46420. source: "./media/characters/endraya/front.svg",
  46421. extra: 1289/1215,
  46422. bottom: 50/1339
  46423. }
  46424. },
  46425. nude: {
  46426. height: math.unit(13 + 7/12, "feet"),
  46427. weight: math.unit(2200, "lb"),
  46428. name: "Nude",
  46429. image: {
  46430. source: "./media/characters/endraya/nude.svg",
  46431. extra: 1247/1171,
  46432. bottom: 40/1287
  46433. }
  46434. },
  46435. head: {
  46436. height: math.unit(2.6, "feet"),
  46437. name: "Head",
  46438. image: {
  46439. source: "./media/characters/endraya/head.svg"
  46440. }
  46441. },
  46442. slit: {
  46443. height: math.unit(3.4, "feet"),
  46444. name: "Slit",
  46445. image: {
  46446. source: "./media/characters/endraya/slit.svg"
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(13 + 7/12, "feet"),
  46454. default: true
  46455. },
  46456. {
  46457. name: "Macro",
  46458. height: math.unit(200, "feet")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(1.81, "meters"),
  46467. weight: math.unit(69, "kg"),
  46468. name: "Front",
  46469. image: {
  46470. source: "./media/characters/rodryana/front.svg",
  46471. extra: 2002/1921,
  46472. bottom: 53/2055
  46473. }
  46474. },
  46475. back: {
  46476. height: math.unit(1.81, "meters"),
  46477. weight: math.unit(69, "kg"),
  46478. name: "Back",
  46479. image: {
  46480. source: "./media/characters/rodryana/back.svg",
  46481. extra: 1993/1926,
  46482. bottom: 48/2041
  46483. }
  46484. },
  46485. maw: {
  46486. height: math.unit(0.19769417475, "meters"),
  46487. name: "Maw",
  46488. image: {
  46489. source: "./media/characters/rodryana/maw.svg"
  46490. }
  46491. },
  46492. slit: {
  46493. height: math.unit(0.31631067961, "meters"),
  46494. name: "Slit",
  46495. image: {
  46496. source: "./media/characters/rodryana/slit.svg"
  46497. }
  46498. },
  46499. },
  46500. [
  46501. {
  46502. name: "Normal",
  46503. height: math.unit(1.81, "meters")
  46504. },
  46505. {
  46506. name: "Mini Macro",
  46507. height: math.unit(181, "meters")
  46508. },
  46509. {
  46510. name: "Macro",
  46511. height: math.unit(452, "meters"),
  46512. default: true
  46513. },
  46514. {
  46515. name: "Mega Macro",
  46516. height: math.unit(1.375, "km")
  46517. },
  46518. {
  46519. name: "Giga Macro",
  46520. height: math.unit(13.575, "km")
  46521. },
  46522. ]
  46523. ))
  46524. characterMakers.push(() => makeCharacter(
  46525. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46526. {
  46527. front: {
  46528. height: math.unit(6, "feet"),
  46529. weight: math.unit(1000, "lb"),
  46530. name: "Front",
  46531. image: {
  46532. source: "./media/characters/asaya/front.svg",
  46533. extra: 1460/1200,
  46534. bottom: 71/1531
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(8, "km"),
  46542. default: true
  46543. },
  46544. ]
  46545. ))
  46546. characterMakers.push(() => makeCharacter(
  46547. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46548. {
  46549. front: {
  46550. height: math.unit(3.5, "meters"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/sarzu-and-israz/front.svg",
  46554. extra: 1570/1558,
  46555. bottom: 150/1720
  46556. },
  46557. },
  46558. back: {
  46559. height: math.unit(3.5, "meters"),
  46560. name: "Back",
  46561. image: {
  46562. source: "./media/characters/sarzu-and-israz/back.svg",
  46563. extra: 1523/1509,
  46564. bottom: 132/1655
  46565. },
  46566. },
  46567. frontFemale: {
  46568. height: math.unit(3.5, "meters"),
  46569. name: "Front (Female)",
  46570. image: {
  46571. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46572. extra: 1570/1558,
  46573. bottom: 150/1720
  46574. },
  46575. },
  46576. frontHerm: {
  46577. height: math.unit(3.5, "meters"),
  46578. name: "Front (Herm)",
  46579. image: {
  46580. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46581. extra: 1570/1558,
  46582. bottom: 150/1720
  46583. },
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Normal",
  46589. height: math.unit(3.5, "meters"),
  46590. default: true,
  46591. },
  46592. {
  46593. name: "Macro",
  46594. height: math.unit(65.5, "meters"),
  46595. },
  46596. ],
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46600. {
  46601. front: {
  46602. height: math.unit(6, "feet"),
  46603. weight: math.unit(250, "lb"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/zenimma/front.svg",
  46607. extra: 1346/1320,
  46608. bottom: 58/1404
  46609. }
  46610. },
  46611. back: {
  46612. height: math.unit(6, "feet"),
  46613. weight: math.unit(250, "lb"),
  46614. name: "Back",
  46615. image: {
  46616. source: "./media/characters/zenimma/back.svg",
  46617. extra: 1324/1308,
  46618. bottom: 44/1368
  46619. }
  46620. },
  46621. dick: {
  46622. height: math.unit(1.44, "feet"),
  46623. name: "Dick",
  46624. image: {
  46625. source: "./media/characters/zenimma/dick.svg"
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Canon Height",
  46632. height: math.unit(66, "miles"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46639. {
  46640. nude: {
  46641. height: math.unit(6, "feet"),
  46642. weight: math.unit(150, "lb"),
  46643. name: "Nude",
  46644. image: {
  46645. source: "./media/characters/shavon/nude.svg",
  46646. extra: 1242/1096,
  46647. bottom: 98/1340
  46648. }
  46649. },
  46650. dressed: {
  46651. height: math.unit(6, "feet"),
  46652. weight: math.unit(150, "lb"),
  46653. name: "Dressed",
  46654. image: {
  46655. source: "./media/characters/shavon/dressed.svg",
  46656. extra: 1242/1096,
  46657. bottom: 98/1340
  46658. }
  46659. },
  46660. },
  46661. [
  46662. {
  46663. name: "Macro",
  46664. height: math.unit(255, "feet"),
  46665. default: true
  46666. },
  46667. ]
  46668. ))
  46669. characterMakers.push(() => makeCharacter(
  46670. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46671. {
  46672. front: {
  46673. height: math.unit(6, "feet"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/steph/front.svg",
  46677. extra: 1430/1330,
  46678. bottom: 54/1484
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(6, "feet"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46692. {
  46693. front: {
  46694. height: math.unit(9, "feet"),
  46695. weight: math.unit(400, "lb"),
  46696. name: "Front",
  46697. image: {
  46698. source: "./media/characters/kil'aman/front.svg",
  46699. extra: 1210/1159,
  46700. bottom: 109/1319
  46701. }
  46702. },
  46703. head: {
  46704. height: math.unit(2.14, "feet"),
  46705. name: "Head",
  46706. image: {
  46707. source: "./media/characters/kil'aman/head.svg"
  46708. }
  46709. },
  46710. maw: {
  46711. height: math.unit(1.21, "feet"),
  46712. name: "Maw",
  46713. image: {
  46714. source: "./media/characters/kil'aman/maw.svg"
  46715. }
  46716. },
  46717. foot: {
  46718. height: math.unit(1.7, "feet"),
  46719. name: "Foot",
  46720. image: {
  46721. source: "./media/characters/kil'aman/foot.svg"
  46722. }
  46723. },
  46724. dick: {
  46725. height: math.unit(2.1, "feet"),
  46726. name: "Dick",
  46727. image: {
  46728. source: "./media/characters/kil'aman/dick.svg"
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal",
  46735. height: math.unit(9, "feet")
  46736. },
  46737. {
  46738. name: "Canon Height",
  46739. height: math.unit(10, "miles"),
  46740. default: true
  46741. },
  46742. {
  46743. name: "Maximum",
  46744. height: math.unit(6e9, "miles")
  46745. },
  46746. ]
  46747. ))
  46748. characterMakers.push(() => makeCharacter(
  46749. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46750. {
  46751. front: {
  46752. height: math.unit(90, "feet"),
  46753. weight: math.unit(675000, "lb"),
  46754. name: "Front",
  46755. image: {
  46756. source: "./media/characters/qadan/front.svg",
  46757. extra: 1012/1004,
  46758. bottom: 78/1090
  46759. }
  46760. },
  46761. back: {
  46762. height: math.unit(90, "feet"),
  46763. weight: math.unit(675000, "lb"),
  46764. name: "Back",
  46765. image: {
  46766. source: "./media/characters/qadan/back.svg",
  46767. extra: 1042/1031,
  46768. bottom: 55/1097
  46769. }
  46770. },
  46771. armored: {
  46772. height: math.unit(90, "feet"),
  46773. weight: math.unit(675000, "lb"),
  46774. name: "Armored",
  46775. image: {
  46776. source: "./media/characters/qadan/armored.svg",
  46777. extra: 1047/1037,
  46778. bottom: 48/1095
  46779. }
  46780. },
  46781. },
  46782. [
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(90, "feet"),
  46786. default: true
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46792. {
  46793. front: {
  46794. height: math.unit(6, "feet"),
  46795. weight: math.unit(225, "lb"),
  46796. name: "Front",
  46797. image: {
  46798. source: "./media/characters/brooke/front.svg",
  46799. extra: 1050/1010,
  46800. bottom: 66/1116
  46801. }
  46802. },
  46803. back: {
  46804. height: math.unit(6, "feet"),
  46805. weight: math.unit(225, "lb"),
  46806. name: "Back",
  46807. image: {
  46808. source: "./media/characters/brooke/back.svg",
  46809. extra: 1053/1013,
  46810. bottom: 41/1094
  46811. }
  46812. },
  46813. dressed: {
  46814. height: math.unit(6, "feet"),
  46815. weight: math.unit(225, "lb"),
  46816. name: "Dressed",
  46817. image: {
  46818. source: "./media/characters/brooke/dressed.svg",
  46819. extra: 1050/1010,
  46820. bottom: 66/1116
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Canon Height",
  46827. height: math.unit(500, "miles"),
  46828. default: true
  46829. },
  46830. ]
  46831. ))
  46832. characterMakers.push(() => makeCharacter(
  46833. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46834. {
  46835. front: {
  46836. height: math.unit(6 + 2/12, "feet"),
  46837. weight: math.unit(210, "lb"),
  46838. name: "Front",
  46839. image: {
  46840. source: "./media/characters/wubs/front.svg",
  46841. extra: 1345/1325,
  46842. bottom: 70/1415
  46843. }
  46844. },
  46845. back: {
  46846. height: math.unit(6 + 2/12, "feet"),
  46847. weight: math.unit(210, "lb"),
  46848. name: "Back",
  46849. image: {
  46850. source: "./media/characters/wubs/back.svg",
  46851. extra: 1296/1275,
  46852. bottom: 58/1354
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(6 + 2/12, "feet"),
  46860. default: true
  46861. },
  46862. {
  46863. name: "Macro",
  46864. height: math.unit(1000, "feet")
  46865. },
  46866. {
  46867. name: "Megamacro",
  46868. height: math.unit(1, "mile")
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(4, "feet"),
  46877. weight: math.unit(120, "lb"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/blue/front.svg",
  46881. extra: 1636/1525,
  46882. bottom: 43/1679
  46883. }
  46884. },
  46885. back: {
  46886. height: math.unit(4, "feet"),
  46887. weight: math.unit(120, "lb"),
  46888. name: "Back",
  46889. image: {
  46890. source: "./media/characters/blue/back.svg",
  46891. extra: 1660/1560,
  46892. bottom: 57/1717
  46893. }
  46894. },
  46895. paws: {
  46896. height: math.unit(0.826, "feet"),
  46897. name: "Paws",
  46898. image: {
  46899. source: "./media/characters/blue/paws.svg"
  46900. }
  46901. },
  46902. },
  46903. [
  46904. {
  46905. name: "Micro",
  46906. height: math.unit(3, "inches")
  46907. },
  46908. {
  46909. name: "Normal",
  46910. height: math.unit(4, "feet"),
  46911. default: true
  46912. },
  46913. {
  46914. name: "Femenine Form",
  46915. height: math.unit(14, "feet")
  46916. },
  46917. {
  46918. name: "Werebat Form",
  46919. height: math.unit(18, "feet")
  46920. },
  46921. ]
  46922. ))
  46923. characterMakers.push(() => makeCharacter(
  46924. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46925. {
  46926. female: {
  46927. height: math.unit(7 + 4/12, "feet"),
  46928. weight: math.unit(243, "lb"),
  46929. name: "Female",
  46930. image: {
  46931. source: "./media/characters/kaya/female.svg",
  46932. extra: 975/898,
  46933. bottom: 34/1009
  46934. }
  46935. },
  46936. herm: {
  46937. height: math.unit(7 + 4/12, "feet"),
  46938. weight: math.unit(243, "lb"),
  46939. name: "Herm",
  46940. image: {
  46941. source: "./media/characters/kaya/herm.svg",
  46942. extra: 975/898,
  46943. bottom: 34/1009
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Normal",
  46950. height: math.unit(7 + 4/12, "feet"),
  46951. default: true
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46957. {
  46958. female: {
  46959. height: math.unit(9 + 4/12, "feet"),
  46960. weight: math.unit(398, "lb"),
  46961. name: "Female",
  46962. image: {
  46963. source: "./media/characters/kassandra/female.svg",
  46964. extra: 908/839,
  46965. bottom: 61/969
  46966. }
  46967. },
  46968. intersex: {
  46969. height: math.unit(9 + 4/12, "feet"),
  46970. weight: math.unit(398, "lb"),
  46971. name: "Intersex",
  46972. image: {
  46973. source: "./media/characters/kassandra/intersex.svg",
  46974. extra: 908/839,
  46975. bottom: 61/969
  46976. }
  46977. },
  46978. },
  46979. [
  46980. {
  46981. name: "Normal",
  46982. height: math.unit(9 + 4/12, "feet"),
  46983. default: true
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46989. {
  46990. front: {
  46991. height: math.unit(3, "meters"),
  46992. name: "Front",
  46993. image: {
  46994. source: "./media/characters/amy/front.svg",
  46995. extra: 1380/1343,
  46996. bottom: 70/1450
  46997. }
  46998. },
  46999. back: {
  47000. height: math.unit(3, "meters"),
  47001. name: "Back",
  47002. image: {
  47003. source: "./media/characters/amy/back.svg",
  47004. extra: 1380/1347,
  47005. bottom: 66/1446
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Normal",
  47012. height: math.unit(3, "meters"),
  47013. default: true
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47019. {
  47020. side: {
  47021. height: math.unit(47, "cm"),
  47022. weight: math.unit(10.8, "kg"),
  47023. name: "Side",
  47024. image: {
  47025. source: "./media/characters/alphaschakal/side.svg",
  47026. extra: 1058/568,
  47027. bottom: 62/1120
  47028. }
  47029. },
  47030. back: {
  47031. height: math.unit(78, "cm"),
  47032. weight: math.unit(10.8, "kg"),
  47033. name: "Back",
  47034. image: {
  47035. source: "./media/characters/alphaschakal/back.svg",
  47036. extra: 1102/942,
  47037. bottom: 185/1287
  47038. }
  47039. },
  47040. head: {
  47041. height: math.unit(28, "cm"),
  47042. name: "Head",
  47043. image: {
  47044. source: "./media/characters/alphaschakal/head.svg",
  47045. extra: 696/508,
  47046. bottom: 0/696
  47047. }
  47048. },
  47049. paw: {
  47050. height: math.unit(16, "cm"),
  47051. name: "Paw",
  47052. image: {
  47053. source: "./media/characters/alphaschakal/paw.svg"
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(47, "cm"),
  47061. default: true
  47062. },
  47063. {
  47064. name: "Macro",
  47065. height: math.unit(340, "cm")
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(36, "earths"),
  47074. name: "Front",
  47075. image: {
  47076. source: "./media/characters/ecobyss/front.svg",
  47077. extra: 1282/1215,
  47078. bottom: 11/1293
  47079. }
  47080. },
  47081. back: {
  47082. height: math.unit(36, "earths"),
  47083. name: "Back",
  47084. image: {
  47085. source: "./media/characters/ecobyss/back.svg",
  47086. extra: 1291/1222,
  47087. bottom: 8/1299
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(36, "earths"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47101. {
  47102. front: {
  47103. height: math.unit(12, "feet"),
  47104. name: "Front",
  47105. image: {
  47106. source: "./media/characters/vasuk/front.svg",
  47107. extra: 1326/1207,
  47108. bottom: 64/1390
  47109. }
  47110. },
  47111. },
  47112. [
  47113. {
  47114. name: "Normal",
  47115. height: math.unit(12, "feet"),
  47116. default: true
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47122. {
  47123. side: {
  47124. height: math.unit(100, "feet"),
  47125. name: "Side",
  47126. image: {
  47127. source: "./media/characters/linneaus/side.svg",
  47128. extra: 987/807,
  47129. bottom: 47/1034
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Macro",
  47136. height: math.unit(100, "feet"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47143. {
  47144. front: {
  47145. height: math.unit(8, "feet"),
  47146. weight: math.unit(1200, "lb"),
  47147. name: "Front",
  47148. image: {
  47149. source: "./media/characters/nyterious-daligdig/front.svg",
  47150. extra: 1284/1094,
  47151. bottom: 84/1368
  47152. }
  47153. },
  47154. back: {
  47155. height: math.unit(8, "feet"),
  47156. weight: math.unit(1200, "lb"),
  47157. name: "Back",
  47158. image: {
  47159. source: "./media/characters/nyterious-daligdig/back.svg",
  47160. extra: 1301/1121,
  47161. bottom: 129/1430
  47162. }
  47163. },
  47164. mouth: {
  47165. height: math.unit(1.464, "feet"),
  47166. name: "Mouth",
  47167. image: {
  47168. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Small",
  47175. height: math.unit(8, "feet"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Normal",
  47180. height: math.unit(15, "feet")
  47181. },
  47182. {
  47183. name: "Macro",
  47184. height: math.unit(90, "feet")
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47190. {
  47191. front: {
  47192. height: math.unit(7 + 4/12, "feet"),
  47193. weight: math.unit(252, "lb"),
  47194. name: "Front",
  47195. image: {
  47196. source: "./media/characters/bandel/front.svg",
  47197. extra: 1946/1775,
  47198. bottom: 26/1972
  47199. }
  47200. },
  47201. back: {
  47202. height: math.unit(7 + 4/12, "feet"),
  47203. weight: math.unit(252, "lb"),
  47204. name: "Back",
  47205. image: {
  47206. source: "./media/characters/bandel/back.svg",
  47207. extra: 1940/1770,
  47208. bottom: 25/1965
  47209. }
  47210. },
  47211. maw: {
  47212. height: math.unit(2.15, "feet"),
  47213. name: "Maw",
  47214. image: {
  47215. source: "./media/characters/bandel/maw.svg"
  47216. }
  47217. },
  47218. stomach: {
  47219. height: math.unit(1.95, "feet"),
  47220. name: "Stomach",
  47221. image: {
  47222. source: "./media/characters/bandel/stomach.svg"
  47223. }
  47224. },
  47225. },
  47226. [
  47227. {
  47228. name: "Normal",
  47229. height: math.unit(7 + 4/12, "feet"),
  47230. default: true
  47231. },
  47232. ]
  47233. ))
  47234. characterMakers.push(() => makeCharacter(
  47235. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47236. {
  47237. front: {
  47238. height: math.unit(10 + 5/12, "feet"),
  47239. weight: math.unit(773.5, "kg"),
  47240. name: "Front",
  47241. image: {
  47242. source: "./media/characters/zed/front.svg",
  47243. extra: 987/941,
  47244. bottom: 52/1039
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Short",
  47251. height: math.unit(5 + 4/12, "feet")
  47252. },
  47253. {
  47254. name: "Average",
  47255. height: math.unit(10 + 5/12, "feet"),
  47256. default: true
  47257. },
  47258. {
  47259. name: "Mini-Macro",
  47260. height: math.unit(24 + 9/12, "feet")
  47261. },
  47262. {
  47263. name: "Macro",
  47264. height: math.unit(249, "feet")
  47265. },
  47266. {
  47267. name: "Mega-Macro",
  47268. height: math.unit(12490, "feet")
  47269. },
  47270. {
  47271. name: "Giga-Macro",
  47272. height: math.unit(24.9, "miles")
  47273. },
  47274. {
  47275. name: "Tera-Macro",
  47276. height: math.unit(24900, "miles")
  47277. },
  47278. {
  47279. name: "Cosmic Scale",
  47280. height: math.unit(38.9, "lightyears")
  47281. },
  47282. {
  47283. name: "Universal Scale",
  47284. height: math.unit(138e12, "lightyears")
  47285. },
  47286. ]
  47287. ))
  47288. characterMakers.push(() => makeCharacter(
  47289. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47290. {
  47291. front: {
  47292. height: math.unit(1561, "inches"),
  47293. name: "Front",
  47294. image: {
  47295. source: "./media/characters/ivan/front.svg",
  47296. extra: 1126/1071,
  47297. bottom: 26/1152
  47298. }
  47299. },
  47300. back: {
  47301. height: math.unit(1561, "inches"),
  47302. name: "Back",
  47303. image: {
  47304. source: "./media/characters/ivan/back.svg",
  47305. extra: 1134/1079,
  47306. bottom: 30/1164
  47307. }
  47308. },
  47309. },
  47310. [
  47311. {
  47312. name: "Normal",
  47313. height: math.unit(1561, "inches"),
  47314. default: true
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47320. {
  47321. front: {
  47322. height: math.unit(5 + 7/12, "feet"),
  47323. weight: math.unit(150, "lb"),
  47324. name: "Front",
  47325. image: {
  47326. source: "./media/characters/robin-arctic-hare/front.svg",
  47327. extra: 1148/974,
  47328. bottom: 20/1168
  47329. }
  47330. },
  47331. },
  47332. [
  47333. {
  47334. name: "Normal",
  47335. height: math.unit(5 + 7/12, "feet"),
  47336. default: true
  47337. },
  47338. ]
  47339. ))
  47340. characterMakers.push(() => makeCharacter(
  47341. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47342. {
  47343. side: {
  47344. height: math.unit(5, "feet"),
  47345. name: "Side",
  47346. image: {
  47347. source: "./media/characters/birch/side.svg",
  47348. extra: 985/796,
  47349. bottom: 111/1096
  47350. }
  47351. },
  47352. },
  47353. [
  47354. {
  47355. name: "Normal",
  47356. height: math.unit(5, "feet"),
  47357. default: true
  47358. },
  47359. ]
  47360. ))
  47361. characterMakers.push(() => makeCharacter(
  47362. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47363. {
  47364. front: {
  47365. height: math.unit(4, "feet"),
  47366. name: "Front",
  47367. image: {
  47368. source: "./media/characters/rasp/front.svg",
  47369. extra: 561/478,
  47370. bottom: 74/635
  47371. }
  47372. },
  47373. },
  47374. [
  47375. {
  47376. name: "Normal",
  47377. height: math.unit(4, "feet"),
  47378. default: true
  47379. },
  47380. ]
  47381. ))
  47382. characterMakers.push(() => makeCharacter(
  47383. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47384. {
  47385. front: {
  47386. height: math.unit(4 + 6/12, "feet"),
  47387. name: "Front",
  47388. image: {
  47389. source: "./media/characters/agatha/front.svg",
  47390. extra: 947/933,
  47391. bottom: 42/989
  47392. }
  47393. },
  47394. back: {
  47395. height: math.unit(4 + 6/12, "feet"),
  47396. name: "Back",
  47397. image: {
  47398. source: "./media/characters/agatha/back.svg",
  47399. extra: 935/922,
  47400. bottom: 48/983
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Normal",
  47407. height: math.unit(4 + 6 /12, "feet"),
  47408. default: true
  47409. },
  47410. {
  47411. name: "Max Size",
  47412. height: math.unit(500, "feet")
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47418. {
  47419. side: {
  47420. height: math.unit(30, "feet"),
  47421. name: "Side",
  47422. image: {
  47423. source: "./media/characters/roggy/side.svg",
  47424. extra: 909/643,
  47425. bottom: 63/972
  47426. }
  47427. },
  47428. lounging: {
  47429. height: math.unit(20, "feet"),
  47430. name: "Lounging",
  47431. image: {
  47432. source: "./media/characters/roggy/lounging.svg",
  47433. extra: 643/479,
  47434. bottom: 145/788
  47435. }
  47436. },
  47437. handpaw: {
  47438. height: math.unit(13.1, "feet"),
  47439. name: "Handpaw",
  47440. image: {
  47441. source: "./media/characters/roggy/handpaw.svg"
  47442. }
  47443. },
  47444. footpaw: {
  47445. height: math.unit(15.8, "feet"),
  47446. name: "Footpaw",
  47447. image: {
  47448. source: "./media/characters/roggy/footpaw.svg"
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Menacing",
  47455. height: math.unit(30, "feet"),
  47456. default: true
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47462. {
  47463. front: {
  47464. height: math.unit(5 + 7/12, "feet"),
  47465. weight: math.unit(135, "lb"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/naomi/front.svg",
  47469. extra: 1209/1154,
  47470. bottom: 129/1338
  47471. }
  47472. },
  47473. back: {
  47474. height: math.unit(5 + 7/12, "feet"),
  47475. weight: math.unit(135, "lb"),
  47476. name: "Back",
  47477. image: {
  47478. source: "./media/characters/naomi/back.svg",
  47479. extra: 1252/1190,
  47480. bottom: 23/1275
  47481. }
  47482. },
  47483. },
  47484. [
  47485. {
  47486. name: "Normal",
  47487. height: math.unit(5 + 7 /12, "feet"),
  47488. default: true
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47494. {
  47495. side: {
  47496. height: math.unit(35, "meters"),
  47497. name: "Side",
  47498. image: {
  47499. source: "./media/characters/kimpi/side.svg",
  47500. extra: 419/382,
  47501. bottom: 63/482
  47502. }
  47503. },
  47504. hand: {
  47505. height: math.unit(8.96, "meters"),
  47506. name: "Hand",
  47507. image: {
  47508. source: "./media/characters/kimpi/hand.svg"
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Normal",
  47515. height: math.unit(35, "meters"),
  47516. default: true
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47522. {
  47523. front: {
  47524. height: math.unit(4 + 4/12, "feet"),
  47525. name: "Front",
  47526. image: {
  47527. source: "./media/characters/pepper-purrloin/front.svg",
  47528. extra: 1141/1024,
  47529. bottom: 21/1162
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(4 + 4/12, "feet"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47543. {
  47544. front: {
  47545. height: math.unit(6 + 2/12, "feet"),
  47546. name: "Front",
  47547. image: {
  47548. source: "./media/characters/raphael/front.svg",
  47549. extra: 1101/962,
  47550. bottom: 59/1160
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(6 + 2/12, "feet"),
  47558. default: true
  47559. },
  47560. ]
  47561. ))
  47562. characterMakers.push(() => makeCharacter(
  47563. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47564. {
  47565. front: {
  47566. height: math.unit(6, "feet"),
  47567. weight: math.unit(150, "lb"),
  47568. name: "Front",
  47569. image: {
  47570. source: "./media/characters/victor-williams/front.svg",
  47571. extra: 1894/1825,
  47572. bottom: 67/1961
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Normal",
  47579. height: math.unit(6, "feet"),
  47580. default: true
  47581. },
  47582. ]
  47583. ))
  47584. characterMakers.push(() => makeCharacter(
  47585. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47586. {
  47587. front: {
  47588. height: math.unit(5 + 8/12, "feet"),
  47589. weight: math.unit(150, "lb"),
  47590. name: "Front",
  47591. image: {
  47592. source: "./media/characters/rachel/front.svg",
  47593. extra: 1902/1787,
  47594. bottom: 46/1948
  47595. }
  47596. },
  47597. },
  47598. [
  47599. {
  47600. name: "Base Height",
  47601. height: math.unit(5 + 8/12, "feet"),
  47602. default: true
  47603. },
  47604. {
  47605. name: "Macro",
  47606. height: math.unit(200, "feet")
  47607. },
  47608. {
  47609. name: "Mega Macro",
  47610. height: math.unit(1, "mile")
  47611. },
  47612. {
  47613. name: "Giga Macro",
  47614. height: math.unit(1500, "miles")
  47615. },
  47616. {
  47617. name: "Tera Macro",
  47618. height: math.unit(8000, "miles")
  47619. },
  47620. {
  47621. name: "Tera Macro+",
  47622. height: math.unit(2e5, "miles")
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47628. {
  47629. front: {
  47630. height: math.unit(6.5, "feet"),
  47631. name: "Front",
  47632. image: {
  47633. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47634. extra: 860/819,
  47635. bottom: 307/1167
  47636. }
  47637. },
  47638. back: {
  47639. height: math.unit(6.5, "feet"),
  47640. name: "Back",
  47641. image: {
  47642. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47643. extra: 880/837,
  47644. bottom: 395/1275
  47645. }
  47646. },
  47647. sleeping: {
  47648. height: math.unit(2.79, "feet"),
  47649. name: "Sleeping",
  47650. image: {
  47651. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47652. extra: 465/383,
  47653. bottom: 263/728
  47654. }
  47655. },
  47656. maw: {
  47657. height: math.unit(2.52, "feet"),
  47658. name: "Maw",
  47659. image: {
  47660. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47661. }
  47662. },
  47663. },
  47664. [
  47665. {
  47666. name: "Normal",
  47667. height: math.unit(6.5, "feet"),
  47668. default: true
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47674. {
  47675. front: {
  47676. height: math.unit(5, "feet"),
  47677. name: "Front",
  47678. image: {
  47679. source: "./media/characters/nova-nerium/front.svg",
  47680. extra: 1548/1392,
  47681. bottom: 374/1922
  47682. }
  47683. },
  47684. back: {
  47685. height: math.unit(5, "feet"),
  47686. name: "Back",
  47687. image: {
  47688. source: "./media/characters/nova-nerium/back.svg",
  47689. extra: 1658/1468,
  47690. bottom: 257/1915
  47691. }
  47692. },
  47693. },
  47694. [
  47695. {
  47696. name: "Normal",
  47697. height: math.unit(5, "feet"),
  47698. default: true
  47699. },
  47700. ]
  47701. ))
  47702. characterMakers.push(() => makeCharacter(
  47703. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47704. {
  47705. front: {
  47706. height: math.unit(5 + 4/12, "feet"),
  47707. name: "Front",
  47708. image: {
  47709. source: "./media/characters/ashe-pyriph/front.svg",
  47710. extra: 1935/1747,
  47711. bottom: 60/1995
  47712. }
  47713. },
  47714. },
  47715. [
  47716. {
  47717. name: "Normal",
  47718. height: math.unit(5 + 4/12, "feet"),
  47719. default: true
  47720. },
  47721. ]
  47722. ))
  47723. characterMakers.push(() => makeCharacter(
  47724. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47725. {
  47726. front: {
  47727. height: math.unit(8.7, "feet"),
  47728. name: "Front",
  47729. image: {
  47730. source: "./media/characters/flicker-wisp/front.svg",
  47731. extra: 1835/1613,
  47732. bottom: 449/2284
  47733. }
  47734. },
  47735. side: {
  47736. height: math.unit(8.7, "feet"),
  47737. name: "Side",
  47738. image: {
  47739. source: "./media/characters/flicker-wisp/side.svg",
  47740. extra: 1841/1642,
  47741. bottom: 336/2177
  47742. },
  47743. default: true
  47744. },
  47745. maw: {
  47746. height: math.unit(3.35, "feet"),
  47747. name: "Maw",
  47748. image: {
  47749. source: "./media/characters/flicker-wisp/maw.svg",
  47750. extra: 2338/1506,
  47751. bottom: 0/2338
  47752. }
  47753. },
  47754. ovipositor: {
  47755. height: math.unit(4.95, "feet"),
  47756. name: "Ovipositor",
  47757. image: {
  47758. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47759. }
  47760. },
  47761. egg: {
  47762. height: math.unit(0.385, "feet"),
  47763. weight: math.unit(2, "lb"),
  47764. name: "Egg",
  47765. image: {
  47766. source: "./media/characters/flicker-wisp/egg.svg"
  47767. }
  47768. },
  47769. },
  47770. [
  47771. {
  47772. name: "Normal",
  47773. height: math.unit(8.7, "feet"),
  47774. default: true
  47775. },
  47776. ]
  47777. ))
  47778. characterMakers.push(() => makeCharacter(
  47779. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47780. {
  47781. side: {
  47782. height: math.unit(11, "feet"),
  47783. name: "Side",
  47784. image: {
  47785. source: "./media/characters/faefnul/side.svg",
  47786. extra: 1100/1007,
  47787. bottom: 0/1100
  47788. }
  47789. },
  47790. },
  47791. [
  47792. {
  47793. name: "Normal",
  47794. height: math.unit(11, "feet"),
  47795. default: true
  47796. },
  47797. ]
  47798. ))
  47799. characterMakers.push(() => makeCharacter(
  47800. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47801. {
  47802. front: {
  47803. height: math.unit(6 + 2/12, "feet"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/shady/front.svg",
  47807. extra: 502/461,
  47808. bottom: 9/511
  47809. }
  47810. },
  47811. kneeling: {
  47812. height: math.unit(4.6, "feet"),
  47813. name: "Kneeling",
  47814. image: {
  47815. source: "./media/characters/shady/kneeling.svg",
  47816. extra: 1328/1219,
  47817. bottom: 117/1445
  47818. }
  47819. },
  47820. maw: {
  47821. height: math.unit(2, "feet"),
  47822. name: "Maw",
  47823. image: {
  47824. source: "./media/characters/shady/maw.svg"
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Nano",
  47831. height: math.unit(1, "mm")
  47832. },
  47833. {
  47834. name: "Micro",
  47835. height: math.unit(12, "mm")
  47836. },
  47837. {
  47838. name: "Tiny",
  47839. height: math.unit(3, "inches")
  47840. },
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(6 + 2/12, "feet"),
  47844. default: true
  47845. },
  47846. {
  47847. name: "Big",
  47848. height: math.unit(15, "feet")
  47849. },
  47850. {
  47851. name: "Macro",
  47852. height: math.unit(150, "feet")
  47853. },
  47854. {
  47855. name: "Titanic",
  47856. height: math.unit(500, "feet")
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(12, "feet"),
  47865. name: "Front",
  47866. image: {
  47867. source: "./media/characters/fenrir/front.svg",
  47868. extra: 968/875,
  47869. bottom: 22/990
  47870. }
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Big",
  47876. height: math.unit(12, "feet"),
  47877. default: true
  47878. },
  47879. ]
  47880. ))
  47881. characterMakers.push(() => makeCharacter(
  47882. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47883. {
  47884. front: {
  47885. height: math.unit(5 + 4/12, "feet"),
  47886. name: "Front",
  47887. image: {
  47888. source: "./media/characters/makar/front.svg",
  47889. extra: 1181/1112,
  47890. bottom: 78/1259
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Normal",
  47897. height: math.unit(5 + 4/12, "feet"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(5 + 7/12, "feet"),
  47907. name: "Front",
  47908. image: {
  47909. source: "./media/characters/callow/front.svg",
  47910. extra: 1482/1304,
  47911. bottom: 23/1505
  47912. }
  47913. },
  47914. back: {
  47915. height: math.unit(5 + 7/12, "feet"),
  47916. name: "Back",
  47917. image: {
  47918. source: "./media/characters/callow/back.svg",
  47919. extra: 1484/1296,
  47920. bottom: 25/1509
  47921. }
  47922. },
  47923. },
  47924. [
  47925. {
  47926. name: "Micro",
  47927. height: math.unit(3, "inches"),
  47928. default: true
  47929. },
  47930. {
  47931. name: "Normal",
  47932. height: math.unit(5 + 7/12, "feet")
  47933. },
  47934. ]
  47935. ))
  47936. characterMakers.push(() => makeCharacter(
  47937. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47938. {
  47939. front: {
  47940. height: math.unit(6 + 2/12, "feet"),
  47941. name: "Front",
  47942. image: {
  47943. source: "./media/characters/natel/front.svg",
  47944. extra: 1833/1692,
  47945. bottom: 166/1999
  47946. }
  47947. },
  47948. },
  47949. [
  47950. {
  47951. name: "Normal",
  47952. height: math.unit(6 + 2/12, "feet"),
  47953. default: true
  47954. },
  47955. ]
  47956. ))
  47957. characterMakers.push(() => makeCharacter(
  47958. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47959. {
  47960. front: {
  47961. height: math.unit(1.75, "meters"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/misu/front.svg",
  47965. extra: 1690/1558,
  47966. bottom: 234/1924
  47967. }
  47968. },
  47969. back: {
  47970. height: math.unit(1.75, "meters"),
  47971. name: "Back",
  47972. image: {
  47973. source: "./media/characters/misu/back.svg",
  47974. extra: 1762/1618,
  47975. bottom: 146/1908
  47976. }
  47977. },
  47978. frontNude: {
  47979. height: math.unit(1.75, "meters"),
  47980. name: "Front (Nude)",
  47981. image: {
  47982. source: "./media/characters/misu/front-nude.svg",
  47983. extra: 1690/1558,
  47984. bottom: 234/1924
  47985. }
  47986. },
  47987. backNude: {
  47988. height: math.unit(1.75, "meters"),
  47989. name: "Back (Nude)",
  47990. image: {
  47991. source: "./media/characters/misu/back-nude.svg",
  47992. extra: 1762/1618,
  47993. bottom: 146/1908
  47994. }
  47995. },
  47996. frontErect: {
  47997. height: math.unit(1.75, "meters"),
  47998. name: "Front (Erect)",
  47999. image: {
  48000. source: "./media/characters/misu/front-erect.svg",
  48001. extra: 1690/1558,
  48002. bottom: 234/1924
  48003. }
  48004. },
  48005. maw: {
  48006. height: math.unit(0.47, "meters"),
  48007. name: "Maw",
  48008. image: {
  48009. source: "./media/characters/misu/maw.svg"
  48010. }
  48011. },
  48012. head: {
  48013. height: math.unit(0.35, "meters"),
  48014. name: "Head",
  48015. image: {
  48016. source: "./media/characters/misu/head.svg"
  48017. }
  48018. },
  48019. rear: {
  48020. height: math.unit(0.47, "meters"),
  48021. name: "Rear",
  48022. image: {
  48023. source: "./media/characters/misu/rear.svg"
  48024. }
  48025. },
  48026. },
  48027. [
  48028. {
  48029. name: "Normal",
  48030. height: math.unit(1.75, "meters")
  48031. },
  48032. {
  48033. name: "Not good for the people",
  48034. height: math.unit(42, "meters")
  48035. },
  48036. {
  48037. name: "Not good for the neighborhood",
  48038. height: math.unit(135, "meters")
  48039. },
  48040. {
  48041. name: "Bit bigger problem",
  48042. height: math.unit(380, "meters"),
  48043. default: true
  48044. },
  48045. {
  48046. name: "Not good for the city",
  48047. height: math.unit(1.5, "km")
  48048. },
  48049. {
  48050. name: "Not good for the county",
  48051. height: math.unit(5.5, "km")
  48052. },
  48053. {
  48054. name: "Not good for the state",
  48055. height: math.unit(25, "km")
  48056. },
  48057. {
  48058. name: "Not good for the country",
  48059. height: math.unit(125, "km")
  48060. },
  48061. {
  48062. name: "Not good for the continent",
  48063. height: math.unit(2100, "km")
  48064. },
  48065. {
  48066. name: "Not good for the planet",
  48067. height: math.unit(35000, "km")
  48068. },
  48069. {
  48070. name: "Just no",
  48071. height: math.unit(8.5e18, "km")
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(6.5, "feet"),
  48080. name: "Front",
  48081. image: {
  48082. source: "./media/characters/poppy/front.svg",
  48083. extra: 1878/1812,
  48084. bottom: 43/1921
  48085. }
  48086. },
  48087. feet: {
  48088. height: math.unit(1.06, "feet"),
  48089. name: "Feet",
  48090. image: {
  48091. source: "./media/characters/poppy/feet.svg",
  48092. extra: 1083/1083,
  48093. bottom: 87/1170
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Human",
  48100. height: math.unit(6.5, "feet")
  48101. },
  48102. {
  48103. name: "Default",
  48104. height: math.unit(300, "feet"),
  48105. default: true
  48106. },
  48107. {
  48108. name: "Huge",
  48109. height: math.unit(850, "feet")
  48110. },
  48111. {
  48112. name: "Mega",
  48113. height: math.unit(8000, "feet")
  48114. },
  48115. {
  48116. name: "Giga",
  48117. height: math.unit(300, "miles")
  48118. },
  48119. ]
  48120. ))
  48121. characterMakers.push(() => makeCharacter(
  48122. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48123. {
  48124. bipedal: {
  48125. height: math.unit(7, "feet"),
  48126. name: "Bipedal",
  48127. image: {
  48128. source: "./media/characters/zener/bipedal.svg",
  48129. extra: 874/805,
  48130. bottom: 109/983
  48131. }
  48132. },
  48133. quadrupedal: {
  48134. height: math.unit(4.64, "feet"),
  48135. name: "Quadrupedal",
  48136. image: {
  48137. source: "./media/characters/zener/quadrupedal.svg",
  48138. extra: 638/507,
  48139. bottom: 190/828
  48140. }
  48141. },
  48142. cock: {
  48143. height: math.unit(18, "inches"),
  48144. name: "Cock",
  48145. image: {
  48146. source: "./media/characters/zener/cock.svg"
  48147. }
  48148. },
  48149. },
  48150. [
  48151. {
  48152. name: "Normal",
  48153. height: math.unit(7, "feet"),
  48154. default: true
  48155. },
  48156. ]
  48157. ))
  48158. characterMakers.push(() => makeCharacter(
  48159. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48160. {
  48161. nude: {
  48162. height: math.unit(5 + 6/12, "feet"),
  48163. name: "Nude",
  48164. image: {
  48165. source: "./media/characters/charlie-dog/nude.svg",
  48166. extra: 768/734,
  48167. bottom: 26/794
  48168. }
  48169. },
  48170. dressed: {
  48171. height: math.unit(5 + 6/12, "feet"),
  48172. name: "Dressed",
  48173. image: {
  48174. source: "./media/characters/charlie-dog/dressed.svg",
  48175. extra: 768/734,
  48176. bottom: 26/794
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(5 + 6/12, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48190. {
  48191. front: {
  48192. height: math.unit(6 + 4/12, "feet"),
  48193. name: "Front",
  48194. image: {
  48195. source: "./media/characters/ir'istrasz/front.svg",
  48196. extra: 1014/977,
  48197. bottom: 65/1079
  48198. }
  48199. },
  48200. back: {
  48201. height: math.unit(6 + 4/12, "feet"),
  48202. name: "Back",
  48203. image: {
  48204. source: "./media/characters/ir'istrasz/back.svg",
  48205. extra: 1024/992,
  48206. bottom: 34/1058
  48207. }
  48208. },
  48209. },
  48210. [
  48211. {
  48212. name: "Normal",
  48213. height: math.unit(6 + 4/12, "feet"),
  48214. default: true
  48215. },
  48216. ]
  48217. ))
  48218. characterMakers.push(() => makeCharacter(
  48219. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48220. {
  48221. front: {
  48222. height: math.unit(5 + 8/12, "feet"),
  48223. name: "Front",
  48224. image: {
  48225. source: "./media/characters/dee-ditto/front.svg",
  48226. extra: 1874/1785,
  48227. bottom: 68/1942
  48228. }
  48229. },
  48230. back: {
  48231. height: math.unit(5 + 8/12, "feet"),
  48232. name: "Back",
  48233. image: {
  48234. source: "./media/characters/dee-ditto/back.svg",
  48235. extra: 1870/1783,
  48236. bottom: 77/1947
  48237. }
  48238. },
  48239. },
  48240. [
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(5 + 8/12, "feet"),
  48244. default: true
  48245. },
  48246. ]
  48247. ))
  48248. characterMakers.push(() => makeCharacter(
  48249. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48250. {
  48251. front: {
  48252. height: math.unit(7 + 6/12, "feet"),
  48253. name: "Front",
  48254. image: {
  48255. source: "./media/characters/fey/front.svg",
  48256. extra: 995/979,
  48257. bottom: 30/1025
  48258. }
  48259. },
  48260. back: {
  48261. height: math.unit(7 + 6/12, "feet"),
  48262. name: "Back",
  48263. image: {
  48264. source: "./media/characters/fey/back.svg",
  48265. extra: 1079/1008,
  48266. bottom: 5/1084
  48267. }
  48268. },
  48269. dressed: {
  48270. height: math.unit(7 + 6/12, "feet"),
  48271. name: "Dressed",
  48272. image: {
  48273. source: "./media/characters/fey/dressed.svg",
  48274. extra: 995/979,
  48275. bottom: 30/1025
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Normal",
  48282. height: math.unit(7 + 6/12, "feet"),
  48283. default: true
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48289. {
  48290. standing: {
  48291. height: math.unit(17, "feet"),
  48292. name: "Standing",
  48293. image: {
  48294. source: "./media/characters/aster/standing.svg",
  48295. extra: 1798/1598,
  48296. bottom: 117/1915
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(17, "feet"),
  48304. default: true
  48305. },
  48306. {
  48307. name: "Homewrecker",
  48308. height: math.unit(95, "feet")
  48309. },
  48310. {
  48311. name: "Planet Devourer",
  48312. height: math.unit(1008000, "miles")
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(6 + 5/12, "feet"),
  48321. weight: math.unit(265, "lb"),
  48322. name: "Front",
  48323. image: {
  48324. source: "./media/characters/devon-childs/front.svg",
  48325. extra: 1795/1721,
  48326. bottom: 41/1836
  48327. }
  48328. },
  48329. side: {
  48330. height: math.unit(6 + 5/12, "feet"),
  48331. weight: math.unit(265, "lb"),
  48332. name: "Side",
  48333. image: {
  48334. source: "./media/characters/devon-childs/side.svg",
  48335. extra: 1812/1738,
  48336. bottom: 30/1842
  48337. }
  48338. },
  48339. back: {
  48340. height: math.unit(6 + 5/12, "feet"),
  48341. weight: math.unit(265, "lb"),
  48342. name: "Back",
  48343. image: {
  48344. source: "./media/characters/devon-childs/back.svg",
  48345. extra: 1808/1735,
  48346. bottom: 23/1831
  48347. }
  48348. },
  48349. hand: {
  48350. height: math.unit(1.464, "feet"),
  48351. name: "Hand",
  48352. image: {
  48353. source: "./media/characters/devon-childs/hand.svg"
  48354. }
  48355. },
  48356. foot: {
  48357. height: math.unit(1.6, "feet"),
  48358. name: "Foot",
  48359. image: {
  48360. source: "./media/characters/devon-childs/foot.svg"
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Micro",
  48367. height: math.unit(7, "cm")
  48368. },
  48369. {
  48370. name: "Normal",
  48371. height: math.unit(6 + 5/12, "feet"),
  48372. default: true
  48373. },
  48374. {
  48375. name: "Macro",
  48376. height: math.unit(154, "feet")
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48382. {
  48383. front: {
  48384. height: math.unit(6, "feet"),
  48385. weight: math.unit(180, "lb"),
  48386. name: "Front",
  48387. image: {
  48388. source: "./media/characters/lydemox-vir/front.svg",
  48389. extra: 1632/1435,
  48390. bottom: 58/1690
  48391. }
  48392. },
  48393. frontSFW: {
  48394. height: math.unit(6, "feet"),
  48395. weight: math.unit(180, "lb"),
  48396. name: "Front (SFW)",
  48397. image: {
  48398. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48399. extra: 1632/1435,
  48400. bottom: 58/1690
  48401. }
  48402. },
  48403. back: {
  48404. height: math.unit(6, "feet"),
  48405. weight: math.unit(180, "lb"),
  48406. name: "Back",
  48407. image: {
  48408. source: "./media/characters/lydemox-vir/back.svg",
  48409. extra: 1593/1408,
  48410. bottom: 31/1624
  48411. }
  48412. },
  48413. paw: {
  48414. height: math.unit(1.85, "feet"),
  48415. name: "Paw",
  48416. image: {
  48417. source: "./media/characters/lydemox-vir/paw.svg"
  48418. }
  48419. },
  48420. dick: {
  48421. height: math.unit(1.8, "feet"),
  48422. name: "Dick",
  48423. image: {
  48424. source: "./media/characters/lydemox-vir/dick.svg"
  48425. }
  48426. },
  48427. },
  48428. [
  48429. {
  48430. name: "Macro",
  48431. height: math.unit(100, "feet"),
  48432. default: true
  48433. },
  48434. {
  48435. name: "Teramacro",
  48436. height: math.unit(1, "earth")
  48437. },
  48438. {
  48439. name: "Planetary",
  48440. height: math.unit(20, "earths")
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48446. {
  48447. front: {
  48448. height: math.unit(15 + 8/12, "feet"),
  48449. weight: math.unit(1237, "kg"),
  48450. name: "Front",
  48451. image: {
  48452. source: "./media/characters/mia/front.svg",
  48453. extra: 1573/1446,
  48454. bottom: 58/1631
  48455. }
  48456. },
  48457. },
  48458. [
  48459. {
  48460. name: "Small",
  48461. height: math.unit(9 + 5/12, "feet")
  48462. },
  48463. {
  48464. name: "Normal",
  48465. height: math.unit(15 + 8/12, "feet"),
  48466. default: true
  48467. },
  48468. ]
  48469. ))
  48470. characterMakers.push(() => makeCharacter(
  48471. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48472. {
  48473. front: {
  48474. height: math.unit(10 + 6/12, "feet"),
  48475. weight: math.unit(1.3, "tons"),
  48476. name: "Front",
  48477. image: {
  48478. source: "./media/characters/mr-graves/front.svg",
  48479. extra: 1779/1695,
  48480. bottom: 198/1977
  48481. }
  48482. },
  48483. },
  48484. [
  48485. {
  48486. name: "Normal",
  48487. height: math.unit(10 + 6 /12, "feet"),
  48488. default: true
  48489. },
  48490. ]
  48491. ))
  48492. characterMakers.push(() => makeCharacter(
  48493. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48494. {
  48495. dressedFront: {
  48496. height: math.unit(5 + 8/12, "feet"),
  48497. weight: math.unit(125, "lb"),
  48498. name: "Dressed (Front)",
  48499. image: {
  48500. source: "./media/characters/jess/dressed-front.svg",
  48501. extra: 1176/1152,
  48502. bottom: 42/1218
  48503. }
  48504. },
  48505. dressedSide: {
  48506. height: math.unit(5 + 8/12, "feet"),
  48507. weight: math.unit(125, "lb"),
  48508. name: "Dressed (Side)",
  48509. image: {
  48510. source: "./media/characters/jess/dressed-side.svg",
  48511. extra: 1204/1190,
  48512. bottom: 6/1210
  48513. }
  48514. },
  48515. nudeFront: {
  48516. height: math.unit(5 + 8/12, "feet"),
  48517. weight: math.unit(125, "lb"),
  48518. name: "Nude (Front)",
  48519. image: {
  48520. source: "./media/characters/jess/nude-front.svg",
  48521. extra: 1176/1152,
  48522. bottom: 42/1218
  48523. }
  48524. },
  48525. nudeSide: {
  48526. height: math.unit(5 + 8/12, "feet"),
  48527. weight: math.unit(125, "lb"),
  48528. name: "Nude (Side)",
  48529. image: {
  48530. source: "./media/characters/jess/nude-side.svg",
  48531. extra: 1204/1190,
  48532. bottom: 6/1210
  48533. }
  48534. },
  48535. organsFront: {
  48536. height: math.unit(2.83799342105, "feet"),
  48537. name: "Organs (Front)",
  48538. image: {
  48539. source: "./media/characters/jess/organs-front.svg"
  48540. }
  48541. },
  48542. organsSide: {
  48543. height: math.unit(2.64225290474, "feet"),
  48544. name: "Organs (Side)",
  48545. image: {
  48546. source: "./media/characters/jess/organs-side.svg"
  48547. }
  48548. },
  48549. digestiveTractFront: {
  48550. height: math.unit(2.8106580871, "feet"),
  48551. name: "Digestive Tract (Front)",
  48552. image: {
  48553. source: "./media/characters/jess/digestive-tract-front.svg"
  48554. }
  48555. },
  48556. digestiveTractSide: {
  48557. height: math.unit(2.54365045014, "feet"),
  48558. name: "Digestive Tract (Side)",
  48559. image: {
  48560. source: "./media/characters/jess/digestive-tract-side.svg"
  48561. }
  48562. },
  48563. respiratorySystemFront: {
  48564. height: math.unit(1.11196233456, "feet"),
  48565. name: "Respiratory System (Front)",
  48566. image: {
  48567. source: "./media/characters/jess/respiratory-system-front.svg"
  48568. }
  48569. },
  48570. respiratorySystemSide: {
  48571. height: math.unit(0.89327966297, "feet"),
  48572. name: "Respiratory System (Side)",
  48573. image: {
  48574. source: "./media/characters/jess/respiratory-system-side.svg"
  48575. }
  48576. },
  48577. urinaryTractFront: {
  48578. height: math.unit(1.16126356186, "feet"),
  48579. name: "Urinary Tract (Front)",
  48580. image: {
  48581. source: "./media/characters/jess/urinary-tract-front.svg"
  48582. }
  48583. },
  48584. urinaryTractSide: {
  48585. height: math.unit(1.20910039627, "feet"),
  48586. name: "Urinary Tract (Side)",
  48587. image: {
  48588. source: "./media/characters/jess/urinary-tract-side.svg"
  48589. }
  48590. },
  48591. reproductiveOrgansFront: {
  48592. height: math.unit(0.48422591566, "feet"),
  48593. name: "Reproductive Organs (Front)",
  48594. image: {
  48595. source: "./media/characters/jess/reproductive-organs-front.svg"
  48596. }
  48597. },
  48598. reproductiveOrgansSide: {
  48599. height: math.unit(0.61553314481, "feet"),
  48600. name: "Reproductive Organs (Side)",
  48601. image: {
  48602. source: "./media/characters/jess/reproductive-organs-side.svg"
  48603. }
  48604. },
  48605. breastsFront: {
  48606. height: math.unit(0.47690395121, "feet"),
  48607. name: "Breasts (Front)",
  48608. image: {
  48609. source: "./media/characters/jess/breasts-front.svg"
  48610. }
  48611. },
  48612. breastsSide: {
  48613. height: math.unit(0.30556998307, "feet"),
  48614. name: "Breasts (Side)",
  48615. image: {
  48616. source: "./media/characters/jess/breasts-side.svg"
  48617. }
  48618. },
  48619. heartFront: {
  48620. height: math.unit(0.53011022622, "feet"),
  48621. name: "Heart (Front)",
  48622. image: {
  48623. source: "./media/characters/jess/heart-front.svg"
  48624. }
  48625. },
  48626. heartSide: {
  48627. height: math.unit(0.51790695213, "feet"),
  48628. name: "Heart (Side)",
  48629. image: {
  48630. source: "./media/characters/jess/heart-side.svg"
  48631. }
  48632. },
  48633. earsAndNoseFront: {
  48634. height: math.unit(0.29385483995, "feet"),
  48635. name: "Ears and Nose (Front)",
  48636. image: {
  48637. source: "./media/characters/jess/ears-and-nose-front.svg"
  48638. }
  48639. },
  48640. earsAndNoseSide: {
  48641. height: math.unit(0.18109658741, "feet"),
  48642. name: "Ears and Nose (Side)",
  48643. image: {
  48644. source: "./media/characters/jess/ears-and-nose-side.svg"
  48645. }
  48646. },
  48647. },
  48648. [
  48649. {
  48650. name: "Normal",
  48651. height: math.unit(5 + 8/12, "feet"),
  48652. default: true
  48653. },
  48654. ]
  48655. ))
  48656. characterMakers.push(() => makeCharacter(
  48657. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48658. {
  48659. front: {
  48660. height: math.unit(6, "feet"),
  48661. weight: math.unit(6.64467e-7, "grams"),
  48662. name: "Front",
  48663. image: {
  48664. source: "./media/characters/wimpering/front.svg",
  48665. extra: 597/587,
  48666. bottom: 34/631
  48667. }
  48668. },
  48669. },
  48670. [
  48671. {
  48672. name: "Micro",
  48673. height: math.unit(0.4, "mm"),
  48674. default: true
  48675. },
  48676. ]
  48677. ))
  48678. characterMakers.push(() => makeCharacter(
  48679. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48680. {
  48681. front: {
  48682. height: math.unit(5 + 2/12, "feet"),
  48683. weight: math.unit(110, "lb"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/keltre/front.svg",
  48687. extra: 1099/1057,
  48688. bottom: 22/1121
  48689. }
  48690. },
  48691. back: {
  48692. height: math.unit(5 + 2/12, "feet"),
  48693. weight: math.unit(110, "lb"),
  48694. name: "Back",
  48695. image: {
  48696. source: "./media/characters/keltre/back.svg",
  48697. extra: 1095/1053,
  48698. bottom: 17/1112
  48699. }
  48700. },
  48701. dressed: {
  48702. height: math.unit(5 + 2/12, "feet"),
  48703. weight: math.unit(110, "lb"),
  48704. name: "Dressed",
  48705. image: {
  48706. source: "./media/characters/keltre/dressed.svg",
  48707. extra: 1099/1057,
  48708. bottom: 22/1121
  48709. }
  48710. },
  48711. winter: {
  48712. height: math.unit(5 + 2/12, "feet"),
  48713. weight: math.unit(110, "lb"),
  48714. name: "Winter",
  48715. image: {
  48716. source: "./media/characters/keltre/winter.svg",
  48717. extra: 1099/1057,
  48718. bottom: 22/1121
  48719. }
  48720. },
  48721. head: {
  48722. height: math.unit(1.61 * 0.86, "feet"),
  48723. name: "Head",
  48724. image: {
  48725. source: "./media/characters/keltre/head.svg",
  48726. extra: 534/421,
  48727. bottom: 0/534
  48728. }
  48729. },
  48730. hand: {
  48731. height: math.unit(1.3 * 0.86, "feet"),
  48732. name: "Hand",
  48733. image: {
  48734. source: "./media/characters/keltre/hand.svg"
  48735. }
  48736. },
  48737. foot: {
  48738. height: math.unit(1.8 * 0.86, "feet"),
  48739. name: "Foot",
  48740. image: {
  48741. source: "./media/characters/keltre/foot.svg"
  48742. }
  48743. },
  48744. },
  48745. [
  48746. {
  48747. name: "Fine",
  48748. height: math.unit(1, "inch")
  48749. },
  48750. {
  48751. name: "Dimnutive",
  48752. height: math.unit(4, "inches")
  48753. },
  48754. {
  48755. name: "Tiny",
  48756. height: math.unit(1, "foot")
  48757. },
  48758. {
  48759. name: "Small",
  48760. height: math.unit(3, "feet")
  48761. },
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(5 + 2/12, "feet"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48771. {
  48772. front: {
  48773. height: math.unit(6 + 2/12, "feet"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/nox/front.svg",
  48777. extra: 1917/1830,
  48778. bottom: 74/1991
  48779. }
  48780. },
  48781. back: {
  48782. height: math.unit(6 + 2/12, "feet"),
  48783. name: "Back",
  48784. image: {
  48785. source: "./media/characters/nox/back.svg",
  48786. extra: 1896/1815,
  48787. bottom: 21/1917
  48788. }
  48789. },
  48790. head: {
  48791. height: math.unit(1.1, "feet"),
  48792. name: "Head",
  48793. image: {
  48794. source: "./media/characters/nox/head.svg",
  48795. extra: 874/704,
  48796. bottom: 0/874
  48797. }
  48798. },
  48799. tattoo: {
  48800. height: math.unit(0.729, "feet"),
  48801. name: "Tattoo",
  48802. image: {
  48803. source: "./media/characters/nox/tattoo.svg"
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(6 + 2/12, "feet")
  48811. },
  48812. {
  48813. name: "Gigamacro",
  48814. height: math.unit(2, "earths"),
  48815. default: true
  48816. },
  48817. {
  48818. name: "Cosmic",
  48819. height: math.unit(867, "yottameters")
  48820. },
  48821. ]
  48822. ))
  48823. characterMakers.push(() => makeCharacter(
  48824. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48825. {
  48826. front: {
  48827. height: math.unit(6, "feet"),
  48828. weight: math.unit(150, "lb"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/caspian/front.svg",
  48832. extra: 1443/1359,
  48833. bottom: 0/1443
  48834. }
  48835. },
  48836. back: {
  48837. height: math.unit(6, "feet"),
  48838. weight: math.unit(150, "lb"),
  48839. name: "Back",
  48840. image: {
  48841. source: "./media/characters/caspian/back.svg",
  48842. extra: 1379/1309,
  48843. bottom: 0/1379
  48844. }
  48845. },
  48846. head: {
  48847. height: math.unit(0.9, "feet"),
  48848. name: "Head",
  48849. image: {
  48850. source: "./media/characters/caspian/head.svg",
  48851. extra: 692/492,
  48852. bottom: 0/692
  48853. }
  48854. },
  48855. headAlt: {
  48856. height: math.unit(0.95, "feet"),
  48857. name: "Head (Alt)",
  48858. image: {
  48859. source: "./media/characters/caspian/head-alt.svg",
  48860. extra: 668/508,
  48861. bottom: 0/668
  48862. }
  48863. },
  48864. hand: {
  48865. height: math.unit(0.8, "feet"),
  48866. name: "Hand",
  48867. image: {
  48868. source: "./media/characters/caspian/hand.svg"
  48869. }
  48870. },
  48871. paw: {
  48872. height: math.unit(0.95, "feet"),
  48873. name: "Paw",
  48874. image: {
  48875. source: "./media/characters/caspian/paw.svg"
  48876. }
  48877. },
  48878. },
  48879. [
  48880. {
  48881. name: "Normal",
  48882. height: math.unit(162, "feet"),
  48883. default: true
  48884. },
  48885. ]
  48886. ))
  48887. characterMakers.push(() => makeCharacter(
  48888. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48889. {
  48890. front: {
  48891. height: math.unit(6, "feet"),
  48892. name: "Front",
  48893. image: {
  48894. source: "./media/characters/myra-aisling/front.svg",
  48895. extra: 1268/1166,
  48896. bottom: 73/1341
  48897. }
  48898. },
  48899. back: {
  48900. height: math.unit(6, "feet"),
  48901. name: "Back",
  48902. image: {
  48903. source: "./media/characters/myra-aisling/back.svg",
  48904. extra: 1249/1149,
  48905. bottom: 79/1328
  48906. }
  48907. },
  48908. dressed: {
  48909. height: math.unit(6, "feet"),
  48910. name: "Dressed",
  48911. image: {
  48912. source: "./media/characters/myra-aisling/dressed.svg",
  48913. extra: 1290/1189,
  48914. bottom: 47/1337
  48915. }
  48916. },
  48917. hand: {
  48918. height: math.unit(1.1, "feet"),
  48919. name: "Hand",
  48920. image: {
  48921. source: "./media/characters/myra-aisling/hand.svg"
  48922. }
  48923. },
  48924. paw: {
  48925. height: math.unit(1.23, "feet"),
  48926. name: "Paw",
  48927. image: {
  48928. source: "./media/characters/myra-aisling/paw.svg"
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(160, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48942. {
  48943. front: {
  48944. height: math.unit(6, "feet"),
  48945. name: "Front",
  48946. image: {
  48947. source: "./media/characters/tenley-sidero/front.svg",
  48948. extra: 1365/1276,
  48949. bottom: 47/1412
  48950. }
  48951. },
  48952. back: {
  48953. height: math.unit(6, "feet"),
  48954. name: "Back",
  48955. image: {
  48956. source: "./media/characters/tenley-sidero/back.svg",
  48957. extra: 1383/1283,
  48958. bottom: 35/1418
  48959. }
  48960. },
  48961. dressed: {
  48962. height: math.unit(6, "feet"),
  48963. name: "Dressed",
  48964. image: {
  48965. source: "./media/characters/tenley-sidero/dressed.svg",
  48966. extra: 1364/1275,
  48967. bottom: 42/1406
  48968. }
  48969. },
  48970. head: {
  48971. height: math.unit(1.47, "feet"),
  48972. name: "Head",
  48973. image: {
  48974. source: "./media/characters/tenley-sidero/head.svg",
  48975. extra: 610/490,
  48976. bottom: 0/610
  48977. }
  48978. },
  48979. },
  48980. [
  48981. {
  48982. name: "Normal",
  48983. height: math.unit(154, "feet"),
  48984. default: true
  48985. },
  48986. ]
  48987. ))
  48988. characterMakers.push(() => makeCharacter(
  48989. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48990. {
  48991. front: {
  48992. height: math.unit(5, "inches"),
  48993. name: "Front",
  48994. image: {
  48995. source: "./media/characters/mallory/front.svg",
  48996. extra: 1919/1678,
  48997. bottom: 29/1948
  48998. }
  48999. },
  49000. hand: {
  49001. height: math.unit(0.73, "inches"),
  49002. name: "Hand",
  49003. image: {
  49004. source: "./media/characters/mallory/hand.svg"
  49005. }
  49006. },
  49007. paw: {
  49008. height: math.unit(0.68, "inches"),
  49009. name: "Paw",
  49010. image: {
  49011. source: "./media/characters/mallory/paw.svg"
  49012. }
  49013. },
  49014. },
  49015. [
  49016. {
  49017. name: "Small",
  49018. height: math.unit(5, "inches"),
  49019. default: true
  49020. },
  49021. ]
  49022. ))
  49023. characterMakers.push(() => makeCharacter(
  49024. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49025. {
  49026. naked: {
  49027. height: math.unit(6, "feet"),
  49028. name: "Naked",
  49029. image: {
  49030. source: "./media/characters/mab/naked.svg",
  49031. extra: 1855/1757,
  49032. bottom: 208/2063
  49033. }
  49034. },
  49035. outside: {
  49036. height: math.unit(6, "feet"),
  49037. name: "Outside",
  49038. image: {
  49039. source: "./media/characters/mab/outside.svg",
  49040. extra: 1855/1757,
  49041. bottom: 208/2063
  49042. }
  49043. },
  49044. party: {
  49045. height: math.unit(6, "feet"),
  49046. name: "Party",
  49047. image: {
  49048. source: "./media/characters/mab/party.svg",
  49049. extra: 1855/1757,
  49050. bottom: 208/2063
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Normal",
  49057. height: math.unit(165, "feet"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49064. {
  49065. front: {
  49066. height: math.unit(12, "feet"),
  49067. weight: math.unit(4000, "lb"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/winter/front.svg",
  49071. extra: 1286/943,
  49072. bottom: 112/1398
  49073. }
  49074. },
  49075. frontNsfw: {
  49076. height: math.unit(12, "feet"),
  49077. weight: math.unit(4000, "lb"),
  49078. name: "Front (NSFW)",
  49079. image: {
  49080. source: "./media/characters/winter/front-nsfw.svg",
  49081. extra: 1286/943,
  49082. bottom: 112/1398
  49083. }
  49084. },
  49085. dick: {
  49086. height: math.unit(3.79, "feet"),
  49087. name: "Dick",
  49088. image: {
  49089. source: "./media/characters/winter/dick.svg"
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Big",
  49096. height: math.unit(12, "feet"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(4.1, "inches"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/alto/front.svg",
  49109. extra: 736/627,
  49110. bottom: 90/826
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Normal",
  49117. height: math.unit(4.1, "inches"),
  49118. default: true
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49124. {
  49125. sitting: {
  49126. height: math.unit(3, "feet"),
  49127. name: "Sitting",
  49128. image: {
  49129. source: "./media/characters/ratstrid-v/sitting.svg",
  49130. extra: 355/310,
  49131. bottom: 136/491
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Normal",
  49138. height: math.unit(3, "feet"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49145. {
  49146. back: {
  49147. height: math.unit(6, "feet"),
  49148. weight: math.unit(350, "lb"),
  49149. name: "Back",
  49150. image: {
  49151. source: "./media/characters/siz/back.svg",
  49152. extra: 1449/1274,
  49153. bottom: 13/1462
  49154. }
  49155. },
  49156. },
  49157. [
  49158. {
  49159. name: "Over-Overcompressed",
  49160. height: math.unit(8, "feet")
  49161. },
  49162. {
  49163. name: "Overcompressed",
  49164. height: math.unit(32, "feet")
  49165. },
  49166. {
  49167. name: "Compressed",
  49168. height: math.unit(128, "feet"),
  49169. default: true
  49170. },
  49171. {
  49172. name: "Half-Compressed",
  49173. height: math.unit(512, "feet")
  49174. },
  49175. {
  49176. name: "Quarter-Compressed",
  49177. height: math.unit(2048, "feet")
  49178. },
  49179. {
  49180. name: "Uncompressed?",
  49181. height: math.unit(8192, "feet")
  49182. },
  49183. ]
  49184. ))
  49185. characterMakers.push(() => makeCharacter(
  49186. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49187. {
  49188. front: {
  49189. height: math.unit(5 + 9/12, "feet"),
  49190. weight: math.unit(150, "lb"),
  49191. name: "Front",
  49192. image: {
  49193. source: "./media/characters/ven/front.svg",
  49194. extra: 1372/1320,
  49195. bottom: 73/1445
  49196. }
  49197. },
  49198. side: {
  49199. height: math.unit(5 + 9/12, "feet"),
  49200. weight: math.unit(1150, "lb"),
  49201. name: "Side",
  49202. image: {
  49203. source: "./media/characters/ven/side.svg",
  49204. extra: 1119/1070,
  49205. bottom: 42/1161
  49206. },
  49207. default: true
  49208. },
  49209. },
  49210. [
  49211. {
  49212. name: "Normal",
  49213. height: math.unit(5 + 9/12, "feet"),
  49214. default: true
  49215. },
  49216. ]
  49217. ))
  49218. characterMakers.push(() => makeCharacter(
  49219. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49220. {
  49221. front: {
  49222. height: math.unit(12, "feet"),
  49223. weight: math.unit(1000, "kg"),
  49224. name: "Front",
  49225. image: {
  49226. source: "./media/characters/maple/front.svg",
  49227. extra: 1193/1081,
  49228. bottom: 22/1215
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Compressed",
  49235. height: math.unit(7, "feet")
  49236. },
  49237. {
  49238. name: "Normal",
  49239. height: math.unit(12, "feet"),
  49240. default: true
  49241. },
  49242. ]
  49243. ))
  49244. characterMakers.push(() => makeCharacter(
  49245. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49246. {
  49247. front: {
  49248. height: math.unit(9, "feet"),
  49249. weight: math.unit(1500, "lb"),
  49250. name: "Front",
  49251. image: {
  49252. source: "./media/characters/nora/front.svg",
  49253. extra: 1348/1286,
  49254. bottom: 218/1566
  49255. }
  49256. },
  49257. erect: {
  49258. height: math.unit(9, "feet"),
  49259. weight: math.unit(11500, "lb"),
  49260. name: "Erect",
  49261. image: {
  49262. source: "./media/characters/nora/erect.svg",
  49263. extra: 1488/1433,
  49264. bottom: 133/1621
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(9, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(25, "feet"),
  49281. weight: math.unit(27500, "lb"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/north-caudin/front.svg",
  49285. extra: 1184/1082,
  49286. bottom: 23/1207
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Compressed",
  49293. height: math.unit(10, "feet")
  49294. },
  49295. {
  49296. name: "Normal",
  49297. height: math.unit(25, "feet"),
  49298. default: true
  49299. },
  49300. ]
  49301. ))
  49302. characterMakers.push(() => makeCharacter(
  49303. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49304. {
  49305. front: {
  49306. height: math.unit(9, "feet"),
  49307. weight: math.unit(1250, "lb"),
  49308. name: "Front",
  49309. image: {
  49310. source: "./media/characters/merrian/front.svg",
  49311. extra: 2393/2304,
  49312. bottom: 40/2433
  49313. }
  49314. },
  49315. },
  49316. [
  49317. {
  49318. name: "Normal",
  49319. height: math.unit(9, "feet"),
  49320. default: true
  49321. },
  49322. ]
  49323. ))
  49324. characterMakers.push(() => makeCharacter(
  49325. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49326. {
  49327. front: {
  49328. height: math.unit(9, "feet"),
  49329. weight: math.unit(1000, "lb"),
  49330. name: "Front",
  49331. image: {
  49332. source: "./media/characters/hazel/front.svg",
  49333. extra: 2351/2298,
  49334. bottom: 38/2389
  49335. }
  49336. },
  49337. },
  49338. [
  49339. {
  49340. name: "Normal",
  49341. height: math.unit(9, "feet"),
  49342. default: true
  49343. },
  49344. ]
  49345. ))
  49346. characterMakers.push(() => makeCharacter(
  49347. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49348. {
  49349. front: {
  49350. height: math.unit(13, "feet"),
  49351. weight: math.unit(3200, "lb"),
  49352. name: "Front",
  49353. image: {
  49354. source: "./media/characters/emma/front.svg",
  49355. extra: 2263/2029,
  49356. bottom: 68/2331
  49357. }
  49358. },
  49359. },
  49360. [
  49361. {
  49362. name: "Normal",
  49363. height: math.unit(13, "feet"),
  49364. default: true
  49365. },
  49366. ]
  49367. ))
  49368. characterMakers.push(() => makeCharacter(
  49369. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49370. {
  49371. front: {
  49372. height: math.unit(11 + 9/12, "feet"),
  49373. weight: math.unit(2500, "lb"),
  49374. name: "Front",
  49375. image: {
  49376. source: "./media/characters/ilumina/front.svg",
  49377. extra: 2248/2209,
  49378. bottom: 164/2412
  49379. }
  49380. },
  49381. },
  49382. [
  49383. {
  49384. name: "Normal",
  49385. height: math.unit(11 + 9/12, "feet"),
  49386. default: true
  49387. },
  49388. ]
  49389. ))
  49390. characterMakers.push(() => makeCharacter(
  49391. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49392. {
  49393. front: {
  49394. height: math.unit(8 + 10/12, "feet"),
  49395. weight: math.unit(1350, "lb"),
  49396. name: "Front",
  49397. image: {
  49398. source: "./media/characters/moonshine/front.svg",
  49399. extra: 2395/2288,
  49400. bottom: 40/2435
  49401. }
  49402. },
  49403. },
  49404. [
  49405. {
  49406. name: "Normal",
  49407. height: math.unit(8 + 10/12, "feet"),
  49408. default: true
  49409. },
  49410. ]
  49411. ))
  49412. characterMakers.push(() => makeCharacter(
  49413. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49414. {
  49415. front: {
  49416. height: math.unit(14, "feet"),
  49417. weight: math.unit(3400, "lb"),
  49418. name: "Front",
  49419. image: {
  49420. source: "./media/characters/aletia/front.svg",
  49421. extra: 1185/1052,
  49422. bottom: 21/1206
  49423. }
  49424. },
  49425. },
  49426. [
  49427. {
  49428. name: "Compressed",
  49429. height: math.unit(8, "feet")
  49430. },
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(14, "feet"),
  49434. default: true
  49435. },
  49436. ]
  49437. ))
  49438. characterMakers.push(() => makeCharacter(
  49439. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49440. {
  49441. front: {
  49442. height: math.unit(17, "feet"),
  49443. weight: math.unit(6500, "lb"),
  49444. name: "Front",
  49445. image: {
  49446. source: "./media/characters/deidra/front.svg",
  49447. extra: 1201/1081,
  49448. bottom: 16/1217
  49449. }
  49450. },
  49451. },
  49452. [
  49453. {
  49454. name: "Compressed",
  49455. height: math.unit(9 + 6/12, "feet")
  49456. },
  49457. {
  49458. name: "Normal",
  49459. height: math.unit(17, "feet"),
  49460. default: true
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49466. {
  49467. front: {
  49468. height: math.unit(7 + 4/12, "feet"),
  49469. weight: math.unit(280, "lb"),
  49470. name: "Front",
  49471. image: {
  49472. source: "./media/characters/freki-yrmori/front.svg",
  49473. extra: 1286/1182,
  49474. bottom: 29/1315
  49475. }
  49476. },
  49477. maw: {
  49478. height: math.unit(0.9, "feet"),
  49479. name: "Maw",
  49480. image: {
  49481. source: "./media/characters/freki-yrmori/maw.svg"
  49482. }
  49483. },
  49484. },
  49485. [
  49486. {
  49487. name: "Normal",
  49488. height: math.unit(7 + 4/12, "feet"),
  49489. default: true
  49490. },
  49491. {
  49492. name: "Macro",
  49493. height: math.unit(38.5, "meters")
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49499. {
  49500. side: {
  49501. height: math.unit(47.2, "meters"),
  49502. weight: math.unit(10000, "tons"),
  49503. name: "Side",
  49504. image: {
  49505. source: "./media/characters/aetherios/side.svg",
  49506. extra: 2363/642,
  49507. bottom: 221/2584
  49508. }
  49509. },
  49510. top: {
  49511. height: math.unit(240, "meters"),
  49512. weight: math.unit(10000, "tons"),
  49513. name: "Top",
  49514. image: {
  49515. source: "./media/characters/aetherios/top.svg"
  49516. }
  49517. },
  49518. bottom: {
  49519. height: math.unit(240, "meters"),
  49520. weight: math.unit(10000, "tons"),
  49521. name: "Bottom",
  49522. image: {
  49523. source: "./media/characters/aetherios/bottom.svg"
  49524. }
  49525. },
  49526. head: {
  49527. height: math.unit(38.6, "meters"),
  49528. name: "Head",
  49529. image: {
  49530. source: "./media/characters/aetherios/head.svg",
  49531. extra: 1335/1112,
  49532. bottom: 0/1335
  49533. }
  49534. },
  49535. front: {
  49536. height: math.unit(29, "meters"),
  49537. name: "Front",
  49538. image: {
  49539. source: "./media/characters/aetherios/front.svg",
  49540. extra: 1266/953,
  49541. bottom: 158/1424
  49542. }
  49543. },
  49544. maw: {
  49545. height: math.unit(16.37, "meters"),
  49546. name: "Maw",
  49547. image: {
  49548. source: "./media/characters/aetherios/maw.svg",
  49549. extra: 748/637,
  49550. bottom: 0/748
  49551. }
  49552. },
  49553. forepaw: {
  49554. height: math.unit(18, "meters"),
  49555. name: "Forepaw",
  49556. image: {
  49557. source: "./media/characters/aetherios/forepaw.svg"
  49558. }
  49559. },
  49560. hindpaw: {
  49561. height: math.unit(23, "meters"),
  49562. name: "Hindpaw",
  49563. image: {
  49564. source: "./media/characters/aetherios/hindpaw.svg"
  49565. }
  49566. },
  49567. genitals: {
  49568. height: math.unit(42, "meters"),
  49569. name: "Genitals",
  49570. image: {
  49571. source: "./media/characters/aetherios/genitals.svg"
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(47.2, "meters"),
  49579. default: true
  49580. },
  49581. {
  49582. name: "Macro",
  49583. height: math.unit(160, "meters")
  49584. },
  49585. {
  49586. name: "Mega",
  49587. height: math.unit(1.87, "km")
  49588. },
  49589. {
  49590. name: "Giga",
  49591. height: math.unit(40000, "km")
  49592. },
  49593. {
  49594. name: "Stellar",
  49595. height: math.unit(158000000, "km")
  49596. },
  49597. {
  49598. name: "Cosmic",
  49599. height: math.unit(9.46e12, "km")
  49600. },
  49601. ]
  49602. ))
  49603. //characters
  49604. function makeCharacters() {
  49605. const results = [];
  49606. characterMakers.forEach(character => {
  49607. results.push(character());
  49608. });
  49609. return results;
  49610. }