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

50553 řádky
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon",
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon",
  358. "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. }
  1938. //species
  1939. function getSpeciesInfo(speciesList) {
  1940. let result = new Set();
  1941. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1942. result.add(entry)
  1943. });
  1944. return Array.from(result);
  1945. };
  1946. function getSpeciesInfoHelper(species) {
  1947. if (!speciesData[species]) {
  1948. console.warn(species + " doesn't exist");
  1949. return [];
  1950. }
  1951. if (speciesData[species].parents) {
  1952. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1953. } else {
  1954. return [species];
  1955. }
  1956. }
  1957. characterMakers.push(() => makeCharacter(
  1958. {
  1959. name: "Fen",
  1960. species: ["crux"],
  1961. description: {
  1962. title: "Bio",
  1963. text: "Very furry. Sheds on everything."
  1964. },
  1965. tags: [
  1966. "anthro",
  1967. "goo"
  1968. ]
  1969. },
  1970. {
  1971. front: {
  1972. height: math.unit(12, "feet"),
  1973. weight: math.unit(2400, "lb"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/fen/front.svg",
  1977. extra: 1804/1562,
  1978. bottom: 205/2009
  1979. }
  1980. },
  1981. diving: {
  1982. height: math.unit(4.9, "meters"),
  1983. weight: math.unit(2400, "lb"),
  1984. name: "Diving",
  1985. image: {
  1986. source: "./media/characters/fen/diving.svg"
  1987. }
  1988. },
  1989. goo: {
  1990. height: math.unit(12, "feet"),
  1991. weight: math.unit(3600, "lb"),
  1992. volume: math.unit(1000, "liters"),
  1993. capacity: math.unit(6, "people"),
  1994. name: "Goo",
  1995. image: {
  1996. source: "./media/characters/fen/goo.svg",
  1997. extra: 1307/1071,
  1998. bottom: 134/1441
  1999. }
  2000. },
  2001. maw: {
  2002. height: math.unit(5.03, "feet"),
  2003. name: "Maw",
  2004. image: {
  2005. source: "./media/characters/fen/maw.svg"
  2006. }
  2007. },
  2008. gooCeiling: {
  2009. height: math.unit(6.6, "feet"),
  2010. weight: math.unit(3000, "lb"),
  2011. volume: math.unit(1000, "liters"),
  2012. capacity: math.unit(6, "people"),
  2013. name: "Goo (Ceiling)",
  2014. image: {
  2015. source: "./media/characters/fen/goo-ceiling.svg"
  2016. }
  2017. },
  2018. back: {
  2019. height: math.unit(12, "feet"),
  2020. weight: math.unit(2400, "lb"),
  2021. name: "Back",
  2022. image: {
  2023. source: "./media/characters/fen/back.svg",
  2024. },
  2025. info: {
  2026. description: {
  2027. mode: "append",
  2028. text: "\n\nHe is not currently looking at you."
  2029. }
  2030. }
  2031. },
  2032. full: {
  2033. height: math.unit(1.6, "meter"),
  2034. weight: math.unit(3200, "lb"),
  2035. name: "Full",
  2036. image: {
  2037. source: "./media/characters/fen/full.svg",
  2038. extra: 1133/859,
  2039. bottom: 145/1278
  2040. },
  2041. info: {
  2042. description: {
  2043. mode: "append",
  2044. text: "\n\nMunch."
  2045. }
  2046. }
  2047. },
  2048. gooLounging: {
  2049. height: math.unit(4.53, "feet"),
  2050. weight: math.unit(3000, "lb"),
  2051. capacity: math.unit(6, "people"),
  2052. name: "Goo (Lounging)",
  2053. image: {
  2054. source: "./media/characters/fen/goo-lounging.svg",
  2055. bottom: 116 / 613
  2056. }
  2057. },
  2058. lounging: {
  2059. height: math.unit(10.52, "feet"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Lounging",
  2062. image: {
  2063. source: "./media/characters/fen/lounging.svg"
  2064. }
  2065. },
  2066. },
  2067. [
  2068. {
  2069. name: "Small",
  2070. height: math.unit(2.2428, "meter")
  2071. },
  2072. {
  2073. name: "Normal",
  2074. height: math.unit(12, "feet"),
  2075. default: true,
  2076. },
  2077. {
  2078. name: "Big",
  2079. height: math.unit(20, "feet")
  2080. },
  2081. {
  2082. name: "Minimacro",
  2083. height: math.unit(40, "feet"),
  2084. info: {
  2085. description: {
  2086. mode: "append",
  2087. text: "\n\nTOO DAMN BIG"
  2088. }
  2089. }
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(100, "feet"),
  2094. info: {
  2095. description: {
  2096. mode: "append",
  2097. text: "\n\nTOO DAMN BIG"
  2098. }
  2099. }
  2100. },
  2101. {
  2102. name: "Megamacro",
  2103. height: math.unit(2, "miles")
  2104. },
  2105. {
  2106. name: "Gigamacro",
  2107. height: math.unit(10, "earths")
  2108. },
  2109. ]
  2110. ))
  2111. characterMakers.push(() => makeCharacter(
  2112. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2113. {
  2114. front: {
  2115. height: math.unit(183, "cm"),
  2116. weight: math.unit(80, "kg"),
  2117. name: "Front",
  2118. image: {
  2119. source: "./media/characters/sofia-fluttertail/front.svg",
  2120. bottom: 0.01,
  2121. extra: 2154 / 2081
  2122. }
  2123. },
  2124. frontAlt: {
  2125. height: math.unit(183, "cm"),
  2126. weight: math.unit(80, "kg"),
  2127. name: "Front (alt)",
  2128. image: {
  2129. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2130. }
  2131. },
  2132. back: {
  2133. height: math.unit(183, "cm"),
  2134. weight: math.unit(80, "kg"),
  2135. name: "Back",
  2136. image: {
  2137. source: "./media/characters/sofia-fluttertail/back.svg"
  2138. }
  2139. },
  2140. kneeling: {
  2141. height: math.unit(125, "cm"),
  2142. weight: math.unit(80, "kg"),
  2143. name: "Kneeling",
  2144. image: {
  2145. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2146. extra: 1033 / 977,
  2147. bottom: 23.7 / 1057
  2148. }
  2149. },
  2150. maw: {
  2151. height: math.unit(183 / 5, "cm"),
  2152. name: "Maw",
  2153. image: {
  2154. source: "./media/characters/sofia-fluttertail/maw.svg"
  2155. }
  2156. },
  2157. mawcloseup: {
  2158. height: math.unit(183 / 5 * 0.41, "cm"),
  2159. name: "Maw (Closeup)",
  2160. image: {
  2161. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2162. }
  2163. },
  2164. paws: {
  2165. height: math.unit(1.17, "feet"),
  2166. name: "Paws",
  2167. image: {
  2168. source: "./media/characters/sofia-fluttertail/paws.svg",
  2169. extra: 851 / 851,
  2170. bottom: 17 / 868
  2171. }
  2172. },
  2173. },
  2174. [
  2175. {
  2176. name: "Normal",
  2177. height: math.unit(1.83, "meter")
  2178. },
  2179. {
  2180. name: "Size Thief",
  2181. height: math.unit(18, "feet")
  2182. },
  2183. {
  2184. name: "50 Foot Collie",
  2185. height: math.unit(50, "feet")
  2186. },
  2187. {
  2188. name: "Macro",
  2189. height: math.unit(96, "feet"),
  2190. default: true
  2191. },
  2192. {
  2193. name: "Megamerger",
  2194. height: math.unit(650, "feet")
  2195. },
  2196. ]
  2197. ))
  2198. characterMakers.push(() => makeCharacter(
  2199. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2200. {
  2201. front: {
  2202. height: math.unit(7, "feet"),
  2203. weight: math.unit(100, "kg"),
  2204. name: "Front",
  2205. image: {
  2206. source: "./media/characters/march/front.svg",
  2207. extra: 1992/1851,
  2208. bottom: 39/2031
  2209. }
  2210. },
  2211. foot: {
  2212. height: math.unit(0.9, "feet"),
  2213. name: "Foot",
  2214. image: {
  2215. source: "./media/characters/march/foot.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(7.9, "feet")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(220, "meters")
  2227. },
  2228. {
  2229. name: "Megamacro",
  2230. height: math.unit(2.98, "km"),
  2231. default: true
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(15963, "km")
  2236. },
  2237. {
  2238. name: "Teramacro",
  2239. height: math.unit(2980000000, "km")
  2240. },
  2241. {
  2242. name: "Examacro",
  2243. height: math.unit(250, "parsecs")
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(6, "feet"),
  2252. weight: math.unit(60, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/noir/front.svg",
  2256. extra: 1,
  2257. bottom: 0.032
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Normal",
  2264. height: math.unit(6.6, "feet")
  2265. },
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(500, "feet")
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(2.5, "km"),
  2273. default: true
  2274. },
  2275. {
  2276. name: "Gigamacro",
  2277. height: math.unit(22500, "km")
  2278. },
  2279. {
  2280. name: "Teramacro",
  2281. height: math.unit(2500000000, "km")
  2282. },
  2283. {
  2284. name: "Examacro",
  2285. height: math.unit(200, "parsecs")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(7, "feet"),
  2294. weight: math.unit(100, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/okuri/front.svg",
  2298. extra: 739/665,
  2299. bottom: 39/778
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(7, "feet"),
  2304. weight: math.unit(100, "kg"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/okuri/back.svg",
  2308. extra: 734/653,
  2309. bottom: 13/747
  2310. }
  2311. },
  2312. sitting: {
  2313. height: math.unit(2.95, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Sitting",
  2316. image: {
  2317. source: "./media/characters/okuri/sitting.svg",
  2318. extra: 370/318,
  2319. bottom: 99/469
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Smallest",
  2326. height: math.unit(5 + 2/12, "feet")
  2327. },
  2328. {
  2329. name: "Smaller",
  2330. height: math.unit(300, "feet")
  2331. },
  2332. {
  2333. name: "Small",
  2334. height: math.unit(1000, "feet")
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(1, "mile")
  2339. },
  2340. {
  2341. name: "Mega Macro (Small)",
  2342. height: math.unit(20, "km")
  2343. },
  2344. {
  2345. name: "Mega Macro (Large)",
  2346. height: math.unit(600, "km")
  2347. },
  2348. {
  2349. name: "Giga Macro",
  2350. height: math.unit(10000, "km")
  2351. },
  2352. {
  2353. name: "Normal",
  2354. height: math.unit(577560, "km"),
  2355. default: true
  2356. },
  2357. {
  2358. name: "Large",
  2359. height: math.unit(4, "galaxies")
  2360. },
  2361. {
  2362. name: "Largest",
  2363. height: math.unit(15, "multiverses")
  2364. },
  2365. ]
  2366. ))
  2367. characterMakers.push(() => makeCharacter(
  2368. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2369. {
  2370. front: {
  2371. height: math.unit(7, "feet"),
  2372. weight: math.unit(100, "kg"),
  2373. name: "Front",
  2374. image: {
  2375. source: "./media/characters/manny/front.svg",
  2376. extra: 1,
  2377. bottom: 0.06
  2378. }
  2379. },
  2380. back: {
  2381. height: math.unit(7, "feet"),
  2382. weight: math.unit(100, "kg"),
  2383. name: "Back",
  2384. image: {
  2385. source: "./media/characters/manny/back.svg",
  2386. extra: 1,
  2387. bottom: 0.014
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(7, "feet"),
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(78, "feet"),
  2399. default: true
  2400. },
  2401. {
  2402. name: "Macro+",
  2403. height: math.unit(300, "meters")
  2404. },
  2405. {
  2406. name: "Macro++",
  2407. height: math.unit(2400, "meters")
  2408. },
  2409. {
  2410. name: "Megamacro",
  2411. height: math.unit(5167, "meters")
  2412. },
  2413. {
  2414. name: "Gigamacro",
  2415. height: math.unit(41769, "miles")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(7, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/adake/front-1.svg"
  2428. }
  2429. },
  2430. frontAlt: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front (Alt)",
  2434. image: {
  2435. source: "./media/characters/adake/front-2.svg",
  2436. extra: 1,
  2437. bottom: 0.01
  2438. }
  2439. },
  2440. back: {
  2441. height: math.unit(7, "feet"),
  2442. weight: math.unit(100, "kg"),
  2443. name: "Back",
  2444. image: {
  2445. source: "./media/characters/adake/back.svg",
  2446. }
  2447. },
  2448. kneel: {
  2449. height: math.unit(5.385, "feet"),
  2450. weight: math.unit(100, "kg"),
  2451. name: "Kneeling",
  2452. image: {
  2453. source: "./media/characters/adake/kneel.svg",
  2454. bottom: 0.052
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Normal",
  2461. height: math.unit(7, "feet"),
  2462. },
  2463. {
  2464. name: "Macro",
  2465. height: math.unit(78, "feet"),
  2466. default: true
  2467. },
  2468. {
  2469. name: "Macro+",
  2470. height: math.unit(300, "meters")
  2471. },
  2472. {
  2473. name: "Macro++",
  2474. height: math.unit(2400, "meters")
  2475. },
  2476. {
  2477. name: "Megamacro",
  2478. height: math.unit(5167, "meters")
  2479. },
  2480. {
  2481. name: "Gigamacro",
  2482. height: math.unit(41769, "miles")
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/elijah/front.svg",
  2495. extra: 858 / 830,
  2496. bottom: 95.5 / 953.8559
  2497. }
  2498. },
  2499. back: {
  2500. height: math.unit(1.65, "meters"),
  2501. weight: math.unit(50, "kg"),
  2502. name: "Back",
  2503. image: {
  2504. source: "./media/characters/elijah/back.svg",
  2505. extra: 895 / 850,
  2506. bottom: 5.3 / 897.956
  2507. }
  2508. },
  2509. frontNsfw: {
  2510. height: math.unit(1.65, "meters"),
  2511. weight: math.unit(50, "kg"),
  2512. name: "Front (NSFW)",
  2513. image: {
  2514. source: "./media/characters/elijah/front-nsfw.svg",
  2515. extra: 858 / 830,
  2516. bottom: 95.5 / 953.8559
  2517. }
  2518. },
  2519. backNsfw: {
  2520. height: math.unit(1.65, "meters"),
  2521. weight: math.unit(50, "kg"),
  2522. name: "Back (NSFW)",
  2523. image: {
  2524. source: "./media/characters/elijah/back-nsfw.svg",
  2525. extra: 895 / 850,
  2526. bottom: 5.3 / 897.956
  2527. }
  2528. },
  2529. dick: {
  2530. height: math.unit(1, "feet"),
  2531. name: "Dick",
  2532. image: {
  2533. source: "./media/characters/elijah/dick.svg"
  2534. }
  2535. },
  2536. beakOpen: {
  2537. height: math.unit(1.25, "feet"),
  2538. name: "Beak (Open)",
  2539. image: {
  2540. source: "./media/characters/elijah/beak-open.svg"
  2541. }
  2542. },
  2543. beakShut: {
  2544. height: math.unit(1.25, "feet"),
  2545. name: "Beak (Shut)",
  2546. image: {
  2547. source: "./media/characters/elijah/beak-shut.svg"
  2548. }
  2549. },
  2550. footFlexing: {
  2551. height: math.unit(1.61, "feet"),
  2552. name: "Foot (Flexing)",
  2553. image: {
  2554. source: "./media/characters/elijah/foot-flexing.svg"
  2555. }
  2556. },
  2557. footStepping: {
  2558. height: math.unit(1.44, "feet"),
  2559. name: "Foot (Stepping)",
  2560. image: {
  2561. source: "./media/characters/elijah/foot-stepping.svg"
  2562. }
  2563. },
  2564. plantigradeLeg: {
  2565. height: math.unit(2.34, "feet"),
  2566. name: "Plantigrade Leg",
  2567. image: {
  2568. source: "./media/characters/elijah/plantigrade-leg.svg"
  2569. }
  2570. },
  2571. plantigradeFootLeft: {
  2572. height: math.unit(0.9, "feet"),
  2573. name: "Plantigrade Foot (Left)",
  2574. image: {
  2575. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2576. }
  2577. },
  2578. plantigradeFootRight: {
  2579. height: math.unit(0.9, "feet"),
  2580. name: "Plantigrade Foot (Right)",
  2581. image: {
  2582. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(1.65, "meters")
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(55, "meters"),
  2594. default: true
  2595. },
  2596. {
  2597. name: "Macro+",
  2598. height: math.unit(105, "meters")
  2599. },
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/rai/front.svg",
  2611. extra: 1802/1696,
  2612. bottom: 68/1870
  2613. }
  2614. },
  2615. frontDressed: {
  2616. height: math.unit(7 + 2/12, "feet"),
  2617. weight: math.unit(320, "kg"),
  2618. name: "Front (Dressed)",
  2619. image: {
  2620. source: "./media/characters/rai/front-dressed.svg",
  2621. extra: 1802/1696,
  2622. bottom: 68/1870
  2623. }
  2624. },
  2625. side: {
  2626. height: math.unit(7 + 2/12, "feet"),
  2627. weight: math.unit(320, "kg"),
  2628. name: "Side",
  2629. image: {
  2630. source: "./media/characters/rai/side.svg",
  2631. extra: 1789/1710,
  2632. bottom: 115/1904
  2633. }
  2634. },
  2635. back: {
  2636. height: math.unit(7 + 2/12, "feet"),
  2637. weight: math.unit(320, "kg"),
  2638. name: "Back",
  2639. image: {
  2640. source: "./media/characters/rai/back.svg",
  2641. extra: 1770/1707,
  2642. bottom: 28/1798
  2643. }
  2644. },
  2645. feral: {
  2646. height: math.unit(9.5, "feet"),
  2647. weight: math.unit(640, "kg"),
  2648. name: "Feral",
  2649. image: {
  2650. source: "./media/characters/rai/feral.svg",
  2651. extra: 945/553,
  2652. bottom: 176/1121
  2653. }
  2654. },
  2655. dragon: {
  2656. height: math.unit(23, "feet"),
  2657. weight: math.unit(50000, "lb"),
  2658. name: "Dragon",
  2659. image: {
  2660. source: "./media/characters/rai/dragon.svg",
  2661. extra: 2498 / 2030,
  2662. bottom: 85.2 / 2584
  2663. }
  2664. },
  2665. maw: {
  2666. height: math.unit(1.69, "feet"),
  2667. name: "Maw",
  2668. image: {
  2669. source: "./media/characters/rai/maw.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(7 + 2/12, "feet")
  2677. },
  2678. {
  2679. name: "Big",
  2680. height: math.unit(11, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(302, "feet"),
  2685. default: true
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2691. {
  2692. frontDressed: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Front (Dressed)",
  2696. image: {
  2697. source: "./media/characters/jazzy/front-dressed.svg",
  2698. extra: 2738 / 2651,
  2699. bottom: 41.8 / 2786
  2700. }
  2701. },
  2702. backDressed: {
  2703. height: math.unit(216, "feet"),
  2704. weight: math.unit(7000000, "lb"),
  2705. name: "Back (Dressed)",
  2706. image: {
  2707. source: "./media/characters/jazzy/back-dressed.svg",
  2708. extra: 2775 / 2673,
  2709. bottom: 36.8 / 2817
  2710. }
  2711. },
  2712. front: {
  2713. height: math.unit(216, "feet"),
  2714. weight: math.unit(7000000, "lb"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/jazzy/front.svg",
  2718. extra: 2738 / 2651,
  2719. bottom: 41.8 / 2786
  2720. }
  2721. },
  2722. back: {
  2723. height: math.unit(216, "feet"),
  2724. weight: math.unit(7000000, "lb"),
  2725. name: "Back",
  2726. image: {
  2727. source: "./media/characters/jazzy/back.svg",
  2728. extra: 2775 / 2673,
  2729. bottom: 36.8 / 2817
  2730. }
  2731. },
  2732. maw: {
  2733. height: math.unit(20, "feet"),
  2734. name: "Maw",
  2735. image: {
  2736. source: "./media/characters/jazzy/maw.svg"
  2737. }
  2738. },
  2739. paws: {
  2740. height: math.unit(27.5, "feet"),
  2741. name: "Paws",
  2742. image: {
  2743. source: "./media/characters/jazzy/paws.svg"
  2744. }
  2745. },
  2746. eye: {
  2747. height: math.unit(4.4, "feet"),
  2748. name: "Eye",
  2749. image: {
  2750. source: "./media/characters/jazzy/eye.svg"
  2751. }
  2752. },
  2753. droneOffense: {
  2754. height: math.unit(9.5, "inches"),
  2755. name: "Drone (Offense)",
  2756. image: {
  2757. source: "./media/characters/jazzy/drone-offense.svg"
  2758. }
  2759. },
  2760. droneRecon: {
  2761. height: math.unit(9.5, "inches"),
  2762. name: "Drone (Recon)",
  2763. image: {
  2764. source: "./media/characters/jazzy/drone-recon.svg"
  2765. }
  2766. },
  2767. droneDefense: {
  2768. height: math.unit(9.5, "inches"),
  2769. name: "Drone (Defense)",
  2770. image: {
  2771. source: "./media/characters/jazzy/drone-defense.svg"
  2772. }
  2773. },
  2774. },
  2775. [
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(216, "feet"),
  2779. default: true
  2780. },
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(9 + 6/12, "feet"),
  2788. weight: math.unit(700, "lb"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/flamm/front.svg",
  2792. extra: 1751/1632,
  2793. bottom: 46/1797
  2794. }
  2795. },
  2796. buff: {
  2797. height: math.unit(9 + 6/12, "feet"),
  2798. weight: math.unit(950, "lb"),
  2799. name: "Buff",
  2800. image: {
  2801. source: "./media/characters/flamm/buff.svg",
  2802. extra: 3018/2874,
  2803. bottom: 221/3239
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(9.5, "feet")
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(200, "feet"),
  2815. default: true
  2816. },
  2817. ]
  2818. ))
  2819. characterMakers.push(() => makeCharacter(
  2820. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2821. {
  2822. front: {
  2823. height: math.unit(5 + 3/12, "feet"),
  2824. weight: math.unit(60, "kg"),
  2825. name: "Front",
  2826. image: {
  2827. source: "./media/characters/zephiro/front.svg",
  2828. extra: 2309 / 2162,
  2829. bottom: 0.069
  2830. }
  2831. },
  2832. side: {
  2833. height: math.unit(5 + 3/12, "feet"),
  2834. weight: math.unit(60, "kg"),
  2835. name: "Side",
  2836. image: {
  2837. source: "./media/characters/zephiro/side.svg",
  2838. extra: 2403 / 2279,
  2839. bottom: 0.015
  2840. }
  2841. },
  2842. back: {
  2843. height: math.unit(5 + 3/12, "feet"),
  2844. weight: math.unit(60, "kg"),
  2845. name: "Back",
  2846. image: {
  2847. source: "./media/characters/zephiro/back.svg",
  2848. extra: 2373 / 2244,
  2849. bottom: 0.013
  2850. }
  2851. },
  2852. hand: {
  2853. height: math.unit(0.68, "feet"),
  2854. name: "Hand",
  2855. image: {
  2856. source: "./media/characters/zephiro/hand.svg"
  2857. }
  2858. },
  2859. paw: {
  2860. height: math.unit(1, "feet"),
  2861. name: "Paw",
  2862. image: {
  2863. source: "./media/characters/zephiro/paw.svg"
  2864. }
  2865. },
  2866. beans: {
  2867. height: math.unit(0.93, "feet"),
  2868. name: "Beans",
  2869. image: {
  2870. source: "./media/characters/zephiro/beans.svg"
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Micro",
  2877. height: math.unit(3, "inches")
  2878. },
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(5 + 3 / 12, "feet"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Macro",
  2886. height: math.unit(118, "feet")
  2887. },
  2888. ]
  2889. ))
  2890. characterMakers.push(() => makeCharacter(
  2891. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2892. {
  2893. front: {
  2894. height: math.unit(5, "feet"),
  2895. weight: math.unit(90, "kg"),
  2896. name: "Front",
  2897. image: {
  2898. source: "./media/characters/fory/front.svg",
  2899. extra: 2862 / 2674,
  2900. bottom: 180 / 3043.8
  2901. }
  2902. },
  2903. back: {
  2904. height: math.unit(5, "feet"),
  2905. weight: math.unit(90, "kg"),
  2906. name: "Back",
  2907. image: {
  2908. source: "./media/characters/fory/back.svg",
  2909. extra: 2962 / 2791,
  2910. bottom: 106 / 3071.8
  2911. }
  2912. },
  2913. foot: {
  2914. height: math.unit(2.14, "feet"),
  2915. name: "Foot",
  2916. image: {
  2917. source: "./media/characters/fory/foot.svg"
  2918. }
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(5, "feet")
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(50, "feet"),
  2929. default: true
  2930. },
  2931. {
  2932. name: "Megamacro",
  2933. height: math.unit(10, "miles")
  2934. },
  2935. {
  2936. name: "Gigamacro",
  2937. height: math.unit(5, "earths")
  2938. },
  2939. ]
  2940. ))
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2943. {
  2944. front: {
  2945. height: math.unit(7, "feet"),
  2946. weight: math.unit(90, "kg"),
  2947. name: "Front",
  2948. image: {
  2949. source: "./media/characters/kurrikage/front.svg",
  2950. extra: 1845/1733,
  2951. bottom: 119/1964
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(7, "feet"),
  2956. weight: math.unit(90, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/kurrikage/back.svg",
  2960. extra: 1790/1677,
  2961. bottom: 61/1851
  2962. }
  2963. },
  2964. dressed: {
  2965. height: math.unit(7, "feet"),
  2966. weight: math.unit(90, "kg"),
  2967. name: "Dressed",
  2968. image: {
  2969. source: "./media/characters/kurrikage/dressed.svg",
  2970. extra: 1845/1733,
  2971. bottom: 119/1964
  2972. }
  2973. },
  2974. foot: {
  2975. height: math.unit(1.5, "feet"),
  2976. name: "Foot",
  2977. image: {
  2978. source: "./media/characters/kurrikage/foot.svg"
  2979. }
  2980. },
  2981. staff: {
  2982. height: math.unit(6.7, "feet"),
  2983. name: "Staff",
  2984. image: {
  2985. source: "./media/characters/kurrikage/staff.svg"
  2986. }
  2987. },
  2988. peek: {
  2989. height: math.unit(1.05, "feet"),
  2990. name: "Peeking",
  2991. image: {
  2992. source: "./media/characters/kurrikage/peek.svg",
  2993. bottom: 0.08
  2994. }
  2995. },
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(12, "feet"),
  3001. default: true
  3002. },
  3003. {
  3004. name: "Big",
  3005. height: math.unit(20, "feet")
  3006. },
  3007. {
  3008. name: "Macro",
  3009. height: math.unit(500, "feet")
  3010. },
  3011. {
  3012. name: "Megamacro",
  3013. height: math.unit(20, "miles")
  3014. },
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/shingo/front.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. side: {
  3031. height: math.unit(6, "feet"),
  3032. weight: math.unit(75, "kg"),
  3033. name: "Side",
  3034. image: {
  3035. source: "./media/characters/shingo/side.svg",
  3036. extra: 1930/1865,
  3037. bottom: 16/1946
  3038. }
  3039. },
  3040. back: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Back",
  3044. image: {
  3045. source: "./media/characters/shingo/back.svg",
  3046. extra: 1922/1852,
  3047. bottom: 16/1938
  3048. }
  3049. },
  3050. frontDressed: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(150, "lb"),
  3053. name: "Front-dressed",
  3054. image: {
  3055. source: "./media/characters/shingo/front-dressed.svg",
  3056. extra: 1900/1825,
  3057. bottom: 82/1982
  3058. }
  3059. },
  3060. paw: {
  3061. height: math.unit(1.29, "feet"),
  3062. name: "Paw",
  3063. image: {
  3064. source: "./media/characters/shingo/paw.svg"
  3065. }
  3066. },
  3067. hand: {
  3068. height: math.unit(1.07, "feet"),
  3069. name: "Hand",
  3070. image: {
  3071. source: "./media/characters/shingo/hand.svg"
  3072. }
  3073. },
  3074. frontAlt: {
  3075. height: math.unit(6, "feet"),
  3076. weight: math.unit(75, "kg"),
  3077. name: "Front (Alt)",
  3078. image: {
  3079. source: "./media/characters/shingo/front-alt.svg",
  3080. extra: 3511 / 3338,
  3081. bottom: 0.005
  3082. }
  3083. },
  3084. frontAlt2: {
  3085. height: math.unit(6, "feet"),
  3086. weight: math.unit(75, "kg"),
  3087. name: "Front (Alt 2)",
  3088. image: {
  3089. source: "./media/characters/shingo/front-alt-2.svg",
  3090. extra: 706/681,
  3091. bottom: 11/717
  3092. }
  3093. },
  3094. pawAlt: {
  3095. height: math.unit(1, "feet"),
  3096. name: "Paw (Alt)",
  3097. image: {
  3098. source: "./media/characters/shingo/paw-alt.svg"
  3099. }
  3100. },
  3101. },
  3102. [
  3103. {
  3104. name: "Micro",
  3105. height: math.unit(4, "inches")
  3106. },
  3107. {
  3108. name: "Normal",
  3109. height: math.unit(6, "feet"),
  3110. default: true
  3111. },
  3112. {
  3113. name: "Macro",
  3114. height: math.unit(108, "feet")
  3115. },
  3116. {
  3117. name: "Macro+",
  3118. height: math.unit(1500, "feet")
  3119. },
  3120. ]
  3121. ))
  3122. characterMakers.push(() => makeCharacter(
  3123. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3124. {
  3125. side: {
  3126. height: math.unit(6, "feet"),
  3127. weight: math.unit(75, "kg"),
  3128. name: "Side",
  3129. image: {
  3130. source: "./media/characters/aigey/side.svg"
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(200, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Megamacro",
  3142. height: math.unit(100, "miles")
  3143. },
  3144. ]
  3145. )
  3146. )
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3149. {
  3150. front: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Front",
  3154. image: {
  3155. source: "./media/characters/natasha/front.svg",
  3156. extra: 859 / 824,
  3157. bottom: 23 / 879.6
  3158. }
  3159. },
  3160. frontNsfw: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Front (NSFW)",
  3164. image: {
  3165. source: "./media/characters/natasha/front-nsfw.svg",
  3166. extra: 859 / 824,
  3167. bottom: 23 / 879.6
  3168. }
  3169. },
  3170. frontErect: {
  3171. height: math.unit(5 + 5 / 12, "feet"),
  3172. weight: math.unit(75, "kg"),
  3173. name: "Front (Erect)",
  3174. image: {
  3175. source: "./media/characters/natasha/front-erect.svg",
  3176. extra: 859 / 824,
  3177. bottom: 23 / 879.6
  3178. }
  3179. },
  3180. back: {
  3181. height: math.unit(5 + 5 / 12, "feet"),
  3182. weight: math.unit(75, "kg"),
  3183. name: "Back",
  3184. image: {
  3185. source: "./media/characters/natasha/back.svg",
  3186. extra: 887.9 / 852.6,
  3187. bottom: 9.7 / 896.4
  3188. }
  3189. },
  3190. backAlt: {
  3191. height: math.unit(5 + 5 / 12, "feet"),
  3192. weight: math.unit(75, "kg"),
  3193. name: "Back (Alt)",
  3194. image: {
  3195. source: "./media/characters/natasha/back-alt.svg",
  3196. extra: 1236.7 / 1192,
  3197. bottom: 22.3 / 1258.2
  3198. }
  3199. },
  3200. dick: {
  3201. height: math.unit(1.772, "feet"),
  3202. name: "Dick",
  3203. image: {
  3204. source: "./media/characters/natasha/dick.svg"
  3205. }
  3206. },
  3207. paw: {
  3208. height: math.unit(0.250, "meters"),
  3209. name: "Paw",
  3210. image: {
  3211. source: "./media/characters/natasha/paw.svg"
  3212. }
  3213. },
  3214. },
  3215. [
  3216. {
  3217. name: "Normal",
  3218. height: math.unit(5 + 5 / 12, "feet")
  3219. },
  3220. {
  3221. name: "Large",
  3222. height: math.unit(12, "feet")
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(100, "feet"),
  3227. default: true
  3228. },
  3229. {
  3230. name: "Macro+",
  3231. height: math.unit(260, "feet")
  3232. },
  3233. {
  3234. name: "Macro++",
  3235. height: math.unit(1, "mile")
  3236. },
  3237. ]
  3238. ))
  3239. characterMakers.push(() => makeCharacter(
  3240. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3241. {
  3242. front: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(75, "kg"),
  3245. name: "Front",
  3246. image: {
  3247. source: "./media/characters/malik/front.svg"
  3248. }
  3249. },
  3250. side: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(75, "kg"),
  3253. name: "Side",
  3254. image: {
  3255. source: "./media/characters/malik/side.svg",
  3256. extra: 1.1539
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(6, "feet"),
  3261. weight: math.unit(75, "kg"),
  3262. name: "Back",
  3263. image: {
  3264. source: "./media/characters/malik/back.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(156, "feet"),
  3272. default: true
  3273. },
  3274. {
  3275. name: "Macro+",
  3276. height: math.unit(1188, "feet")
  3277. },
  3278. ]
  3279. ))
  3280. characterMakers.push(() => makeCharacter(
  3281. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3282. {
  3283. front: {
  3284. height: math.unit(6, "feet"),
  3285. weight: math.unit(75, "kg"),
  3286. name: "Front",
  3287. image: {
  3288. source: "./media/characters/sefer/front.svg",
  3289. extra: 848 / 659,
  3290. bottom: 28.3 / 876.442
  3291. }
  3292. },
  3293. back: {
  3294. height: math.unit(6, "feet"),
  3295. weight: math.unit(75, "kg"),
  3296. name: "Back",
  3297. image: {
  3298. source: "./media/characters/sefer/back.svg",
  3299. extra: 864 / 695,
  3300. bottom: 10 / 871
  3301. }
  3302. },
  3303. frontDressed: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(75, "kg"),
  3306. name: "Front (Dressed)",
  3307. image: {
  3308. source: "./media/characters/sefer/front-dressed.svg",
  3309. extra: 839 / 653,
  3310. bottom: 37.6 / 878
  3311. }
  3312. },
  3313. },
  3314. [
  3315. {
  3316. name: "Normal",
  3317. height: math.unit(6, "feet"),
  3318. default: true
  3319. },
  3320. ]
  3321. ))
  3322. characterMakers.push(() => makeCharacter(
  3323. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3324. {
  3325. body: {
  3326. height: math.unit(2.2428, "meter"),
  3327. weight: math.unit(124.738, "kg"),
  3328. name: "Body",
  3329. image: {
  3330. extra: 1225 / 1050,
  3331. source: "./media/characters/north/front.svg"
  3332. }
  3333. }
  3334. },
  3335. [
  3336. {
  3337. name: "Micro",
  3338. height: math.unit(4, "inches")
  3339. },
  3340. {
  3341. name: "Macro",
  3342. height: math.unit(63, "meters")
  3343. },
  3344. {
  3345. name: "Megamacro",
  3346. height: math.unit(101, "miles"),
  3347. default: true
  3348. }
  3349. ]
  3350. ))
  3351. characterMakers.push(() => makeCharacter(
  3352. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3353. {
  3354. angled: {
  3355. height: math.unit(4, "meter"),
  3356. weight: math.unit(150, "kg"),
  3357. name: "Angled",
  3358. image: {
  3359. source: "./media/characters/talan/angled-sfw.svg",
  3360. bottom: 29 / 3734
  3361. }
  3362. },
  3363. angledNsfw: {
  3364. height: math.unit(4, "meter"),
  3365. weight: math.unit(150, "kg"),
  3366. name: "Angled (NSFW)",
  3367. image: {
  3368. source: "./media/characters/talan/angled-nsfw.svg",
  3369. bottom: 29 / 3734
  3370. }
  3371. },
  3372. frontNsfw: {
  3373. height: math.unit(4, "meter"),
  3374. weight: math.unit(150, "kg"),
  3375. name: "Front (NSFW)",
  3376. image: {
  3377. source: "./media/characters/talan/front-nsfw.svg",
  3378. bottom: 29 / 3734
  3379. }
  3380. },
  3381. sideNsfw: {
  3382. height: math.unit(4, "meter"),
  3383. weight: math.unit(150, "kg"),
  3384. name: "Side (NSFW)",
  3385. image: {
  3386. source: "./media/characters/talan/side-nsfw.svg",
  3387. bottom: 29 / 3734
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(4, "meter"),
  3392. weight: math.unit(150, "kg"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/talan/back.svg"
  3396. }
  3397. },
  3398. dickBottom: {
  3399. height: math.unit(0.621, "meter"),
  3400. name: "Dick (Bottom)",
  3401. image: {
  3402. source: "./media/characters/talan/dick-bottom.svg"
  3403. }
  3404. },
  3405. dickTop: {
  3406. height: math.unit(0.621, "meter"),
  3407. name: "Dick (Top)",
  3408. image: {
  3409. source: "./media/characters/talan/dick-top.svg"
  3410. }
  3411. },
  3412. dickSide: {
  3413. height: math.unit(0.305, "meter"),
  3414. name: "Dick (Side)",
  3415. image: {
  3416. source: "./media/characters/talan/dick-side.svg"
  3417. }
  3418. },
  3419. dickFront: {
  3420. height: math.unit(0.305, "meter"),
  3421. name: "Dick (Front)",
  3422. image: {
  3423. source: "./media/characters/talan/dick-front.svg"
  3424. }
  3425. },
  3426. },
  3427. [
  3428. {
  3429. name: "Normal",
  3430. height: math.unit(4, "meters")
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(100, "meters")
  3435. },
  3436. {
  3437. name: "Megamacro",
  3438. height: math.unit(2, "miles"),
  3439. default: true
  3440. },
  3441. {
  3442. name: "Gigamacro",
  3443. height: math.unit(5000, "miles")
  3444. },
  3445. {
  3446. name: "Teramacro",
  3447. height: math.unit(100, "parsecs")
  3448. }
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(2, "meter"),
  3456. weight: math.unit(90, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/gael'rathus/front.svg"
  3460. }
  3461. },
  3462. frontAlt: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(90, "kg"),
  3465. name: "Front (alt)",
  3466. image: {
  3467. source: "./media/characters/gael'rathus/front-alt.svg"
  3468. }
  3469. },
  3470. frontAlt2: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(90, "kg"),
  3473. name: "Front (alt 2)",
  3474. image: {
  3475. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3476. }
  3477. }
  3478. },
  3479. [
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(9, "feet"),
  3483. default: true
  3484. },
  3485. {
  3486. name: "Large",
  3487. height: math.unit(25, "feet")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(0.25, "miles")
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(10, "miles")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3501. {
  3502. side: {
  3503. height: math.unit(2, "meter"),
  3504. weight: math.unit(140, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/sosha/side.svg",
  3508. bottom: 0.042
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(12, "feet"),
  3516. default: true
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3522. {
  3523. side: {
  3524. height: math.unit(5 + 5 / 12, "feet"),
  3525. weight: math.unit(170, "kg"),
  3526. name: "Side",
  3527. image: {
  3528. source: "./media/characters/runnola/side.svg",
  3529. extra: 741 / 448,
  3530. bottom: 0.05
  3531. }
  3532. },
  3533. },
  3534. [
  3535. {
  3536. name: "Small",
  3537. height: math.unit(3, "feet")
  3538. },
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(5 + 5 / 12, "feet"),
  3542. default: true
  3543. },
  3544. {
  3545. name: "Big",
  3546. height: math.unit(10, "feet")
  3547. },
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(50, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/kurribird/front.svg",
  3559. bottom: 0.015
  3560. }
  3561. },
  3562. frontAlt: {
  3563. height: math.unit(1.5, "meter"),
  3564. weight: math.unit(50, "kg"),
  3565. name: "Front (Alt)",
  3566. image: {
  3567. source: "./media/characters/kurribird/front-alt.svg",
  3568. extra: 1.45
  3569. }
  3570. },
  3571. },
  3572. [
  3573. {
  3574. name: "Normal",
  3575. height: math.unit(7, "feet")
  3576. },
  3577. {
  3578. name: "Big",
  3579. height: math.unit(12, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Macro",
  3584. height: math.unit(1500, "feet")
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(2, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/elbial/front.svg",
  3601. extra: 1643 / 1556,
  3602. bottom: 60.2 / 1696
  3603. }
  3604. },
  3605. side: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(80, "kg"),
  3608. name: "Side",
  3609. image: {
  3610. source: "./media/characters/elbial/side.svg",
  3611. extra: 1601/1528,
  3612. bottom: 97/1698
  3613. }
  3614. },
  3615. back: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(80, "kg"),
  3618. name: "Back",
  3619. image: {
  3620. source: "./media/characters/elbial/back.svg",
  3621. extra: 1653/1569,
  3622. bottom: 20/1673
  3623. }
  3624. },
  3625. frontDressed: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(80, "kg"),
  3628. name: "Front (Dressed)",
  3629. image: {
  3630. source: "./media/characters/elbial/front-dressed.svg",
  3631. extra: 1638/1569,
  3632. bottom: 70/1708
  3633. }
  3634. },
  3635. genitals: {
  3636. height: math.unit(2 / 3.367, "meter"),
  3637. name: "Genitals",
  3638. image: {
  3639. source: "./media/characters/elbial/genitals.svg"
  3640. }
  3641. },
  3642. },
  3643. [
  3644. {
  3645. name: "Large",
  3646. height: math.unit(100, "feet")
  3647. },
  3648. {
  3649. name: "Macro",
  3650. height: math.unit(500, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(10, "miles")
  3656. },
  3657. {
  3658. name: "Gigamacro",
  3659. height: math.unit(25000, "miles")
  3660. },
  3661. {
  3662. name: "Full-Size",
  3663. height: math.unit(8000000, "gigaparsecs")
  3664. }
  3665. ]
  3666. ))
  3667. characterMakers.push(() => makeCharacter(
  3668. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3669. {
  3670. front: {
  3671. height: math.unit(2, "meter"),
  3672. weight: math.unit(60, "kg"),
  3673. name: "Front",
  3674. image: {
  3675. source: "./media/characters/noah/front.svg"
  3676. }
  3677. },
  3678. talons: {
  3679. height: math.unit(0.315, "meter"),
  3680. name: "Talons",
  3681. image: {
  3682. source: "./media/characters/noah/talons.svg"
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Large",
  3689. height: math.unit(50, "feet")
  3690. },
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(750, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Megamacro",
  3698. height: math.unit(50, "miles")
  3699. },
  3700. {
  3701. name: "Gigamacro",
  3702. height: math.unit(100000, "miles")
  3703. },
  3704. {
  3705. name: "Full-Size",
  3706. height: math.unit(3000000000, "miles")
  3707. }
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(80, "kg"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/natalya/front.svg"
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(80, "kg"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/natalya/back.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Normal",
  3733. height: math.unit(150, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(5, "miles")
  3739. },
  3740. {
  3741. name: "Full-Size",
  3742. height: math.unit(600, "kiloparsecs")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(50, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/erestrebah/front.svg",
  3755. extra: 1262/1162,
  3756. bottom: 96/1358
  3757. }
  3758. },
  3759. back: {
  3760. height: math.unit(2, "meter"),
  3761. weight: math.unit(50, "kg"),
  3762. name: "Back",
  3763. image: {
  3764. source: "./media/characters/erestrebah/back.svg",
  3765. extra: 1257/1139,
  3766. bottom: 13/1270
  3767. }
  3768. },
  3769. wing: {
  3770. height: math.unit(2, "meter"),
  3771. weight: math.unit(50, "kg"),
  3772. name: "Wing",
  3773. image: {
  3774. source: "./media/characters/erestrebah/wing.svg",
  3775. extra: 1262/1162,
  3776. bottom: 96/1358
  3777. }
  3778. },
  3779. mouth: {
  3780. height: math.unit(0.39, "feet"),
  3781. name: "Mouth",
  3782. image: {
  3783. source: "./media/characters/erestrebah/mouth.svg"
  3784. }
  3785. }
  3786. },
  3787. [
  3788. {
  3789. name: "Normal",
  3790. height: math.unit(10, "feet")
  3791. },
  3792. {
  3793. name: "Large",
  3794. height: math.unit(50, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro",
  3799. height: math.unit(300, "feet")
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(750, "feet")
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(3, "miles")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(80, "kg"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/jennifer/front.svg",
  3820. bottom: 0.11,
  3821. extra: 1.16
  3822. }
  3823. },
  3824. frontAlt: {
  3825. height: math.unit(2, "meter"),
  3826. weight: math.unit(80, "kg"),
  3827. name: "Front (Alt)",
  3828. image: {
  3829. source: "./media/characters/jennifer/front-alt.svg"
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Canon Height",
  3836. height: math.unit(120, "feet"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Macro+",
  3841. height: math.unit(300, "feet")
  3842. },
  3843. {
  3844. name: "Megamacro",
  3845. height: math.unit(20000, "feet")
  3846. }
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3851. {
  3852. front: {
  3853. height: math.unit(2, "meter"),
  3854. weight: math.unit(50, "kg"),
  3855. name: "Front",
  3856. image: {
  3857. source: "./media/characters/kalista/front.svg",
  3858. extra: 1314/1145,
  3859. bottom: 101/1415
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(50, "kg"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/kalista/back.svg",
  3868. extra: 1366 / 1156,
  3869. bottom: 33.9 / 1362.78
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Uncomfortably Small",
  3876. height: math.unit(10, "feet")
  3877. },
  3878. {
  3879. name: "Small",
  3880. height: math.unit(30, "feet")
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(100, "feet"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Macro+",
  3889. height: math.unit(2000, "feet")
  3890. },
  3891. {
  3892. name: "True Form",
  3893. height: math.unit(8924, "miles")
  3894. }
  3895. ]
  3896. ))
  3897. characterMakers.push(() => makeCharacter(
  3898. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3899. {
  3900. front: {
  3901. height: math.unit(2, "meter"),
  3902. weight: math.unit(120, "kg"),
  3903. name: "Front",
  3904. image: {
  3905. source: "./media/characters/ggv/front.svg"
  3906. }
  3907. },
  3908. side: {
  3909. height: math.unit(2, "meter"),
  3910. weight: math.unit(120, "kg"),
  3911. name: "Side",
  3912. image: {
  3913. source: "./media/characters/ggv/side.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Extremely Puny",
  3920. height: math.unit(9 + 5 / 12, "feet")
  3921. },
  3922. {
  3923. name: "Horribly Small",
  3924. height: math.unit(47.7, "miles"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Reasonably Sized",
  3929. height: math.unit(25000, "parsecs")
  3930. },
  3931. {
  3932. name: "Slightly Uncompressed",
  3933. height: math.unit(7.77e31, "parsecs")
  3934. },
  3935. {
  3936. name: "Omniversal",
  3937. height: math.unit(1e300, "meters")
  3938. },
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3943. {
  3944. front: {
  3945. height: math.unit(2, "meter"),
  3946. weight: math.unit(75, "lb"),
  3947. name: "Front",
  3948. image: {
  3949. source: "./media/characters/napalm/front.svg"
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(75, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/napalm/back.svg"
  3958. }
  3959. }
  3960. },
  3961. [
  3962. {
  3963. name: "Standard",
  3964. height: math.unit(55, "feet"),
  3965. default: true
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/asana/front.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. back: {
  3983. height: math.unit(7 + 5 / 6, "feet"),
  3984. weight: math.unit(325, "lb"),
  3985. name: "Back",
  3986. image: {
  3987. source: "./media/characters/asana/back.svg",
  3988. extra: 1114 / 1043,
  3989. bottom: 5 / 1120
  3990. }
  3991. },
  3992. dressedDark: {
  3993. height: math.unit(7 + 5 / 6, "feet"),
  3994. weight: math.unit(325, "lb"),
  3995. name: "Dressed (Dark)",
  3996. image: {
  3997. source: "./media/characters/asana/dressed-dark.svg",
  3998. extra: 1133 / 1060,
  3999. bottom: 15.2 / 1148.6
  4000. }
  4001. },
  4002. dressedLight: {
  4003. height: math.unit(7 + 5 / 6, "feet"),
  4004. weight: math.unit(325, "lb"),
  4005. name: "Dressed (Light)",
  4006. image: {
  4007. source: "./media/characters/asana/dressed-light.svg",
  4008. extra: 1133 / 1060,
  4009. bottom: 15.2 / 1148.6
  4010. }
  4011. },
  4012. },
  4013. [
  4014. {
  4015. name: "Standard",
  4016. height: math.unit(7 + 5 / 6, "feet"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Large",
  4021. height: math.unit(10, "meters")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(2500, "meters")
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(5e6, "meters")
  4030. },
  4031. {
  4032. name: "Examacro",
  4033. height: math.unit(5e12, "lightyears")
  4034. },
  4035. {
  4036. name: "Max Size",
  4037. height: math.unit(1e31, "lightyears")
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(2, "meter"),
  4046. weight: math.unit(60, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/ebony/front.svg",
  4050. bottom: 0.03,
  4051. extra: 1045 / 810 + 0.03
  4052. }
  4053. },
  4054. side: {
  4055. height: math.unit(2, "meter"),
  4056. weight: math.unit(60, "kg"),
  4057. name: "Side",
  4058. image: {
  4059. source: "./media/characters/ebony/side.svg",
  4060. bottom: 0.03,
  4061. extra: 1045 / 810 + 0.03
  4062. }
  4063. },
  4064. back: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(60, "kg"),
  4067. name: "Back",
  4068. image: {
  4069. source: "./media/characters/ebony/back.svg",
  4070. bottom: 0.01,
  4071. extra: 1045 / 810 + 0.01
  4072. }
  4073. },
  4074. },
  4075. [
  4076. // TODO check why I did this lol
  4077. {
  4078. name: "Standard",
  4079. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(200, "feet")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(13000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(175, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/mountain/front.svg",
  4101. extra: 972 / 955,
  4102. bottom: 64 / 1036.6
  4103. }
  4104. },
  4105. back: {
  4106. height: math.unit(6, "feet"),
  4107. weight: math.unit(175, "lb"),
  4108. name: "Back",
  4109. image: {
  4110. source: "./media/characters/mountain/back.svg",
  4111. extra: 970 / 950,
  4112. bottom: 28.25 / 999
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Large",
  4119. height: math.unit(20, "meters")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(300, "meters")
  4124. },
  4125. {
  4126. name: "Gigamacro",
  4127. height: math.unit(10000, "km"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Examacro",
  4132. height: math.unit(10e9, "lightyears")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(8, "feet"),
  4141. weight: math.unit(500, "lb"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/rick/front.svg"
  4145. }
  4146. }
  4147. },
  4148. [
  4149. {
  4150. name: "Normal",
  4151. height: math.unit(8, "feet"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "Macro",
  4156. height: math.unit(5, "km")
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4162. {
  4163. front: {
  4164. height: math.unit(8, "feet"),
  4165. weight: math.unit(120, "lb"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/ona/front.svg"
  4169. }
  4170. },
  4171. frontAlt: {
  4172. height: math.unit(8, "feet"),
  4173. weight: math.unit(120, "lb"),
  4174. name: "Front (Alt)",
  4175. image: {
  4176. source: "./media/characters/ona/front-alt.svg"
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(8, "feet"),
  4181. weight: math.unit(120, "lb"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/ona/back.svg"
  4185. }
  4186. },
  4187. foot: {
  4188. height: math.unit(1.1, "feet"),
  4189. name: "Foot",
  4190. image: {
  4191. source: "./media/characters/ona/foot.svg"
  4192. }
  4193. }
  4194. },
  4195. [
  4196. {
  4197. name: "Megamacro",
  4198. height: math.unit(70, "km"),
  4199. default: true
  4200. },
  4201. {
  4202. name: "Gigamacro",
  4203. height: math.unit(681818, "miles")
  4204. },
  4205. {
  4206. name: "Examacro",
  4207. height: math.unit(3800000, "lightyears")
  4208. },
  4209. ]
  4210. ))
  4211. characterMakers.push(() => makeCharacter(
  4212. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4213. {
  4214. front: {
  4215. height: math.unit(12, "feet"),
  4216. weight: math.unit(3000, "lb"),
  4217. name: "Front",
  4218. image: {
  4219. source: "./media/characters/mech/front.svg",
  4220. extra: 2900 / 2770,
  4221. bottom: 110 / 3010
  4222. }
  4223. },
  4224. back: {
  4225. height: math.unit(12, "feet"),
  4226. weight: math.unit(3000, "lb"),
  4227. name: "Back",
  4228. image: {
  4229. source: "./media/characters/mech/back.svg",
  4230. extra: 3011 / 2890,
  4231. bottom: 94 / 3105
  4232. }
  4233. },
  4234. maw: {
  4235. height: math.unit(3.07, "feet"),
  4236. name: "Maw",
  4237. image: {
  4238. source: "./media/characters/mech/maw.svg"
  4239. }
  4240. },
  4241. head: {
  4242. height: math.unit(2.82, "feet"),
  4243. name: "Head",
  4244. image: {
  4245. source: "./media/characters/mech/head.svg"
  4246. }
  4247. },
  4248. dick: {
  4249. height: math.unit(1.43, "feet"),
  4250. name: "Dick",
  4251. image: {
  4252. source: "./media/characters/mech/dick.svg"
  4253. }
  4254. },
  4255. },
  4256. [
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(12, "feet")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(300, "feet"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Macro+",
  4268. height: math.unit(1500, "feet")
  4269. },
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(1.3, "meter"),
  4277. weight: math.unit(30, "kg"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/gregory/front.svg",
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Normal",
  4287. height: math.unit(1.3, "meter"),
  4288. default: true
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(20, "meter")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(2.8, "meter"),
  4301. weight: math.unit(200, "kg"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/elory/front.svg",
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(2.8, "meter"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(38, "meter")
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4322. {
  4323. front: {
  4324. height: math.unit(470, "feet"),
  4325. weight: math.unit(924, "tons"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/angelpatamon/front.svg",
  4329. }
  4330. }
  4331. },
  4332. [
  4333. {
  4334. name: "Normal",
  4335. height: math.unit(470, "feet"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Deity Size I",
  4340. height: math.unit(28651.2, "km")
  4341. },
  4342. {
  4343. name: "Deity Size II",
  4344. height: math.unit(171907.2, "km")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4350. {
  4351. side: {
  4352. height: math.unit(7.2, "meter"),
  4353. weight: math.unit(8.2, "tons"),
  4354. name: "Side",
  4355. image: {
  4356. source: "./media/characters/cryae/side.svg",
  4357. extra: 3500 / 1500
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(7.2, "meter"),
  4365. default: true
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(6, "feet"),
  4374. weight: math.unit(175, "lb"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/xera/front.svg",
  4378. extra: 2377 / 1972,
  4379. bottom: 75.5 / 2452
  4380. }
  4381. },
  4382. side: {
  4383. height: math.unit(6, "feet"),
  4384. weight: math.unit(175, "lb"),
  4385. name: "Side",
  4386. image: {
  4387. source: "./media/characters/xera/side.svg",
  4388. extra: 2345 / 2019,
  4389. bottom: 39.7 / 2384
  4390. }
  4391. },
  4392. back: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(175, "lb"),
  4395. name: "Back",
  4396. image: {
  4397. source: "./media/characters/xera/back.svg",
  4398. extra: 2095 / 1984,
  4399. bottom: 67 / 2166
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Small",
  4406. height: math.unit(10, "feet")
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Macro+",
  4415. height: math.unit(10, "km")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(25000, "km")
  4420. },
  4421. {
  4422. name: "Teramacro",
  4423. height: math.unit(3e6, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(175, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/nebula/front.svg",
  4436. extra: 2566 / 2362,
  4437. bottom: 81 / 2644
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Small",
  4444. height: math.unit(4.5, "meters")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(1500, "meters"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Megamacro",
  4453. height: math.unit(150, "km")
  4454. },
  4455. {
  4456. name: "Gigamacro",
  4457. height: math.unit(27000, "km")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(225, "lb"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/abysgar/front.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Small",
  4476. height: math.unit(4.5, "meters")
  4477. },
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(1250, "meters"),
  4481. default: true
  4482. },
  4483. {
  4484. name: "Megamacro",
  4485. height: math.unit(125, "km")
  4486. },
  4487. {
  4488. name: "Gigamacro",
  4489. height: math.unit(26000, "km")
  4490. }
  4491. ]
  4492. ))
  4493. characterMakers.push(() => makeCharacter(
  4494. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4495. {
  4496. front: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(180, "lb"),
  4499. name: "Front",
  4500. image: {
  4501. source: "./media/characters/yakuz/front.svg"
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Small",
  4508. height: math.unit(5, "meters")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(1500, "meters"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(200, "km")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(100000, "km")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(6, "feet"),
  4530. weight: math.unit(175, "lb"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/mirova/front.svg",
  4534. extra: 3334 / 3071,
  4535. bottom: 42 / 3375.6
  4536. }
  4537. }
  4538. },
  4539. [
  4540. {
  4541. name: "Small",
  4542. height: math.unit(5, "meters")
  4543. },
  4544. {
  4545. name: "Macro",
  4546. height: math.unit(900, "meters"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Megamacro",
  4551. height: math.unit(135, "km")
  4552. },
  4553. {
  4554. name: "Gigamacro",
  4555. height: math.unit(20000, "km")
  4556. }
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4561. {
  4562. side: {
  4563. height: math.unit(28.35, "feet"),
  4564. weight: math.unit(99.75, "tons"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/asana-mech/side.svg",
  4568. extra: 923 / 699,
  4569. bottom: 50 / 975
  4570. }
  4571. },
  4572. chaingun: {
  4573. height: math.unit(7, "feet"),
  4574. weight: math.unit(2400, "lb"),
  4575. name: "Chaingun",
  4576. image: {
  4577. source: "./media/characters/asana-mech/chaingun.svg"
  4578. }
  4579. },
  4580. laser: {
  4581. height: math.unit(7.12, "feet"),
  4582. weight: math.unit(2000, "lb"),
  4583. name: "Laser",
  4584. image: {
  4585. source: "./media/characters/asana-mech/laser.svg"
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(28.35, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Macro",
  4597. height: math.unit(2500, "feet")
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(25, "miles")
  4602. },
  4603. {
  4604. name: "Examacro",
  4605. height: math.unit(6e8, "lightyears")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/asche/front.svg",
  4618. extra: 1258 / 1190,
  4619. bottom: 47 / 1305
  4620. }
  4621. },
  4622. frontUnderwear: {
  4623. height: math.unit(5, "meters"),
  4624. weight: math.unit(1000, "kg"),
  4625. name: "Front (Underwear)",
  4626. image: {
  4627. source: "./media/characters/asche/front-underwear.svg",
  4628. extra: 1258 / 1190,
  4629. bottom: 47 / 1305
  4630. }
  4631. },
  4632. frontDressed: {
  4633. height: math.unit(5, "meters"),
  4634. weight: math.unit(1000, "kg"),
  4635. name: "Front (Dressed)",
  4636. image: {
  4637. source: "./media/characters/asche/front-dressed.svg",
  4638. extra: 1258 / 1190,
  4639. bottom: 47 / 1305
  4640. }
  4641. },
  4642. frontArmor: {
  4643. height: math.unit(5, "meters"),
  4644. weight: math.unit(1000, "kg"),
  4645. name: "Front (Armored)",
  4646. image: {
  4647. source: "./media/characters/asche/front-armored.svg",
  4648. extra: 1374 / 1308,
  4649. bottom: 23 / 1397
  4650. }
  4651. },
  4652. mp724: {
  4653. height: math.unit(0.96, "meters"),
  4654. weight: math.unit(38, "kg"),
  4655. name: "H&K MP724",
  4656. image: {
  4657. source: "./media/characters/asche/h&k-mp724.svg"
  4658. }
  4659. },
  4660. side: {
  4661. height: math.unit(5, "meters"),
  4662. weight: math.unit(1000, "kg"),
  4663. name: "Side",
  4664. image: {
  4665. source: "./media/characters/asche/side.svg",
  4666. extra: 1717 / 1609,
  4667. bottom: 0.005
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(5, "meters"),
  4672. weight: math.unit(1000, "kg"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/asche/back.svg",
  4676. extra: 1570 / 1501
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "DEFCON 5",
  4683. height: math.unit(5, "meters")
  4684. },
  4685. {
  4686. name: "DEFCON 4",
  4687. height: math.unit(500, "meters"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "DEFCON 3",
  4692. height: math.unit(5, "km")
  4693. },
  4694. {
  4695. name: "DEFCON 2",
  4696. height: math.unit(500, "km")
  4697. },
  4698. {
  4699. name: "DEFCON 1",
  4700. height: math.unit(500000, "km")
  4701. },
  4702. {
  4703. name: "DEFCON 0",
  4704. height: math.unit(3, "gigaparsecs")
  4705. },
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(2, "meters"),
  4713. weight: math.unit(76, "kg"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/gale/front.svg"
  4717. }
  4718. },
  4719. frontAlt1: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(76, "kg"),
  4722. name: "Front (Alt 1)",
  4723. image: {
  4724. source: "./media/characters/gale/front-alt-1.svg"
  4725. }
  4726. },
  4727. frontAlt2: {
  4728. height: math.unit(2, "meters"),
  4729. weight: math.unit(76, "kg"),
  4730. name: "Front (Alt 2)",
  4731. image: {
  4732. source: "./media/characters/gale/front-alt-2.svg"
  4733. }
  4734. },
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(7, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Macro+",
  4748. height: math.unit(300, "feet")
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(5 + 10/12, "feet"),
  4757. weight: math.unit(67, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/draylen/front.svg",
  4761. extra: 832/777,
  4762. bottom: 85/917
  4763. }
  4764. }
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5 + 10/12, "feet")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(150, "feet"),
  4774. default: true
  4775. }
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4780. {
  4781. front: {
  4782. height: math.unit(7 + 9 / 12, "feet"),
  4783. weight: math.unit(379, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/chez/front.svg"
  4787. }
  4788. },
  4789. side: {
  4790. height: math.unit(7 + 9 / 12, "feet"),
  4791. weight: math.unit(379, "lbs"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/chez/side.svg"
  4795. }
  4796. }
  4797. },
  4798. [
  4799. {
  4800. name: "Normal",
  4801. height: math.unit(7 + 9 / 12, "feet"),
  4802. default: true
  4803. },
  4804. {
  4805. name: "God King",
  4806. height: math.unit(9750000, "meters")
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4812. {
  4813. front: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(275, "lbs"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/kaylum/front.svg",
  4819. bottom: 0.01,
  4820. extra: 1166 / 1031
  4821. }
  4822. },
  4823. frontWingless: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(275, "lbs"),
  4826. name: "Front (Wingless)",
  4827. image: {
  4828. source: "./media/characters/kaylum/front-wingless.svg",
  4829. bottom: 0.01,
  4830. extra: 1117 / 1031
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(3.05, "meters")
  4838. },
  4839. {
  4840. name: "Master",
  4841. height: math.unit(5.5, "meters")
  4842. },
  4843. {
  4844. name: "Rampage",
  4845. height: math.unit(19, "meters")
  4846. },
  4847. {
  4848. name: "Macro Lite",
  4849. height: math.unit(37, "meters")
  4850. },
  4851. {
  4852. name: "Hyper Predator",
  4853. height: math.unit(61, "meters")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(138, "meters"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(5 + 5 / 12, "feet"),
  4867. weight: math.unit(120, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/geta/front.svg",
  4871. extra: 1003/933,
  4872. bottom: 21/1024
  4873. }
  4874. },
  4875. paw: {
  4876. height: math.unit(0.35, "feet"),
  4877. name: "Paw",
  4878. image: {
  4879. source: "./media/characters/geta/paw.svg"
  4880. }
  4881. },
  4882. },
  4883. [
  4884. {
  4885. name: "Micro",
  4886. height: math.unit(3, "inches"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Normal",
  4891. height: math.unit(5 + 5 / 12, "feet")
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(6, "feet"),
  4900. weight: math.unit(300, "lbs"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/tyrnn/front.svg"
  4904. }
  4905. }
  4906. },
  4907. [
  4908. {
  4909. name: "Main Height",
  4910. height: math.unit(355, "feet"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Fave. Height",
  4915. height: math.unit(2400, "feet")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(300, "lbs"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/appledectomy/front.svg"
  4928. }
  4929. }
  4930. },
  4931. [
  4932. {
  4933. name: "Macro",
  4934. height: math.unit(2500, "feet")
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(50, "miles"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(5000, "miles")
  4944. },
  4945. {
  4946. name: "Teramacro",
  4947. height: math.unit(250000, "miles")
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(200, "lbs"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/vulpes/front.svg",
  4960. extra: 573 / 543,
  4961. bottom: 0.033
  4962. }
  4963. },
  4964. side: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(200, "lbs"),
  4967. name: "Side",
  4968. image: {
  4969. source: "./media/characters/vulpes/side.svg",
  4970. extra: 577 / 549,
  4971. bottom: 11 / 588
  4972. }
  4973. },
  4974. back: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(200, "lbs"),
  4977. name: "Back",
  4978. image: {
  4979. source: "./media/characters/vulpes/back.svg",
  4980. extra: 573 / 549,
  4981. bottom: 20 / 593
  4982. }
  4983. },
  4984. feet: {
  4985. height: math.unit(1.276, "feet"),
  4986. name: "Feet",
  4987. image: {
  4988. source: "./media/characters/vulpes/feet.svg"
  4989. }
  4990. },
  4991. maw: {
  4992. height: math.unit(1.18, "feet"),
  4993. name: "Maw",
  4994. image: {
  4995. source: "./media/characters/vulpes/maw.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Micro",
  5002. height: math.unit(2, "inches")
  5003. },
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(6.3, "feet")
  5007. },
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(850, "feet")
  5011. },
  5012. {
  5013. name: "Megamacro",
  5014. height: math.unit(7500, "feet"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Gigamacro",
  5019. height: math.unit(570000, "miles")
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(210, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/rain-fallen/front.svg"
  5032. }
  5033. },
  5034. side: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(210, "lbs"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/rain-fallen/side.svg"
  5040. }
  5041. },
  5042. back: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(210, "lbs"),
  5045. name: "Back",
  5046. image: {
  5047. source: "./media/characters/rain-fallen/back.svg"
  5048. }
  5049. },
  5050. feral: {
  5051. height: math.unit(9, "feet"),
  5052. weight: math.unit(700, "lbs"),
  5053. name: "Feral",
  5054. image: {
  5055. source: "./media/characters/rain-fallen/feral.svg"
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Meddling with Mortals",
  5062. height: math.unit(8 + 8/12, "feet")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5, "meter")
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(150, "meter"),
  5071. default: true
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(278e6, "meter")
  5076. },
  5077. {
  5078. name: "Gigamacro",
  5079. height: math.unit(2e9, "meter")
  5080. },
  5081. {
  5082. name: "Teramacro",
  5083. height: math.unit(8e12, "meter")
  5084. },
  5085. {
  5086. name: "Devourer",
  5087. height: math.unit(14, "zettameters")
  5088. },
  5089. {
  5090. name: "Scarlet King",
  5091. height: math.unit(18, "yottameters")
  5092. },
  5093. {
  5094. name: "Void",
  5095. height: math.unit(1e88, "yottameters")
  5096. }
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5101. {
  5102. standing: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(180, "lbs"),
  5105. name: "Standing",
  5106. image: {
  5107. source: "./media/characters/zaakira/standing.svg",
  5108. extra: 1599/1504,
  5109. bottom: 39/1638
  5110. }
  5111. },
  5112. laying: {
  5113. height: math.unit(3, "feet"),
  5114. weight: math.unit(180, "lbs"),
  5115. name: "Laying",
  5116. image: {
  5117. source: "./media/characters/zaakira/laying.svg"
  5118. }
  5119. },
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(12, "feet")
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(279, "feet"),
  5129. default: true
  5130. }
  5131. ]
  5132. ))
  5133. characterMakers.push(() => makeCharacter(
  5134. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5135. {
  5136. femSfw: {
  5137. height: math.unit(8, "feet"),
  5138. weight: math.unit(350, "lb"),
  5139. name: "Fem",
  5140. image: {
  5141. source: "./media/characters/sigvald/fem-sfw.svg",
  5142. extra: 182 / 164,
  5143. bottom: 8.7 / 190.5
  5144. }
  5145. },
  5146. femNsfw: {
  5147. height: math.unit(8, "feet"),
  5148. weight: math.unit(350, "lb"),
  5149. name: "Fem (NSFW)",
  5150. image: {
  5151. source: "./media/characters/sigvald/fem-nsfw.svg",
  5152. extra: 182 / 164,
  5153. bottom: 8.7 / 190.5
  5154. }
  5155. },
  5156. maleNsfw: {
  5157. height: math.unit(8, "feet"),
  5158. weight: math.unit(350, "lb"),
  5159. name: "Male (NSFW)",
  5160. image: {
  5161. source: "./media/characters/sigvald/male-nsfw.svg",
  5162. extra: 182 / 164,
  5163. bottom: 8.7 / 190.5
  5164. }
  5165. },
  5166. hermNsfw: {
  5167. height: math.unit(8, "feet"),
  5168. weight: math.unit(350, "lb"),
  5169. name: "Herm (NSFW)",
  5170. image: {
  5171. source: "./media/characters/sigvald/herm-nsfw.svg",
  5172. extra: 182 / 164,
  5173. bottom: 8.7 / 190.5
  5174. }
  5175. },
  5176. dick: {
  5177. height: math.unit(2.36, "feet"),
  5178. name: "Dick",
  5179. image: {
  5180. source: "./media/characters/sigvald/dick.svg"
  5181. }
  5182. },
  5183. eye: {
  5184. height: math.unit(0.31, "feet"),
  5185. name: "Eye",
  5186. image: {
  5187. source: "./media/characters/sigvald/eye.svg"
  5188. }
  5189. },
  5190. mouth: {
  5191. height: math.unit(0.92, "feet"),
  5192. name: "Mouth",
  5193. image: {
  5194. source: "./media/characters/sigvald/mouth.svg"
  5195. }
  5196. },
  5197. paws: {
  5198. height: math.unit(2.2, "feet"),
  5199. name: "Paws",
  5200. image: {
  5201. source: "./media/characters/sigvald/paws.svg"
  5202. }
  5203. }
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(8, "feet")
  5209. },
  5210. {
  5211. name: "Large",
  5212. height: math.unit(12, "feet")
  5213. },
  5214. {
  5215. name: "Larger",
  5216. height: math.unit(20, "feet")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(150, "feet")
  5221. },
  5222. {
  5223. name: "Macro+",
  5224. height: math.unit(200, "feet"),
  5225. default: true
  5226. },
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5231. {
  5232. side: {
  5233. height: math.unit(12, "feet"),
  5234. weight: math.unit(2000, "kg"),
  5235. name: "Side",
  5236. image: {
  5237. source: "./media/characters/scott/side.svg",
  5238. extra: 754 / 724,
  5239. bottom: 0.069
  5240. }
  5241. },
  5242. upright: {
  5243. height: math.unit(12, "feet"),
  5244. weight: math.unit(2000, "kg"),
  5245. name: "Upright",
  5246. image: {
  5247. source: "./media/characters/scott/upright.svg",
  5248. extra: 3881 / 3722,
  5249. bottom: 0.05
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(12, "feet"),
  5257. default: true
  5258. },
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5263. {
  5264. side: {
  5265. height: math.unit(8, "meters"),
  5266. weight: math.unit(84755, "lbs"),
  5267. name: "Side",
  5268. image: {
  5269. source: "./media/characters/tobias/side.svg",
  5270. extra: 1474 / 1096,
  5271. bottom: 38.9 / 1513.1235
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "Normal",
  5278. height: math.unit(8, "meters"),
  5279. default: true
  5280. },
  5281. ]
  5282. ))
  5283. characterMakers.push(() => makeCharacter(
  5284. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5285. {
  5286. front: {
  5287. height: math.unit(5.5, "feet"),
  5288. weight: math.unit(400, "lbs"),
  5289. name: "Front",
  5290. image: {
  5291. source: "./media/characters/kieran/front.svg",
  5292. extra: 2694 / 2364,
  5293. bottom: 217 / 2908
  5294. }
  5295. },
  5296. side: {
  5297. height: math.unit(5.5, "feet"),
  5298. weight: math.unit(400, "lbs"),
  5299. name: "Side",
  5300. image: {
  5301. source: "./media/characters/kieran/side.svg",
  5302. extra: 875 / 777,
  5303. bottom: 84.6 / 959
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(5.5, "feet"),
  5311. default: true
  5312. },
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5317. {
  5318. side: {
  5319. height: math.unit(2, "meters"),
  5320. weight: math.unit(70, "kg"),
  5321. name: "Side",
  5322. image: {
  5323. source: "./media/characters/sanya/side.svg",
  5324. bottom: 0.02,
  5325. extra: 1.02
  5326. }
  5327. },
  5328. },
  5329. [
  5330. {
  5331. name: "Small",
  5332. height: math.unit(2, "meters")
  5333. },
  5334. {
  5335. name: "Normal",
  5336. height: math.unit(3, "meters")
  5337. },
  5338. {
  5339. name: "Macro",
  5340. height: math.unit(16, "meters"),
  5341. default: true
  5342. },
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5347. {
  5348. front: {
  5349. height: math.unit(2, "meters"),
  5350. weight: math.unit(120, "kg"),
  5351. name: "Front",
  5352. image: {
  5353. source: "./media/characters/miranda/front.svg",
  5354. extra: 195 / 185,
  5355. bottom: 10.9 / 206.5
  5356. }
  5357. },
  5358. back: {
  5359. height: math.unit(2, "meters"),
  5360. weight: math.unit(120, "kg"),
  5361. name: "Back",
  5362. image: {
  5363. source: "./media/characters/miranda/back.svg",
  5364. extra: 201 / 193,
  5365. bottom: 2.3 / 203.7
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(10, "feet"),
  5373. default: true
  5374. }
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "James", species: ["deer"], tags: ["anthro"] },
  5379. {
  5380. side: {
  5381. height: math.unit(2, "meters"),
  5382. weight: math.unit(100, "kg"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/james/front.svg",
  5386. extra: 10 / 8.5
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(8.5, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5400. {
  5401. side: {
  5402. height: math.unit(9.5, "feet"),
  5403. weight: math.unit(2500, "lbs"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/heather/side.svg"
  5407. }
  5408. },
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(9.5, "feet"),
  5414. default: true
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5420. {
  5421. side: {
  5422. height: math.unit(6.5, "feet"),
  5423. weight: math.unit(400, "lbs"),
  5424. name: "Side",
  5425. image: {
  5426. source: "./media/characters/lukas/side.svg",
  5427. extra: 7.25 / 6.5
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Normal",
  5434. height: math.unit(6.5, "feet"),
  5435. default: true
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5441. {
  5442. side: {
  5443. height: math.unit(5, "feet"),
  5444. weight: math.unit(3000, "lbs"),
  5445. name: "Side",
  5446. image: {
  5447. source: "./media/characters/louise/side.svg"
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(5, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5461. {
  5462. side: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(150, "lbs"),
  5465. name: "Side",
  5466. image: {
  5467. source: "./media/characters/ramona/side.svg",
  5468. extra: 871/854,
  5469. bottom: 41/912
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(5.3, "meters"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Macro",
  5481. height: math.unit(20, "stories")
  5482. },
  5483. {
  5484. name: "Macro+",
  5485. height: math.unit(50, "stories")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5491. {
  5492. standing: {
  5493. height: math.unit(5.75, "feet"),
  5494. weight: math.unit(160, "lbs"),
  5495. name: "Standing",
  5496. image: {
  5497. source: "./media/characters/deerpuff/standing.svg",
  5498. extra: 682 / 624
  5499. }
  5500. },
  5501. sitting: {
  5502. height: math.unit(5.75 / 1.79, "feet"),
  5503. weight: math.unit(160, "lbs"),
  5504. name: "Sitting",
  5505. image: {
  5506. source: "./media/characters/deerpuff/sitting.svg",
  5507. bottom: 44 / 400,
  5508. extra: 1
  5509. }
  5510. },
  5511. taurLaying: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(400, "lbs"),
  5514. name: "Taur (Laying)",
  5515. image: {
  5516. source: "./media/characters/deerpuff/taur-laying.svg"
  5517. }
  5518. },
  5519. },
  5520. [
  5521. {
  5522. name: "Puffball",
  5523. height: math.unit(6, "inches")
  5524. },
  5525. {
  5526. name: "Normalpuff",
  5527. height: math.unit(5.75, "feet")
  5528. },
  5529. {
  5530. name: "Macropuff",
  5531. height: math.unit(1500, "feet"),
  5532. default: true
  5533. },
  5534. {
  5535. name: "Megapuff",
  5536. height: math.unit(500, "miles")
  5537. },
  5538. {
  5539. name: "Gigapuff",
  5540. height: math.unit(250000, "miles")
  5541. },
  5542. {
  5543. name: "Omegapuff",
  5544. height: math.unit(1000, "lightyears")
  5545. },
  5546. ]
  5547. ))
  5548. characterMakers.push(() => makeCharacter(
  5549. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5550. {
  5551. stomping: {
  5552. height: math.unit(6, "feet"),
  5553. weight: math.unit(170, "lbs"),
  5554. name: "Stomping",
  5555. image: {
  5556. source: "./media/characters/vivian/stomping.svg"
  5557. }
  5558. },
  5559. sitting: {
  5560. height: math.unit(6 / 1.75, "feet"),
  5561. weight: math.unit(170, "lbs"),
  5562. name: "Sitting",
  5563. image: {
  5564. source: "./media/characters/vivian/sitting.svg",
  5565. bottom: 1 / 6.4,
  5566. extra: 1,
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(7, "feet"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "Macro",
  5578. height: math.unit(10, "stories")
  5579. },
  5580. {
  5581. name: "Macro+",
  5582. height: math.unit(30, "stories")
  5583. },
  5584. {
  5585. name: "Megamacro",
  5586. height: math.unit(10, "miles")
  5587. },
  5588. {
  5589. name: "Megamacro+",
  5590. height: math.unit(2750000, "meters")
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(6, "feet"),
  5599. weight: math.unit(160, "lbs"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/prince/front.svg",
  5603. extra: 3400 / 3000
  5604. }
  5605. },
  5606. jumping: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(160, "lbs"),
  5609. name: "Jumping",
  5610. image: {
  5611. source: "./media/characters/prince/jump.svg",
  5612. extra: 2555 / 2134
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(7.75, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Not cute",
  5624. height: math.unit(17, "feet")
  5625. },
  5626. {
  5627. name: "I said NOT",
  5628. height: math.unit(91, "feet")
  5629. },
  5630. {
  5631. name: "Please stop",
  5632. height: math.unit(560, "feet")
  5633. },
  5634. {
  5635. name: "What have you done",
  5636. height: math.unit(2200, "feet")
  5637. },
  5638. {
  5639. name: "Deer God",
  5640. height: math.unit(3.6, "miles")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5646. {
  5647. standing: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(300, "lbs"),
  5650. name: "Standing",
  5651. image: {
  5652. source: "./media/characters/psymon/standing.svg",
  5653. extra: 1888 / 1810,
  5654. bottom: 0.05
  5655. }
  5656. },
  5657. slithering: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(300, "lbs"),
  5660. name: "Slithering",
  5661. image: {
  5662. source: "./media/characters/psymon/slithering.svg",
  5663. extra: 1330 / 1224
  5664. }
  5665. },
  5666. slitheringAlt: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(300, "lbs"),
  5669. name: "Slithering (Alt)",
  5670. image: {
  5671. source: "./media/characters/psymon/slithering-alt.svg",
  5672. extra: 1330 / 1224
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(11.25, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Large",
  5684. height: math.unit(27, "feet")
  5685. },
  5686. {
  5687. name: "Giant",
  5688. height: math.unit(87, "feet")
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(365, "feet")
  5693. },
  5694. {
  5695. name: "Megamacro",
  5696. height: math.unit(3, "miles")
  5697. },
  5698. {
  5699. name: "World Serpent",
  5700. height: math.unit(8000, "miles")
  5701. },
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(180, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/daimos/front.svg",
  5713. extra: 4160 / 3897,
  5714. bottom: 0.021
  5715. }
  5716. }
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(8, "feet"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Big Dog",
  5726. height: math.unit(22, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(127, "feet")
  5731. },
  5732. {
  5733. name: "Megamacro",
  5734. height: math.unit(3600, "feet")
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5740. {
  5741. side: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(180, "lbs"),
  5744. name: "Side",
  5745. image: {
  5746. source: "./media/characters/blake/side.svg",
  5747. extra: 1212 / 1120,
  5748. bottom: 0.05
  5749. }
  5750. },
  5751. crouched: {
  5752. height: math.unit(6 * 0.57, "feet"),
  5753. weight: math.unit(180, "lbs"),
  5754. name: "Crouched",
  5755. image: {
  5756. source: "./media/characters/blake/crouched.svg",
  5757. extra: 840 / 587,
  5758. bottom: 0.04
  5759. }
  5760. },
  5761. bent: {
  5762. height: math.unit(6 * 0.75, "feet"),
  5763. weight: math.unit(180, "lbs"),
  5764. name: "Bent",
  5765. image: {
  5766. source: "./media/characters/blake/bent.svg",
  5767. extra: 592 / 544,
  5768. bottom: 0.035
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(8 + 1 / 6, "feet"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Big Backside",
  5780. height: math.unit(37, "feet")
  5781. },
  5782. {
  5783. name: "Subway Shredder",
  5784. height: math.unit(72, "feet")
  5785. },
  5786. {
  5787. name: "City Carver",
  5788. height: math.unit(1675, "feet")
  5789. },
  5790. {
  5791. name: "Tectonic Tweaker",
  5792. height: math.unit(2300, "miles")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(180, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/guisetto/front.svg",
  5805. extra: 856 / 817,
  5806. bottom: 0.06
  5807. }
  5808. },
  5809. airborne: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(180, "lbs"),
  5812. name: "Airborne",
  5813. image: {
  5814. source: "./media/characters/guisetto/airborne.svg",
  5815. extra: 584 / 525
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(10 + 11 / 12, "feet"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Large",
  5827. height: math.unit(35, "feet")
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(475, "feet")
  5832. },
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5837. {
  5838. front: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(180, "lbs"),
  5841. name: "Front",
  5842. image: {
  5843. source: "./media/characters/luxor/front.svg",
  5844. extra: 2940 / 2152
  5845. }
  5846. },
  5847. back: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(180, "lbs"),
  5850. name: "Back",
  5851. image: {
  5852. source: "./media/characters/luxor/back.svg",
  5853. extra: 1083 / 960
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Normal",
  5860. height: math.unit(5 + 5 / 6, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Lamp",
  5865. height: math.unit(50, "feet")
  5866. },
  5867. {
  5868. name: "Lämp",
  5869. height: math.unit(300, "feet")
  5870. },
  5871. {
  5872. name: "The sun is a lamp",
  5873. height: math.unit(250000, "miles")
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(50, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/huoyan/front.svg"
  5886. }
  5887. },
  5888. side: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(180, "lbs"),
  5891. name: "Side",
  5892. image: {
  5893. source: "./media/characters/huoyan/side.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Chef",
  5900. height: math.unit(9, "feet")
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(65, "feet"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(780, "feet")
  5910. },
  5911. {
  5912. name: "Flaming Mountain",
  5913. height: math.unit(4.8, "miles")
  5914. },
  5915. {
  5916. name: "Celestial",
  5917. height: math.unit(765000, "miles")
  5918. },
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(5 + 3 / 4, "feet"),
  5926. weight: math.unit(120, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/tails/front.svg"
  5930. }
  5931. }
  5932. },
  5933. [
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5 + 3 / 4, "feet"),
  5937. default: true
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(4, "feet"),
  5946. weight: math.unit(50, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/rainy/front.svg"
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Macro",
  5956. height: math.unit(800, "feet"),
  5957. default: true
  5958. }
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(150, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/rainier/front.svg"
  5970. }
  5971. }
  5972. },
  5973. [
  5974. {
  5975. name: "Micro",
  5976. height: math.unit(2, "mm"),
  5977. default: true
  5978. }
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5983. {
  5984. front: {
  5985. height: math.unit(8 + 4/12, "feet"),
  5986. weight: math.unit(450, "kilograms"),
  5987. volume: math.unit(5, "cups"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/andy-renard/front.svg",
  5991. extra: 1839/1726,
  5992. bottom: 134/1973
  5993. }
  5994. },
  5995. back: {
  5996. height: math.unit(8 + 4/12, "feet"),
  5997. weight: math.unit(450, "kilograms"),
  5998. volume: math.unit(5, "cups"),
  5999. name: "Back",
  6000. image: {
  6001. source: "./media/characters/andy-renard/back.svg",
  6002. extra: 1838/1710,
  6003. bottom: 105/1943
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Tall",
  6010. height: math.unit(8 + 4/12, "feet")
  6011. },
  6012. {
  6013. name: "Mini Macro",
  6014. height: math.unit(15, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(100, "feet")
  6020. },
  6021. {
  6022. name: "Mega Macro",
  6023. height: math.unit(1000, "feet")
  6024. },
  6025. {
  6026. name: "Giga Macro",
  6027. height: math.unit(10, "miles")
  6028. },
  6029. {
  6030. name: "God Macro",
  6031. height: math.unit(1, "multiverse")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(210, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/cimmaron/front-sfw.svg",
  6044. extra: 701 / 676,
  6045. bottom: 0.046
  6046. }
  6047. },
  6048. back: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(210, "lbs"),
  6051. name: "Back",
  6052. image: {
  6053. source: "./media/characters/cimmaron/back-sfw.svg",
  6054. extra: 701 / 676,
  6055. bottom: 0.046
  6056. }
  6057. },
  6058. frontNsfw: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(210, "lbs"),
  6061. name: "Front (NSFW)",
  6062. image: {
  6063. source: "./media/characters/cimmaron/front-nsfw.svg",
  6064. extra: 701 / 676,
  6065. bottom: 0.046
  6066. }
  6067. },
  6068. backNsfw: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(210, "lbs"),
  6071. name: "Back (NSFW)",
  6072. image: {
  6073. source: "./media/characters/cimmaron/back-nsfw.svg",
  6074. extra: 701 / 676,
  6075. bottom: 0.046
  6076. }
  6077. },
  6078. dick: {
  6079. height: math.unit(1.714, "feet"),
  6080. name: "Dick",
  6081. image: {
  6082. source: "./media/characters/cimmaron/dick.svg"
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(6, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Macro Mayor",
  6094. height: math.unit(350, "meters")
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(200, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/akari/front.svg",
  6107. extra: 962 / 901,
  6108. bottom: 0.04
  6109. }
  6110. }
  6111. },
  6112. [
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(5, "inches"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(7, "feet")
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6126. {
  6127. front: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(140, "lbs"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/cynosura/front.svg",
  6133. extra: 896 / 847
  6134. }
  6135. },
  6136. back: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(140, "lbs"),
  6139. name: "Back",
  6140. image: {
  6141. source: "./media/characters/cynosura/back.svg",
  6142. extra: 1365 / 1250
  6143. }
  6144. },
  6145. },
  6146. [
  6147. {
  6148. name: "Micro",
  6149. height: math.unit(4, "inches")
  6150. },
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(5.75, "feet"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Tall",
  6158. height: math.unit(10, "feet")
  6159. },
  6160. {
  6161. name: "Big",
  6162. height: math.unit(20, "feet")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(50, "feet")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(13 + 2/12, "feet"),
  6175. weight: math.unit(800, "kg"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/gin/front.svg",
  6179. extra: 1312/1191,
  6180. bottom: 45/1357
  6181. }
  6182. },
  6183. mouth: {
  6184. height: math.unit(2.39 * 1.8, "feet"),
  6185. name: "Mouth",
  6186. image: {
  6187. source: "./media/characters/gin/mouth.svg"
  6188. }
  6189. },
  6190. hand: {
  6191. height: math.unit(1.57 * 2.19, "feet"),
  6192. name: "Hand",
  6193. image: {
  6194. source: "./media/characters/gin/hand.svg"
  6195. }
  6196. },
  6197. foot: {
  6198. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6199. name: "Foot",
  6200. image: {
  6201. source: "./media/characters/gin/foot.svg"
  6202. }
  6203. },
  6204. sole: {
  6205. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6206. name: "Sole",
  6207. image: {
  6208. source: "./media/characters/gin/sole.svg"
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Very Small",
  6215. height: math.unit(13 + 2 / 12, "feet")
  6216. },
  6217. {
  6218. name: "Micro",
  6219. height: math.unit(600, "miles")
  6220. },
  6221. {
  6222. name: "Regular",
  6223. height: math.unit(20, "earths"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Macro",
  6228. height: math.unit(2.2, "solarradii")
  6229. },
  6230. {
  6231. name: "Teramacro",
  6232. height: math.unit(1.2, "galaxies")
  6233. },
  6234. {
  6235. name: "Omegamacro",
  6236. height: math.unit(200, "universes")
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(6 + 1 / 6, "feet"),
  6245. weight: math.unit(178, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/guy/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(6 + 1 / 6, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Large",
  6260. height: math.unit(25 + 7 / 12, "feet")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(60 + 9 / 12, "feet")
  6265. },
  6266. {
  6267. name: "Macro+",
  6268. height: math.unit(246, "feet")
  6269. },
  6270. {
  6271. name: "Macro++",
  6272. height: math.unit(878, "feet")
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(9, "feet"),
  6281. weight: math.unit(800, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/tiberius/front.svg",
  6285. extra: 2295 / 2071
  6286. }
  6287. },
  6288. back: {
  6289. height: math.unit(9, "feet"),
  6290. weight: math.unit(800, "lbs"),
  6291. name: "Back",
  6292. image: {
  6293. source: "./media/characters/tiberius/back.svg",
  6294. extra: 2373 / 2160
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(9, "feet"),
  6302. default: true
  6303. }
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6308. {
  6309. front: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(600, "lbs"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/surgo/front.svg",
  6315. extra: 3591 / 2227
  6316. }
  6317. },
  6318. back: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(600, "lbs"),
  6321. name: "Back",
  6322. image: {
  6323. source: "./media/characters/surgo/back.svg",
  6324. extra: 3557 / 2228
  6325. }
  6326. },
  6327. laying: {
  6328. height: math.unit(6 * 0.85, "feet"),
  6329. weight: math.unit(600, "lbs"),
  6330. name: "Laying",
  6331. image: {
  6332. source: "./media/characters/surgo/laying.svg"
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(6, "feet"),
  6340. default: true
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6346. {
  6347. side: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(150, "lbs"),
  6350. name: "Side",
  6351. image: {
  6352. source: "./media/characters/cibus/side.svg",
  6353. extra: 800 / 400
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(6, "feet"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(240, "lbs"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/nibbles/front.svg"
  6374. }
  6375. },
  6376. side: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(240, "lbs"),
  6379. name: "Side",
  6380. image: {
  6381. source: "./media/characters/nibbles/side.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(9, "feet"),
  6389. default: true
  6390. }
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6395. {
  6396. side: {
  6397. height: math.unit(5 + 1 / 6, "feet"),
  6398. weight: math.unit(130, "lbs"),
  6399. name: "Side",
  6400. image: {
  6401. source: "./media/characters/rikky/side.svg",
  6402. extra: 851 / 801
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(5 + 1 / 6, "feet")
  6410. },
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(152, "feet"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Megamacro",
  6418. height: math.unit(7, "miles")
  6419. }
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6424. {
  6425. side: {
  6426. height: math.unit(370, "cm"),
  6427. weight: math.unit(350, "lbs"),
  6428. name: "Side",
  6429. image: {
  6430. source: "./media/characters/malfressa/side.svg"
  6431. }
  6432. },
  6433. walking: {
  6434. height: math.unit(370, "cm"),
  6435. weight: math.unit(350, "lbs"),
  6436. name: "Walking",
  6437. image: {
  6438. source: "./media/characters/malfressa/walking.svg"
  6439. }
  6440. },
  6441. feral: {
  6442. height: math.unit(2500, "cm"),
  6443. weight: math.unit(100000, "lbs"),
  6444. name: "Feral",
  6445. image: {
  6446. source: "./media/characters/malfressa/feral.svg",
  6447. extra: 2108 / 837,
  6448. bottom: 0.02
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(370, "cm")
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(300, "meters"),
  6460. default: true
  6461. }
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(60, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/jaro/front.svg",
  6473. extra: 845/817,
  6474. bottom: 45/890
  6475. }
  6476. },
  6477. back: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(60, "kg"),
  6480. name: "Back",
  6481. image: {
  6482. source: "./media/characters/jaro/back.svg",
  6483. extra: 847/817,
  6484. bottom: 34/881
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Micro",
  6491. height: math.unit(7, "inches")
  6492. },
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(5.5, "feet"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Minimacro",
  6500. height: math.unit(20, "feet")
  6501. },
  6502. {
  6503. name: "Macro",
  6504. height: math.unit(200, "meters")
  6505. }
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(195, "lb"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/rogue/front.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(90, "feet"),
  6524. default: true
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6530. {
  6531. standing: {
  6532. height: math.unit(5 + 8 / 12, "feet"),
  6533. weight: math.unit(140, "lb"),
  6534. name: "Standing",
  6535. image: {
  6536. source: "./media/characters/piper/standing.svg",
  6537. extra: 1440/1284,
  6538. bottom: 66/1506
  6539. }
  6540. },
  6541. running: {
  6542. height: math.unit(5 + 8 / 12, "feet"),
  6543. weight: math.unit(140, "lb"),
  6544. name: "Running",
  6545. image: {
  6546. source: "./media/characters/piper/running.svg",
  6547. extra: 3948/3655,
  6548. bottom: 0/3948
  6549. }
  6550. },
  6551. sole: {
  6552. height: math.unit(0.81, "feet"),
  6553. weight: math.unit(2, "kg"),
  6554. name: "Sole",
  6555. image: {
  6556. source: "./media/characters/piper/sole.svg"
  6557. }
  6558. },
  6559. nipple: {
  6560. height: math.unit(0.25, "feet"),
  6561. weight: math.unit(1.5, "lb"),
  6562. name: "Nipple",
  6563. image: {
  6564. source: "./media/characters/piper/nipple.svg"
  6565. }
  6566. },
  6567. head: {
  6568. height: math.unit(1.1, "feet"),
  6569. name: "Head",
  6570. image: {
  6571. source: "./media/characters/piper/head.svg"
  6572. }
  6573. },
  6574. },
  6575. [
  6576. {
  6577. name: "Micro",
  6578. height: math.unit(2, "inches")
  6579. },
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(5 + 8 / 12, "feet")
  6583. },
  6584. {
  6585. name: "Macro",
  6586. height: math.unit(250, "feet"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Megamacro",
  6591. height: math.unit(7, "miles")
  6592. },
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(220, "lb"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/gemini/front.svg"
  6604. }
  6605. },
  6606. back: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(220, "lb"),
  6609. name: "Back",
  6610. image: {
  6611. source: "./media/characters/gemini/back.svg"
  6612. }
  6613. },
  6614. kneeling: {
  6615. height: math.unit(6 / 1.5, "feet"),
  6616. weight: math.unit(220, "lb"),
  6617. name: "Kneeling",
  6618. image: {
  6619. source: "./media/characters/gemini/kneeling.svg",
  6620. bottom: 0.02
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(300, "meters"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(6900, "meters")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6638. {
  6639. anthro: {
  6640. height: math.unit(2.35, "meters"),
  6641. weight: math.unit(73, "kg"),
  6642. name: "Anthro",
  6643. image: {
  6644. source: "./media/characters/alicia/anthro.svg",
  6645. extra: 2571 / 2385,
  6646. bottom: 75 / 2648
  6647. }
  6648. },
  6649. paw: {
  6650. height: math.unit(1.32, "feet"),
  6651. name: "Paw",
  6652. image: {
  6653. source: "./media/characters/alicia/paw.svg"
  6654. }
  6655. },
  6656. feral: {
  6657. height: math.unit(1.69, "meters"),
  6658. weight: math.unit(73, "kg"),
  6659. name: "Feral",
  6660. image: {
  6661. source: "./media/characters/alicia/feral.svg",
  6662. extra: 2123 / 1715,
  6663. bottom: 222 / 2349
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(2.35, "meters")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(60, "meters"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Megamacro",
  6679. height: math.unit(10000, "kilometers")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(7, "feet"),
  6688. weight: math.unit(250, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/archy/front.svg"
  6692. }
  6693. }
  6694. },
  6695. [
  6696. {
  6697. name: "Micro",
  6698. height: math.unit(1, "inch")
  6699. },
  6700. {
  6701. name: "Shorty",
  6702. height: math.unit(5, "feet")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(7, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(600, "meters"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(1, "mile")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(1.65, "meters"),
  6724. weight: math.unit(74, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/berri/front.svg",
  6728. extra: 857 / 837,
  6729. bottom: 18 / 877
  6730. }
  6731. },
  6732. bum: {
  6733. height: math.unit(1.46, "feet"),
  6734. name: "Bum",
  6735. image: {
  6736. source: "./media/characters/berri/bum.svg"
  6737. }
  6738. },
  6739. mouth: {
  6740. height: math.unit(0.44, "feet"),
  6741. name: "Mouth",
  6742. image: {
  6743. source: "./media/characters/berri/mouth.svg"
  6744. }
  6745. },
  6746. paw: {
  6747. height: math.unit(0.826, "feet"),
  6748. name: "Paw",
  6749. image: {
  6750. source: "./media/characters/berri/paw.svg"
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(1.65, "meters")
  6758. },
  6759. {
  6760. name: "Macro",
  6761. height: math.unit(60, "m"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Megamacro",
  6766. height: math.unit(9.213, "km")
  6767. },
  6768. {
  6769. name: "Planet Eater",
  6770. height: math.unit(489, "megameters")
  6771. },
  6772. {
  6773. name: "Teramacro",
  6774. height: math.unit(2471635000000, "meters")
  6775. },
  6776. {
  6777. name: "Examacro",
  6778. height: math.unit(8.0624e+26, "meters")
  6779. }
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(1.72, "meters"),
  6787. weight: math.unit(68, "kg"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/lexi/front.svg"
  6791. }
  6792. }
  6793. },
  6794. [
  6795. {
  6796. name: "Very Smol",
  6797. height: math.unit(10, "mm")
  6798. },
  6799. {
  6800. name: "Micro",
  6801. height: math.unit(6.8, "cm"),
  6802. default: true
  6803. },
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(1.72, "m")
  6807. }
  6808. ]
  6809. ))
  6810. characterMakers.push(() => makeCharacter(
  6811. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6812. {
  6813. front: {
  6814. height: math.unit(1.69, "meters"),
  6815. weight: math.unit(68, "kg"),
  6816. name: "Front",
  6817. image: {
  6818. source: "./media/characters/martin/front.svg",
  6819. extra: 596 / 581
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(6.85, "cm"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(1.69, "m")
  6832. }
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(1.69, "meters"),
  6840. weight: math.unit(68, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/juno/front.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Micro",
  6850. height: math.unit(7, "cm")
  6851. },
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(1.89, "m")
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(353, "meters"),
  6859. default: true
  6860. }
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(1.93, "meters"),
  6868. weight: math.unit(83, "kg"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/samantha/front.svg"
  6872. }
  6873. },
  6874. frontClothed: {
  6875. height: math.unit(1.93, "meters"),
  6876. weight: math.unit(83, "kg"),
  6877. name: "Front (Clothed)",
  6878. image: {
  6879. source: "./media/characters/samantha/front-clothed.svg"
  6880. }
  6881. },
  6882. back: {
  6883. height: math.unit(1.93, "meters"),
  6884. weight: math.unit(83, "kg"),
  6885. name: "Back",
  6886. image: {
  6887. source: "./media/characters/samantha/back.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(1.93, "m")
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(74, "meters"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro+",
  6903. height: math.unit(223, "meters"),
  6904. },
  6905. {
  6906. name: "Megamacro",
  6907. height: math.unit(8381, "meters"),
  6908. },
  6909. {
  6910. name: "Megamacro+",
  6911. height: math.unit(12000, "kilometers")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(1.92, "meters"),
  6920. weight: math.unit(80, "kg"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/dr-clay/front.svg"
  6924. }
  6925. },
  6926. frontClothed: {
  6927. height: math.unit(1.92, "meters"),
  6928. weight: math.unit(80, "kg"),
  6929. name: "Front (Clothed)",
  6930. image: {
  6931. source: "./media/characters/dr-clay/front-clothed.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(1.92, "m")
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(214, "meters"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro+",
  6947. height: math.unit(12.237, "meters"),
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(557, "megameters"),
  6952. },
  6953. {
  6954. name: "Unimaginable",
  6955. height: math.unit(120e9, "lightyears")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(2, "meters"),
  6964. weight: math.unit(80, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6968. }
  6969. }
  6970. },
  6971. [
  6972. {
  6973. name: "Teramacro",
  6974. height: math.unit(500000, "lightyears"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6981. {
  6982. crux: {
  6983. height: math.unit(2, "meters"),
  6984. weight: math.unit(150, "kg"),
  6985. name: "Crux",
  6986. image: {
  6987. source: "./media/characters/vemus/crux.svg",
  6988. extra: 1074/936,
  6989. bottom: 23/1097
  6990. }
  6991. },
  6992. skunkTanuki: {
  6993. height: math.unit(2, "meters"),
  6994. weight: math.unit(150, "kg"),
  6995. name: "Skunk-Tanuki",
  6996. image: {
  6997. source: "./media/characters/vemus/skunk-tanuki.svg",
  6998. extra: 926/893,
  6999. bottom: 20/946
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(3.75, "meters"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Big",
  7011. height: math.unit(8, "meters")
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(100, "meters")
  7016. },
  7017. {
  7018. name: "Macro+",
  7019. height: math.unit(1500, "meters")
  7020. },
  7021. {
  7022. name: "Stellar",
  7023. height: math.unit(14e8, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(70, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/beherit/front.svg",
  7036. extra: 1234/1109,
  7037. bottom: 55/1289
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(6, "feet")
  7045. },
  7046. {
  7047. name: "Lorg",
  7048. height: math.unit(25, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Lorger",
  7053. height: math.unit(75, "feet")
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(200, "meters")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(2, "meters"),
  7066. weight: math.unit(150, "kg"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/everett/front.svg",
  7070. extra: 1017/866,
  7071. bottom: 86/1103
  7072. }
  7073. },
  7074. paw: {
  7075. height: math.unit(2 / 3.6, "meters"),
  7076. name: "Paw",
  7077. image: {
  7078. source: "./media/characters/everett/paw.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(15, "feet"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Lorg",
  7090. height: math.unit(70, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Lorger",
  7095. height: math.unit(250, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(500, "meters")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(86, "kg"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/rose/front.svg",
  7112. extra: 1785/1636,
  7113. bottom: 30/1815
  7114. },
  7115. form: "liom",
  7116. default: true
  7117. },
  7118. frontSporty: {
  7119. height: math.unit(2, "meters"),
  7120. weight: math.unit(86, "kg"),
  7121. name: "Front (Sporty)",
  7122. image: {
  7123. source: "./media/characters/rose/front-sporty.svg",
  7124. extra: 350/335,
  7125. bottom: 10/360
  7126. },
  7127. form: "liom"
  7128. },
  7129. frontAlt: {
  7130. height: math.unit(1.6, "meters"),
  7131. weight: math.unit(86, "kg"),
  7132. name: "Front (Alt)",
  7133. image: {
  7134. source: "./media/characters/rose/front-alt.svg",
  7135. extra: 299/283,
  7136. bottom: 3/302
  7137. },
  7138. form: "liom"
  7139. },
  7140. plush: {
  7141. height: math.unit(2, "meters"),
  7142. weight: math.unit(86/3, "kg"),
  7143. name: "Plush",
  7144. image: {
  7145. source: "./media/characters/rose/plush.svg",
  7146. extra: 361/337,
  7147. bottom: 11/372
  7148. },
  7149. form: "plush",
  7150. default: true
  7151. },
  7152. faeStanding: {
  7153. height: math.unit(10, "cm"),
  7154. weight: math.unit(10, "grams"),
  7155. name: "Standing",
  7156. image: {
  7157. source: "./media/characters/rose/fae-standing.svg",
  7158. extra: 1189/1060,
  7159. bottom: 27/1216
  7160. },
  7161. form: "fae",
  7162. default: true
  7163. },
  7164. faeSitting: {
  7165. height: math.unit(5, "cm"),
  7166. weight: math.unit(10, "grams"),
  7167. name: "Sitting",
  7168. image: {
  7169. source: "./media/characters/rose/fae-sitting.svg",
  7170. extra: 737/577,
  7171. bottom: 356/1093
  7172. },
  7173. form: "fae"
  7174. },
  7175. faePaw: {
  7176. height: math.unit(1.35, "cm"),
  7177. name: "Paw",
  7178. image: {
  7179. source: "./media/characters/rose/fae-paw.svg"
  7180. },
  7181. form: "fae"
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "True Micro",
  7187. height: math.unit(9, "cm"),
  7188. form: "liom"
  7189. },
  7190. {
  7191. name: "Micro",
  7192. height: math.unit(16, "cm"),
  7193. form: "liom"
  7194. },
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(1.85, "meters"),
  7198. default: true,
  7199. form: "liom"
  7200. },
  7201. {
  7202. name: "Mini-Macro",
  7203. height: math.unit(5, "meters"),
  7204. form: "liom"
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(15, "meters"),
  7209. form: "liom"
  7210. },
  7211. {
  7212. name: "True Macro",
  7213. height: math.unit(40, "meters"),
  7214. form: "liom"
  7215. },
  7216. {
  7217. name: "City Scale",
  7218. height: math.unit(1, "km"),
  7219. form: "liom"
  7220. },
  7221. {
  7222. name: "Plushie",
  7223. height: math.unit(9, "cm"),
  7224. form: "plush",
  7225. default: true
  7226. },
  7227. {
  7228. name: "Fae",
  7229. height: math.unit(10, "cm"),
  7230. form: "fae",
  7231. default: true
  7232. },
  7233. ],
  7234. {
  7235. "liom": {
  7236. name: "Liom"
  7237. },
  7238. "plush": {
  7239. name: "Plush"
  7240. },
  7241. "fae": {
  7242. name: "Fae Fox",
  7243. default: true
  7244. }
  7245. }
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(2, "meters"),
  7252. weight: math.unit(350, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/regal/front.svg"
  7256. }
  7257. },
  7258. back: {
  7259. height: math.unit(2, "meters"),
  7260. weight: math.unit(350, "lbs"),
  7261. name: "Back",
  7262. image: {
  7263. source: "./media/characters/regal/back.svg"
  7264. }
  7265. },
  7266. },
  7267. [
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(350, "feet"),
  7271. default: true
  7272. }
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(4 + 11 / 12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/opal/front.svg"
  7284. }
  7285. },
  7286. frontAlt: {
  7287. height: math.unit(4 + 11 / 12, "feet"),
  7288. weight: math.unit(100, "lbs"),
  7289. name: "Front (Alt)",
  7290. image: {
  7291. source: "./media/characters/opal/front-alt.svg"
  7292. }
  7293. },
  7294. },
  7295. [
  7296. {
  7297. name: "Small",
  7298. height: math.unit(4 + 11 / 12, "feet")
  7299. },
  7300. {
  7301. name: "Normal",
  7302. height: math.unit(20, "feet"),
  7303. default: true
  7304. },
  7305. {
  7306. name: "Macro",
  7307. height: math.unit(120, "feet")
  7308. },
  7309. {
  7310. name: "Megamacro",
  7311. height: math.unit(80, "miles")
  7312. },
  7313. {
  7314. name: "True Size",
  7315. height: math.unit(100000, "lightyears")
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(200, "lbs"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/vector-wuff/front.svg"
  7328. }
  7329. }
  7330. },
  7331. [
  7332. {
  7333. name: "Normal",
  7334. height: math.unit(2.8, "meters")
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(450, "meters"),
  7339. default: true
  7340. },
  7341. {
  7342. name: "Megamacro",
  7343. height: math.unit(15, "kilometers")
  7344. }
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7349. {
  7350. front: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(256, "lbs"),
  7353. name: "Front",
  7354. image: {
  7355. source: "./media/characters/dannik/front.svg"
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(69.57, "meters"),
  7363. default: true
  7364. },
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(120, "lbs"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/azura-saharah/front.svg"
  7376. }
  7377. },
  7378. back: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(120, "lbs"),
  7381. name: "Back",
  7382. image: {
  7383. source: "./media/characters/azura-saharah/back.svg"
  7384. }
  7385. },
  7386. },
  7387. [
  7388. {
  7389. name: "Macro",
  7390. height: math.unit(100, "feet"),
  7391. default: true
  7392. },
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7397. {
  7398. side: {
  7399. height: math.unit(5 + 4 / 12, "feet"),
  7400. weight: math.unit(163, "lbs"),
  7401. name: "Side",
  7402. image: {
  7403. source: "./media/characters/kennedy/side.svg"
  7404. }
  7405. }
  7406. },
  7407. [
  7408. {
  7409. name: "Standard Doggo",
  7410. height: math.unit(5 + 4 / 12, "feet")
  7411. },
  7412. {
  7413. name: "Big Doggo",
  7414. height: math.unit(25 + 3 / 12, "feet"),
  7415. default: true
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(5 + 5/12, "feet"),
  7424. weight: math.unit(100, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/odios-de-lunar/front.svg",
  7428. extra: 1468/1323,
  7429. bottom: 22/1490
  7430. }
  7431. }
  7432. },
  7433. [
  7434. {
  7435. name: "Micro",
  7436. height: math.unit(3, "inches")
  7437. },
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(5.5, "feet"),
  7441. default: true
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(100, "feet")
  7446. },
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7451. {
  7452. back: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(220, "lbs"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/mandake/back.svg"
  7458. }
  7459. }
  7460. },
  7461. [
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(7, "feet"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(78, "feet")
  7470. },
  7471. {
  7472. name: "Macro+",
  7473. height: math.unit(300, "meters")
  7474. },
  7475. {
  7476. name: "Macro++",
  7477. height: math.unit(2400, "feet")
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(5167, "meters")
  7482. },
  7483. {
  7484. name: "Gigamacro",
  7485. height: math.unit(41769, "miles")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7491. {
  7492. front: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(120, "lbs"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/yozey/front.svg"
  7498. }
  7499. },
  7500. frontAlt: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(120, "lbs"),
  7503. name: "Front (Alt)",
  7504. image: {
  7505. source: "./media/characters/yozey/front-alt.svg"
  7506. }
  7507. },
  7508. side: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(120, "lbs"),
  7511. name: "Side",
  7512. image: {
  7513. source: "./media/characters/yozey/side.svg"
  7514. }
  7515. },
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(3, "inches"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(6, "feet")
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(103, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/valeska-voss/front.svg"
  7538. }
  7539. }
  7540. },
  7541. [
  7542. {
  7543. name: "Mini-Sized Sub",
  7544. height: math.unit(3.1, "inches")
  7545. },
  7546. {
  7547. name: "Mid-Sized Sub",
  7548. height: math.unit(6.2, "inches")
  7549. },
  7550. {
  7551. name: "Full-Sized Sub",
  7552. height: math.unit(9.3, "inches")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 2 / 12, "foot"),
  7557. default: true
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(160, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/gene-zeta/front.svg",
  7570. extra: 3006 / 2826,
  7571. bottom: 182 / 3188
  7572. }
  7573. }
  7574. },
  7575. [
  7576. {
  7577. name: "Micro",
  7578. height: math.unit(6, "inches")
  7579. },
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(5 + 11 / 12, "foot"),
  7583. default: true
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(140, "feet")
  7588. },
  7589. {
  7590. name: "Supercharged",
  7591. height: math.unit(2500, "feet")
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(6, "feet"),
  7600. weight: math.unit(350, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/razinox/front.svg",
  7604. extra: 1686 / 1548,
  7605. bottom: 28.2 / 1868
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(350, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/razinox/back.svg",
  7614. extra: 1660 / 1590,
  7615. bottom: 15 / 1665
  7616. }
  7617. },
  7618. },
  7619. [
  7620. {
  7621. name: "Normal",
  7622. height: math.unit(10 + 8 / 12, "foot")
  7623. },
  7624. {
  7625. name: "Minimacro",
  7626. height: math.unit(15, "foot")
  7627. },
  7628. {
  7629. name: "Macro",
  7630. height: math.unit(60, "foot"),
  7631. default: true
  7632. },
  7633. {
  7634. name: "Megamacro",
  7635. height: math.unit(5, "miles")
  7636. },
  7637. {
  7638. name: "Gigamacro",
  7639. height: math.unit(6000, "miles")
  7640. },
  7641. ]
  7642. ))
  7643. characterMakers.push(() => makeCharacter(
  7644. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7645. {
  7646. front: {
  7647. height: math.unit(6, "feet"),
  7648. weight: math.unit(150, "lbs"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/cobalt/front.svg"
  7652. }
  7653. }
  7654. },
  7655. [
  7656. {
  7657. name: "Normal",
  7658. height: math.unit(8 + 1 / 12, "foot")
  7659. },
  7660. {
  7661. name: "Macro",
  7662. height: math.unit(111, "foot"),
  7663. default: true
  7664. },
  7665. {
  7666. name: "Supracosmic",
  7667. height: math.unit(1e42, "feet")
  7668. },
  7669. ]
  7670. ))
  7671. characterMakers.push(() => makeCharacter(
  7672. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7673. {
  7674. front: {
  7675. height: math.unit(5, "inches"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/amanda/front.svg",
  7679. extra: 926/791,
  7680. bottom: 38/964
  7681. }
  7682. },
  7683. back: {
  7684. height: math.unit(5, "inches"),
  7685. name: "Back",
  7686. image: {
  7687. source: "./media/characters/amanda/back.svg",
  7688. extra: 909/805,
  7689. bottom: 43/952
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Micro",
  7696. height: math.unit(5, "inches"),
  7697. default: true
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(2.75, "meters"),
  7706. weight: math.unit(1200, "lb"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/teal/front.svg",
  7710. extra: 2463 / 2320,
  7711. bottom: 166 / 2629
  7712. }
  7713. },
  7714. back: {
  7715. height: math.unit(2.75, "meters"),
  7716. weight: math.unit(1200, "lb"),
  7717. name: "Back",
  7718. image: {
  7719. source: "./media/characters/teal/back.svg",
  7720. extra: 2580 / 2489,
  7721. bottom: 151 / 2731
  7722. }
  7723. },
  7724. sitting: {
  7725. height: math.unit(1.9, "meters"),
  7726. weight: math.unit(1200, "lb"),
  7727. name: "Sitting",
  7728. image: {
  7729. source: "./media/characters/teal/sitting.svg",
  7730. extra: 623 / 590,
  7731. bottom: 121 / 744
  7732. }
  7733. },
  7734. standing: {
  7735. height: math.unit(2.75, "meters"),
  7736. weight: math.unit(1200, "lb"),
  7737. name: "Standing",
  7738. image: {
  7739. source: "./media/characters/teal/standing.svg",
  7740. extra: 923 / 893,
  7741. bottom: 60 / 983
  7742. }
  7743. },
  7744. stretching: {
  7745. height: math.unit(3.65, "meters"),
  7746. weight: math.unit(1200, "lb"),
  7747. name: "Stretching",
  7748. image: {
  7749. source: "./media/characters/teal/stretching.svg",
  7750. extra: 1276 / 1244,
  7751. bottom: 0 / 1276
  7752. }
  7753. },
  7754. legged: {
  7755. height: math.unit(1.3, "meters"),
  7756. weight: math.unit(100, "lb"),
  7757. name: "Legged",
  7758. image: {
  7759. source: "./media/characters/teal/legged.svg",
  7760. extra: 462 / 437,
  7761. bottom: 24 / 486
  7762. }
  7763. },
  7764. naga: {
  7765. height: math.unit(5.4, "meters"),
  7766. weight: math.unit(4000, "lb"),
  7767. name: "Naga",
  7768. image: {
  7769. source: "./media/characters/teal/naga.svg",
  7770. extra: 1902 / 1858,
  7771. bottom: 0 / 1902
  7772. }
  7773. },
  7774. hand: {
  7775. height: math.unit(0.52, "meters"),
  7776. name: "Hand",
  7777. image: {
  7778. source: "./media/characters/teal/hand.svg"
  7779. }
  7780. },
  7781. maw: {
  7782. height: math.unit(0.43, "meters"),
  7783. name: "Maw",
  7784. image: {
  7785. source: "./media/characters/teal/maw.svg"
  7786. }
  7787. },
  7788. slit: {
  7789. height: math.unit(0.25, "meters"),
  7790. name: "Slit",
  7791. image: {
  7792. source: "./media/characters/teal/slit.svg"
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(2.75, "meters"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(300, "feet")
  7805. },
  7806. {
  7807. name: "Macro+",
  7808. height: math.unit(2000, "feet")
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7814. {
  7815. frontCat: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(180, "lbs"),
  7818. name: "Front (Cat)",
  7819. image: {
  7820. source: "./media/characters/ravin-amulet/front-cat.svg"
  7821. }
  7822. },
  7823. frontCatAlt: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(180, "lbs"),
  7826. name: "Front (Alt, Cat)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7829. }
  7830. },
  7831. frontWerewolf: {
  7832. height: math.unit(6 * 1.2, "feet"),
  7833. weight: math.unit(225, "lbs"),
  7834. name: "Front (Werewolf)",
  7835. image: {
  7836. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7837. }
  7838. },
  7839. backWerewolf: {
  7840. height: math.unit(6 * 1.2, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Back (Werewolf)",
  7843. image: {
  7844. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Nano",
  7851. height: math.unit(1, "micrometer")
  7852. },
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(1, "inch")
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(6, "feet"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(60, "feet")
  7865. }
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(6, "feet"),
  7873. weight: math.unit(165, "lbs"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/fluoresce/front.svg"
  7877. }
  7878. }
  7879. },
  7880. [
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(6, "cm")
  7884. },
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(5 + 7 / 12, "feet"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(56, "feet")
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(1.9, "miles")
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(9 + 6 / 12, "feet"),
  7905. weight: math.unit(523, "lbs"),
  7906. name: "Side",
  7907. image: {
  7908. source: "./media/characters/aurora/side.svg"
  7909. }
  7910. }
  7911. },
  7912. [
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(9 + 6 / 12, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(96, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Macro+",
  7924. height: math.unit(243, "feet")
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(194, "cm"),
  7933. weight: math.unit(90, "kg"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/ranek/front.svg",
  7937. extra: 1862/1791,
  7938. bottom: 80/1942
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(194, "cm"),
  7943. weight: math.unit(90, "kg"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/ranek/back.svg",
  7947. extra: 1853/1787,
  7948. bottom: 74/1927
  7949. }
  7950. },
  7951. feral: {
  7952. height: math.unit(30, "cm"),
  7953. weight: math.unit(1.6, "lbs"),
  7954. name: "Feral",
  7955. image: {
  7956. source: "./media/characters/ranek/feral.svg",
  7957. extra: 990/631,
  7958. bottom: 29/1019
  7959. }
  7960. },
  7961. },
  7962. [
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(194, "cm"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Macro",
  7970. height: math.unit(100, "meters")
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(5 + 6 / 12, "feet"),
  7979. weight: math.unit(153, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/andrew-cooper/front.svg"
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Nano",
  7989. height: math.unit(1, "mm")
  7990. },
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(2, "inches")
  7994. },
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(5 + 6 / 12, "feet"),
  7998. default: true
  7999. }
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(180, "lbs"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/akane-sato/front.svg",
  8011. extra: 1219 / 1140
  8012. }
  8013. },
  8014. back: {
  8015. height: math.unit(6, "feet"),
  8016. weight: math.unit(180, "lbs"),
  8017. name: "Back",
  8018. image: {
  8019. source: "./media/characters/akane-sato/back.svg",
  8020. extra: 1219 / 1170
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(2.5, "meters")
  8028. },
  8029. {
  8030. name: "Macro",
  8031. height: math.unit(250, "meters"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Megamacro",
  8036. height: math.unit(25, "km")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(6, "feet"),
  8045. weight: math.unit(65, "kg"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/rook/front.svg",
  8049. extra: 960 / 950
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(8.8, "feet")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(88, "feet"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Megamacro",
  8065. height: math.unit(8, "miles")
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(12 + 2 / 12, "feet"),
  8074. weight: math.unit(808, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/prodigy/front.svg"
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(12 + 2 / 12, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(143, "feet")
  8090. },
  8091. {
  8092. name: "Macro+",
  8093. height: math.unit(400, "feet")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(225, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/daniel/front.svg"
  8106. }
  8107. },
  8108. leaning: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(225, "lbs"),
  8111. name: "Leaning",
  8112. image: {
  8113. source: "./media/characters/daniel/leaning.svg"
  8114. }
  8115. },
  8116. },
  8117. [
  8118. {
  8119. name: "Macro",
  8120. height: math.unit(1000, "feet"),
  8121. default: true
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(88, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/chiros/front.svg",
  8134. extra: 306 / 226
  8135. }
  8136. },
  8137. side: {
  8138. height: math.unit(6, "feet"),
  8139. weight: math.unit(88, "lbs"),
  8140. name: "Side",
  8141. image: {
  8142. source: "./media/characters/chiros/side.svg",
  8143. extra: 306 / 226
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(6, "cm"),
  8151. default: true
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(100, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/selka/front.svg",
  8164. extra: 947 / 887
  8165. }
  8166. }
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(5, "cm"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(8 + 3 / 12, "feet"),
  8181. weight: math.unit(424, "lbs"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/verin/front.svg",
  8185. extra: 1845 / 1550
  8186. }
  8187. },
  8188. frontArmored: {
  8189. height: math.unit(8 + 3 / 12, "feet"),
  8190. weight: math.unit(424, "lbs"),
  8191. name: "Front (Armored)",
  8192. image: {
  8193. source: "./media/characters/verin/front-armor.svg",
  8194. extra: 1845 / 1550,
  8195. bottom: 0.01
  8196. }
  8197. },
  8198. back: {
  8199. height: math.unit(8 + 3 / 12, "feet"),
  8200. weight: math.unit(424, "lbs"),
  8201. name: "Back",
  8202. image: {
  8203. source: "./media/characters/verin/back.svg",
  8204. bottom: 0.1,
  8205. extra: 1
  8206. }
  8207. },
  8208. foot: {
  8209. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8210. name: "Foot",
  8211. image: {
  8212. source: "./media/characters/verin/foot.svg"
  8213. }
  8214. },
  8215. },
  8216. [
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(8 + 3 / 12, "feet")
  8220. },
  8221. {
  8222. name: "Minimacro",
  8223. height: math.unit(21, "feet"),
  8224. default: true
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(626, "feet")
  8229. },
  8230. ]
  8231. ))
  8232. characterMakers.push(() => makeCharacter(
  8233. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8234. {
  8235. front: {
  8236. height: math.unit(2.718, "meters"),
  8237. weight: math.unit(150, "lbs"),
  8238. name: "Front",
  8239. image: {
  8240. source: "./media/characters/sovrim-terraquian/front.svg",
  8241. extra: 1752/1689,
  8242. bottom: 36/1788
  8243. }
  8244. },
  8245. back: {
  8246. height: math.unit(2.718, "meters"),
  8247. weight: math.unit(150, "lbs"),
  8248. name: "Back",
  8249. image: {
  8250. source: "./media/characters/sovrim-terraquian/back.svg",
  8251. extra: 1698/1657,
  8252. bottom: 58/1756
  8253. }
  8254. },
  8255. tongue: {
  8256. height: math.unit(2.865, "feet"),
  8257. name: "Tongue",
  8258. image: {
  8259. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8260. }
  8261. },
  8262. hand: {
  8263. height: math.unit(1.61, "feet"),
  8264. name: "Hand",
  8265. image: {
  8266. source: "./media/characters/sovrim-terraquian/hand.svg"
  8267. }
  8268. },
  8269. foot: {
  8270. height: math.unit(1.05, "feet"),
  8271. name: "Foot",
  8272. image: {
  8273. source: "./media/characters/sovrim-terraquian/foot.svg"
  8274. }
  8275. },
  8276. footAlt: {
  8277. height: math.unit(0.88, "feet"),
  8278. name: "Foot (Alt)",
  8279. image: {
  8280. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(2, "inches")
  8288. },
  8289. {
  8290. name: "Small",
  8291. height: math.unit(1, "meter")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(Math.E, "meters"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(20, "meters")
  8301. },
  8302. {
  8303. name: "Macro+",
  8304. height: math.unit(400, "meters")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(7, "feet"),
  8313. weight: math.unit(489, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/reece-silvermane/front.svg",
  8317. bottom: 0.02,
  8318. extra: 1
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Macro",
  8325. height: math.unit(1.5, "miles"),
  8326. default: true
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8332. {
  8333. front: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(78, "kg"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/kane/front.svg",
  8339. extra: 978 / 899
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(2.1, "m"),
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(1, "km"),
  8351. default: true
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(200, "kg"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/tegon/front.svg",
  8364. bottom: 0.01,
  8365. extra: 1
  8366. }
  8367. },
  8368. },
  8369. [
  8370. {
  8371. name: "Micro",
  8372. height: math.unit(1, "inch")
  8373. },
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(6 + 3 / 12, "feet"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(300, "feet")
  8382. },
  8383. {
  8384. name: "Megamacro",
  8385. height: math.unit(69, "miles")
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8391. {
  8392. side: {
  8393. height: math.unit(6, "feet"),
  8394. weight: math.unit(2304, "lbs"),
  8395. name: "Side",
  8396. image: {
  8397. source: "./media/characters/arcturax/side.svg",
  8398. extra: 790 / 376,
  8399. bottom: 0.01
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Micro",
  8406. height: math.unit(2, "inch")
  8407. },
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(6, "feet")
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(39, "feet"),
  8415. default: true
  8416. },
  8417. {
  8418. name: "Megamacro",
  8419. height: math.unit(7, "miles")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(50, "lbs"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/sentri/front.svg",
  8432. extra: 1750 / 1570,
  8433. bottom: 0.025
  8434. }
  8435. },
  8436. frontAlt: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(50, "lbs"),
  8439. name: "Front (Alt)",
  8440. image: {
  8441. source: "./media/characters/sentri/front-alt.svg",
  8442. extra: 1750 / 1570,
  8443. bottom: 0.025
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(15, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(2500, "feet")
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(5 + 8 / 12, "feet"),
  8464. weight: math.unit(130, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/corvin/front.svg",
  8468. extra: 1803 / 1629
  8469. }
  8470. },
  8471. frontShirt: {
  8472. height: math.unit(5 + 8 / 12, "feet"),
  8473. weight: math.unit(130, "lbs"),
  8474. name: "Front (Shirt)",
  8475. image: {
  8476. source: "./media/characters/corvin/front-shirt.svg",
  8477. extra: 1803 / 1629
  8478. }
  8479. },
  8480. frontPoncho: {
  8481. height: math.unit(5 + 8 / 12, "feet"),
  8482. weight: math.unit(130, "lbs"),
  8483. name: "Front (Poncho)",
  8484. image: {
  8485. source: "./media/characters/corvin/front-poncho.svg",
  8486. extra: 1803 / 1629
  8487. }
  8488. },
  8489. side: {
  8490. height: math.unit(5 + 8 / 12, "feet"),
  8491. weight: math.unit(130, "lbs"),
  8492. name: "Side",
  8493. image: {
  8494. source: "./media/characters/corvin/side.svg",
  8495. extra: 1012 / 945
  8496. }
  8497. },
  8498. back: {
  8499. height: math.unit(5 + 8 / 12, "feet"),
  8500. weight: math.unit(130, "lbs"),
  8501. name: "Back",
  8502. image: {
  8503. source: "./media/characters/corvin/back.svg",
  8504. extra: 1803 / 1629
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Micro",
  8511. height: math.unit(3, "inches")
  8512. },
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(5 + 8 / 12, "feet")
  8516. },
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(300, "feet"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Megamacro",
  8524. height: math.unit(500, "miles")
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(135, "lbs"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/q/front.svg",
  8537. extra: 854 / 752,
  8538. bottom: 0.005
  8539. }
  8540. },
  8541. back: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(130, "lbs"),
  8544. name: "Back",
  8545. image: {
  8546. source: "./media/characters/q/back.svg",
  8547. extra: 854 / 752
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Macro",
  8554. height: math.unit(90, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Extra Macro",
  8559. height: math.unit(300, "feet"),
  8560. },
  8561. {
  8562. name: "BIG WALF",
  8563. height: math.unit(750, "feet"),
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(6, "feet"),
  8572. weight: math.unit(150, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/carley/front.svg",
  8576. extra: 3927 / 3540,
  8577. bottom: 29.2 / 735
  8578. }
  8579. }
  8580. },
  8581. [
  8582. {
  8583. name: "Normal",
  8584. height: math.unit(6 + 3 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Macro",
  8588. height: math.unit(185, "feet"),
  8589. default: true
  8590. },
  8591. {
  8592. name: "Megamacro",
  8593. height: math.unit(8, "miles"),
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(3, "feet"),
  8602. weight: math.unit(28, "lbs"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/citrine/front.svg"
  8606. }
  8607. }
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(3, "feet"),
  8613. default: true
  8614. }
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8619. {
  8620. front: {
  8621. height: math.unit(14, "feet"),
  8622. weight: math.unit(1450, "kg"),
  8623. capacity: math.unit(15, "people"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/aura-starwind/front.svg",
  8627. extra: 1440/1327,
  8628. bottom: 11/1451
  8629. }
  8630. },
  8631. side: {
  8632. height: math.unit(14, "feet"),
  8633. weight: math.unit(1450, "kg"),
  8634. capacity: math.unit(15, "people"),
  8635. name: "Side",
  8636. image: {
  8637. source: "./media/characters/aura-starwind/side.svg",
  8638. extra: 1654 / 1497
  8639. }
  8640. },
  8641. taur: {
  8642. height: math.unit(18, "feet"),
  8643. weight: math.unit(5500, "kg"),
  8644. capacity: math.unit(50, "people"),
  8645. name: "Taur",
  8646. image: {
  8647. source: "./media/characters/aura-starwind/taur.svg",
  8648. extra: 1760 / 1650
  8649. }
  8650. },
  8651. feral: {
  8652. height: math.unit(46, "feet"),
  8653. weight: math.unit(25000, "kg"),
  8654. capacity: math.unit(120, "people"),
  8655. name: "Feral",
  8656. image: {
  8657. source: "./media/characters/aura-starwind/feral.svg"
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(14, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(50, "meters")
  8670. },
  8671. {
  8672. name: "Megamacro",
  8673. height: math.unit(5000, "meters")
  8674. },
  8675. {
  8676. name: "Gigamacro",
  8677. height: math.unit(100000, "kilometers")
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(2 + 7 / 12, "feet"),
  8686. weight: math.unit(32, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/rivet/front.svg",
  8690. extra: 1716 / 1658,
  8691. bottom: 0.03
  8692. }
  8693. },
  8694. foot: {
  8695. height: math.unit(0.551, "feet"),
  8696. name: "Rivet's Foot",
  8697. image: {
  8698. source: "./media/characters/rivet/foot.svg"
  8699. },
  8700. rename: true
  8701. }
  8702. },
  8703. [
  8704. {
  8705. name: "Micro",
  8706. height: math.unit(1.5, "inches"),
  8707. },
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(2 + 7 / 12, "feet"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Macro",
  8715. height: math.unit(85, "feet")
  8716. },
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(2.2, "km")
  8720. }
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(5 + 9 / 12, "feet"),
  8728. weight: math.unit(150, "lbs"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/coffee/front.svg",
  8732. extra: 3666 / 3032,
  8733. bottom: 0.04
  8734. }
  8735. },
  8736. foot: {
  8737. height: math.unit(1.29, "feet"),
  8738. name: "Foot",
  8739. image: {
  8740. source: "./media/characters/coffee/foot.svg"
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(2, "inches"),
  8748. },
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 9 / 12, "feet"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(800, "feet")
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(25, "miles")
  8761. }
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(200, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/chari-gal/front.svg",
  8773. extra: 1568 / 1385,
  8774. bottom: 0.047
  8775. }
  8776. },
  8777. gigantamax: {
  8778. height: math.unit(6 * 16, "feet"),
  8779. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8780. name: "Gigantamax",
  8781. image: {
  8782. source: "./media/characters/chari-gal/gigantamax.svg",
  8783. extra: 1124 / 888,
  8784. bottom: 0.03
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(5 + 7 / 12, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(200, "feet"),
  8796. default: true
  8797. }
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8802. {
  8803. front: {
  8804. height: math.unit(6, "feet"),
  8805. weight: math.unit(150, "lbs"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/nova/front.svg",
  8809. extra: 5000 / 4722,
  8810. bottom: 0.02
  8811. }
  8812. }
  8813. },
  8814. [
  8815. {
  8816. name: "Micro-",
  8817. height: math.unit(0.8, "inches")
  8818. },
  8819. {
  8820. name: "Micro",
  8821. height: math.unit(2, "inches"),
  8822. default: true
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(3 + 1 / 12, "feet"),
  8831. weight: math.unit(21.7, "lbs"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/argent/front.svg",
  8835. extra: 1471 / 1331,
  8836. bottom: 100.8 / 1575.5
  8837. }
  8838. }
  8839. },
  8840. [
  8841. {
  8842. name: "Micro",
  8843. height: math.unit(2, "inches")
  8844. },
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3 + 1 / 12, "feet"),
  8848. default: true
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(120, "feet")
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8858. {
  8859. lamp: {
  8860. height: math.unit(7 * 1559 / 989, "feet"),
  8861. name: "Magic Lamp",
  8862. image: {
  8863. source: "./media/characters/mira-al-cul/lamp.svg",
  8864. extra: 1617 / 1559
  8865. }
  8866. },
  8867. front: {
  8868. height: math.unit(7, "feet"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/mira-al-cul/front.svg",
  8872. extra: 1044 / 990
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Heavily Restricted",
  8879. height: math.unit(7 * 1559 / 989, "feet")
  8880. },
  8881. {
  8882. name: "Freshly Freed",
  8883. height: math.unit(50 * 1559 / 989, "feet")
  8884. },
  8885. {
  8886. name: "World Encompassing",
  8887. height: math.unit(10000 * 1559 / 989, "miles")
  8888. },
  8889. {
  8890. name: "Galactic",
  8891. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8892. },
  8893. {
  8894. name: "Palmed Universe",
  8895. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Multiversal Matriarch",
  8900. height: math.unit(8.87e10, "yottameters")
  8901. },
  8902. {
  8903. name: "Void Mother",
  8904. height: math.unit(3.14e110, "yottaparsecs")
  8905. },
  8906. {
  8907. name: "Toying with Transcendence",
  8908. height: math.unit(1e307, "meters")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8914. {
  8915. front: {
  8916. height: math.unit(17 + 1 / 12, "feet"),
  8917. weight: math.unit(476.2 * 5, "lbs"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/kuro-shi-uchū/front.svg",
  8921. extra: 2329 / 1835,
  8922. bottom: 0.02
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Micro",
  8929. height: math.unit(2, "inches")
  8930. },
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(12, "meters")
  8934. },
  8935. {
  8936. name: "Planetary",
  8937. height: math.unit(0.00929, "AU"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Universal",
  8942. height: math.unit(20, "gigaparsecs")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(5 + 2 / 12, "feet"),
  8951. weight: math.unit(120, "lbs"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/katherine/front.svg",
  8955. extra: 2075 / 1969
  8956. }
  8957. },
  8958. dress: {
  8959. height: math.unit(5 + 2 / 12, "feet"),
  8960. weight: math.unit(120, "lbs"),
  8961. name: "Dress",
  8962. image: {
  8963. source: "./media/characters/katherine/dress.svg",
  8964. extra: 2258 / 2064
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(1, "inches"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(5 + 2 / 12, "feet")
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(100, "meters")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(80, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(7 + 8 / 12, "feet"),
  8993. weight: math.unit(250, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/yevis/front.svg",
  8997. extra: 1938 / 1755
  8998. }
  8999. }
  9000. },
  9001. [
  9002. {
  9003. name: "Mortal",
  9004. height: math.unit(7 + 8 / 12, "feet")
  9005. },
  9006. {
  9007. name: "Battle",
  9008. height: math.unit(25 + 11 / 12, "feet")
  9009. },
  9010. {
  9011. name: "Wrath",
  9012. height: math.unit(1654 + 11 / 12, "feet")
  9013. },
  9014. {
  9015. name: "Planet Destroyer",
  9016. height: math.unit(12000, "miles")
  9017. },
  9018. {
  9019. name: "Galaxy Conqueror",
  9020. height: math.unit(1.45, "zettameters"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Universal War",
  9025. height: math.unit(184, "gigaparsecs")
  9026. },
  9027. {
  9028. name: "Eternity War",
  9029. height: math.unit(1.98e55, "yottaparsecs")
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(5 + 8 / 12, "feet"),
  9038. weight: math.unit(63, "kg"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/xavier/front.svg",
  9042. extra: 944 / 883
  9043. }
  9044. },
  9045. frontStretch: {
  9046. height: math.unit(5 + 8 / 12, "feet"),
  9047. weight: math.unit(63, "kg"),
  9048. name: "Stretching",
  9049. image: {
  9050. source: "./media/characters/xavier/front-stretch.svg",
  9051. extra: 962 / 820
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(5 + 8 / 12, "feet")
  9059. },
  9060. {
  9061. name: "Macro",
  9062. height: math.unit(100, "meters"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "McLargeHuge",
  9067. height: math.unit(10, "miles")
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(5 + 5 / 12, "feet"),
  9076. weight: math.unit(150, "lb"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/joshii/front.svg",
  9080. extra: 765 / 653,
  9081. bottom: 51 / 816
  9082. }
  9083. },
  9084. foot: {
  9085. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9086. name: "Foot",
  9087. image: {
  9088. source: "./media/characters/joshii/foot.svg"
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(2, "inches"),
  9096. default: true
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 5 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(785, "feet")
  9105. },
  9106. {
  9107. name: "Megamacro",
  9108. height: math.unit(24.5, "miles")
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(150, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/goddess-elizabeth/front.svg",
  9121. extra: 1800 / 1525,
  9122. bottom: 0.005
  9123. }
  9124. },
  9125. foot: {
  9126. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9127. name: "Foot",
  9128. image: {
  9129. source: "./media/characters/goddess-elizabeth/foot.svg"
  9130. }
  9131. },
  9132. mouth: {
  9133. height: math.unit(6, "feet"),
  9134. name: "Mouth",
  9135. image: {
  9136. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Micro",
  9143. height: math.unit(12, "feet")
  9144. },
  9145. {
  9146. name: "Normal",
  9147. height: math.unit(80, "miles"),
  9148. default: true
  9149. },
  9150. {
  9151. name: "Macro",
  9152. height: math.unit(15000, "parsecs")
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(5 + 9 / 12, "feet"),
  9161. weight: math.unit(144, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/kara/front.svg"
  9165. }
  9166. },
  9167. feet: {
  9168. height: math.unit(6 / 6.765, "feet"),
  9169. name: "Kara's Feet",
  9170. rename: true,
  9171. image: {
  9172. source: "./media/characters/kara/feet.svg"
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(5 + 9 / 12, "feet")
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(174, "feet"),
  9184. default: true
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(18, "feet"),
  9193. weight: math.unit(4050, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/tyrone/front.svg",
  9197. extra: 2405 / 2270,
  9198. bottom: 182 / 2587
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(18, "feet"),
  9206. default: true
  9207. },
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(300, "feet")
  9211. },
  9212. {
  9213. name: "Megamacro",
  9214. height: math.unit(15, "km")
  9215. },
  9216. {
  9217. name: "Gigamacro",
  9218. height: math.unit(500, "km")
  9219. },
  9220. {
  9221. name: "Teramacro",
  9222. height: math.unit(0.5, "gigameters")
  9223. },
  9224. {
  9225. name: "Omnimacro",
  9226. height: math.unit(1e252, "yottauniverse")
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(7 + 8 / 12, "feet"),
  9235. weight: math.unit(120, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/danny/front.svg",
  9239. extra: 1490 / 1350
  9240. }
  9241. },
  9242. back: {
  9243. height: math.unit(7 + 8 / 12, "feet"),
  9244. weight: math.unit(120, "lb"),
  9245. name: "Back",
  9246. image: {
  9247. source: "./media/characters/danny/back.svg",
  9248. extra: 1490 / 1350
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(7 + 8 / 12, "feet"),
  9256. default: true
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(3.5, "inches"),
  9265. weight: math.unit(19, "grams"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/mallow/front.svg",
  9269. extra: 471 / 431
  9270. }
  9271. },
  9272. back: {
  9273. height: math.unit(3.5, "inches"),
  9274. weight: math.unit(19, "grams"),
  9275. name: "Back",
  9276. image: {
  9277. source: "./media/characters/mallow/back.svg",
  9278. extra: 471 / 431
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(3.5, "inches"),
  9286. default: true
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(9, "feet"),
  9295. weight: math.unit(230, "kg"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/starry-aqua/front.svg"
  9299. }
  9300. },
  9301. back: {
  9302. height: math.unit(9, "feet"),
  9303. weight: math.unit(230, "kg"),
  9304. name: "Back",
  9305. image: {
  9306. source: "./media/characters/starry-aqua/back.svg"
  9307. }
  9308. },
  9309. hand: {
  9310. height: math.unit(9 * 0.1168, "feet"),
  9311. name: "Hand",
  9312. image: {
  9313. source: "./media/characters/starry-aqua/hand.svg"
  9314. }
  9315. },
  9316. foot: {
  9317. height: math.unit(9 * 0.18, "feet"),
  9318. name: "Foot",
  9319. image: {
  9320. source: "./media/characters/starry-aqua/foot.svg"
  9321. }
  9322. }
  9323. },
  9324. [
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(3, "inches")
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(9, "feet")
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(300, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Megamacro",
  9340. height: math.unit(3200, "feet")
  9341. }
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(15, "feet"),
  9349. weight: math.unit(5026, "lb"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/luka-towers/front.svg",
  9353. extra: 1269/1133,
  9354. bottom: 51/1320
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(15, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Minimacro",
  9366. height: math.unit(25, "feet")
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(320, "feet")
  9371. },
  9372. {
  9373. name: "Megamacro",
  9374. height: math.unit(35000, "feet")
  9375. },
  9376. {
  9377. name: "Gigamacro",
  9378. height: math.unit(4000, "miles")
  9379. },
  9380. {
  9381. name: "Teramacro",
  9382. height: math.unit(15000, "miles")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(150, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/natalie-nightring/front.svg",
  9395. extra: 1,
  9396. bottom: 0.06
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Uh Oh",
  9403. height: math.unit(0.1, "mm")
  9404. },
  9405. {
  9406. name: "Small",
  9407. height: math.unit(3, "inches")
  9408. },
  9409. {
  9410. name: "Human Scale",
  9411. height: math.unit(6, "feet")
  9412. },
  9413. {
  9414. name: "Librarian",
  9415. height: math.unit(50, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Immense",
  9420. height: math.unit(200, "miles")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(180, "lbs"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/danni-rosie/front.svg",
  9433. extra: 1260 / 1128,
  9434. bottom: 0.022
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Micro",
  9441. height: math.unit(2, "inches"),
  9442. default: true
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(5 + 9 / 12, "feet"),
  9451. weight: math.unit(220, "lb"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/samantha-kruse/front.svg",
  9455. extra: (985 / 935),
  9456. bottom: 0.03
  9457. }
  9458. },
  9459. frontUndressed: {
  9460. height: math.unit(5 + 9 / 12, "feet"),
  9461. weight: math.unit(220, "lb"),
  9462. name: "Front (Undressed)",
  9463. image: {
  9464. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9465. extra: (973 / 923),
  9466. bottom: 0.025
  9467. }
  9468. },
  9469. fat: {
  9470. height: math.unit(5 + 9 / 12, "feet"),
  9471. weight: math.unit(900, "lb"),
  9472. name: "Front (Fat)",
  9473. image: {
  9474. source: "./media/characters/samantha-kruse/fat.svg",
  9475. extra: 2688 / 2561
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(5 + 9 / 12, "feet"),
  9483. default: true
  9484. }
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9489. {
  9490. back: {
  9491. height: math.unit(5 + 4 / 12, "feet"),
  9492. weight: math.unit(4963, "lb"),
  9493. name: "Back",
  9494. image: {
  9495. source: "./media/characters/amelia-rosie/back.svg",
  9496. extra: 1113 / 963,
  9497. bottom: 0.01
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Level 0",
  9504. height: math.unit(5 + 4 / 12, "feet")
  9505. },
  9506. {
  9507. name: "Level 1",
  9508. height: math.unit(164597, "feet"),
  9509. default: true
  9510. },
  9511. {
  9512. name: "Level 2",
  9513. height: math.unit(956243, "miles")
  9514. },
  9515. {
  9516. name: "Level 3",
  9517. height: math.unit(29421709423, "miles")
  9518. },
  9519. {
  9520. name: "Level 4",
  9521. height: math.unit(154, "lightyears")
  9522. },
  9523. {
  9524. name: "Level 5",
  9525. height: math.unit(4738272, "lightyears")
  9526. },
  9527. {
  9528. name: "Level 6",
  9529. height: math.unit(145787152896, "lightyears")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(5 + 11 / 12, "feet"),
  9538. weight: math.unit(65, "kg"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/rook-kitara/front.svg",
  9542. extra: 1347 / 1274,
  9543. bottom: 0.005
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Totally Unfair",
  9550. height: math.unit(1.8, "mm")
  9551. },
  9552. {
  9553. name: "Lap Rookie",
  9554. height: math.unit(1.4, "feet")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(5 + 11 / 12, "feet"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "How Did This Happen",
  9563. height: math.unit(80, "miles")
  9564. }
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(7, "feet"),
  9572. weight: math.unit(300, "lb"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/pisces/front.svg",
  9576. extra: 2255 / 2115,
  9577. bottom: 0.03
  9578. }
  9579. },
  9580. back: {
  9581. height: math.unit(7, "feet"),
  9582. weight: math.unit(300, "lb"),
  9583. name: "Back",
  9584. image: {
  9585. source: "./media/characters/pisces/back.svg",
  9586. extra: 2146 / 2055,
  9587. bottom: 0.04
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(7, "feet"),
  9595. default: true
  9596. },
  9597. {
  9598. name: "Swimming Pool",
  9599. height: math.unit(12.2, "meters")
  9600. },
  9601. {
  9602. name: "Olympic Swimming Pool",
  9603. height: math.unit(56.3, "meters")
  9604. },
  9605. {
  9606. name: "Lake Superior",
  9607. height: math.unit(93900, "meters")
  9608. },
  9609. {
  9610. name: "Mediterranean Sea",
  9611. height: math.unit(644457, "meters")
  9612. },
  9613. {
  9614. name: "World's Oceans",
  9615. height: math.unit(4567491, "meters")
  9616. },
  9617. ]
  9618. ))
  9619. characterMakers.push(() => makeCharacter(
  9620. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9621. {
  9622. front: {
  9623. height: math.unit(2.3, "meters"),
  9624. weight: math.unit(120, "kg"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/zelas/front.svg"
  9628. }
  9629. },
  9630. side: {
  9631. height: math.unit(2.3, "meters"),
  9632. weight: math.unit(120, "kg"),
  9633. name: "Side",
  9634. image: {
  9635. source: "./media/characters/zelas/side.svg"
  9636. }
  9637. },
  9638. back: {
  9639. height: math.unit(2.3, "meters"),
  9640. weight: math.unit(120, "kg"),
  9641. name: "Back",
  9642. image: {
  9643. source: "./media/characters/zelas/back.svg"
  9644. }
  9645. },
  9646. foot: {
  9647. height: math.unit(1.116, "feet"),
  9648. name: "Foot",
  9649. image: {
  9650. source: "./media/characters/zelas/foot.svg"
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(2.3, "meters")
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(30, "meters"),
  9662. default: true
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(1, "inch"),
  9671. weight: math.unit(0.21, "grams"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/talbot/front.svg",
  9675. extra: 594 / 544
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(1, "inch"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9689. {
  9690. front: {
  9691. height: math.unit(3 + 3 / 12, "feet"),
  9692. weight: math.unit(51.8, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/fliss/front.svg",
  9696. extra: 840 / 640
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Teeny Tiny",
  9703. height: math.unit(1, "mm")
  9704. },
  9705. {
  9706. name: "Small",
  9707. height: math.unit(1, "inch"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Standard Sylveon",
  9712. height: math.unit(3 + 3 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Large Nuisance",
  9716. height: math.unit(33, "feet")
  9717. },
  9718. {
  9719. name: "City Filler",
  9720. height: math.unit(3000, "feet")
  9721. },
  9722. {
  9723. name: "New Horizon",
  9724. height: math.unit(6000, "miles")
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9730. {
  9731. front: {
  9732. height: math.unit(5, "cm"),
  9733. weight: math.unit(1.94, "g"),
  9734. name: "Front",
  9735. image: {
  9736. source: "./media/characters/fleta/front.svg",
  9737. extra: 835 / 803
  9738. }
  9739. },
  9740. back: {
  9741. height: math.unit(5, "cm"),
  9742. weight: math.unit(1.94, "g"),
  9743. name: "Back",
  9744. image: {
  9745. source: "./media/characters/fleta/back.svg",
  9746. extra: 835 / 803
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Micro",
  9753. height: math.unit(5, "cm"),
  9754. default: true
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(225, "lb"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/dominic/front.svg",
  9767. extra: 1770 / 1620,
  9768. bottom: 0.025
  9769. }
  9770. },
  9771. back: {
  9772. height: math.unit(6, "feet"),
  9773. weight: math.unit(225, "lb"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/dominic/back.svg",
  9777. extra: 1745 / 1620,
  9778. bottom: 0.065
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Nano",
  9785. height: math.unit(0.1, "mm")
  9786. },
  9787. {
  9788. name: "Micro-",
  9789. height: math.unit(1, "mm")
  9790. },
  9791. {
  9792. name: "Micro",
  9793. height: math.unit(4, "inches")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(6 + 4 / 12, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(115, "feet")
  9803. },
  9804. {
  9805. name: "Macro+",
  9806. height: math.unit(955, "feet")
  9807. },
  9808. {
  9809. name: "Megamacro",
  9810. height: math.unit(8990, "feet")
  9811. },
  9812. {
  9813. name: "Gigmacro",
  9814. height: math.unit(9310, "miles")
  9815. },
  9816. {
  9817. name: "Teramacro",
  9818. height: math.unit(1567005010, "miles")
  9819. },
  9820. {
  9821. name: "Examacro",
  9822. height: math.unit(1425, "parsecs")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(400, "feet"),
  9831. weight: math.unit(44444444, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/major-colonel/front.svg"
  9835. }
  9836. },
  9837. back: {
  9838. height: math.unit(400, "feet"),
  9839. weight: math.unit(44444444, "lb"),
  9840. name: "Back",
  9841. image: {
  9842. source: "./media/characters/major-colonel/back.svg"
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Macro",
  9849. height: math.unit(400, "feet"),
  9850. default: true
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9856. {
  9857. catFront: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(120, "lb"),
  9860. name: "Front (Cat Side)",
  9861. image: {
  9862. source: "./media/characters/axel-lycan/cat-front.svg",
  9863. extra: 430 / 402,
  9864. bottom: 43 / 472.35
  9865. }
  9866. },
  9867. catBack: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(120, "lb"),
  9870. name: "Back (Cat Side)",
  9871. image: {
  9872. source: "./media/characters/axel-lycan/cat-back.svg",
  9873. extra: 447 / 419,
  9874. bottom: 23.3 / 469
  9875. }
  9876. },
  9877. wolfFront: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(120, "lb"),
  9880. name: "Front (Wolf Side)",
  9881. image: {
  9882. source: "./media/characters/axel-lycan/wolf-front.svg",
  9883. extra: 485 / 456,
  9884. bottom: 19 / 504
  9885. }
  9886. },
  9887. wolfBack: {
  9888. height: math.unit(6, "feet"),
  9889. weight: math.unit(120, "lb"),
  9890. name: "Back (Wolf Side)",
  9891. image: {
  9892. source: "./media/characters/axel-lycan/wolf-back.svg",
  9893. extra: 475 / 438,
  9894. bottom: 39.2 / 514
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Macro",
  9901. height: math.unit(1, "km"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(5 + 9 / 12, "feet"),
  9911. weight: math.unit(175, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/vanrel-hyena/front.svg",
  9915. extra: 1086 / 1010,
  9916. bottom: 0.04
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 9 / 12, "feet"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(103, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/abbott-absol/front.svg",
  9937. extra: 2010 / 1842
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Megamicro",
  9944. height: math.unit(0.1, "mm")
  9945. },
  9946. {
  9947. name: "Micro",
  9948. height: math.unit(1, "inch")
  9949. },
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(6, "feet"),
  9953. default: true
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(6, "feet"),
  9962. weight: math.unit(264, "lb"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/hector/front.svg",
  9966. extra: 2280 / 2130,
  9967. bottom: 0.07
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(12.25, "foot"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(160, "feet")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(150, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/sal/front.svg",
  9992. extra: 1846 / 1699,
  9993. bottom: 0.04
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(10, "miles"),
  10001. default: true
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10007. {
  10008. front: {
  10009. height: math.unit(3, "meters"),
  10010. weight: math.unit(450, "kg"),
  10011. name: "front",
  10012. image: {
  10013. source: "./media/characters/ranger/front.svg",
  10014. extra: 2401 / 2243,
  10015. bottom: 0.05
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(3, "meters"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(14, "feet"),
  10032. weight: math.unit(800, "kg"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/theresa/front.svg",
  10036. extra: 3575 / 3346,
  10037. bottom: 0.03
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(14, "feet"),
  10045. default: true
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(3, "kg"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/ine/front.svg",
  10058. extra: 678 / 539,
  10059. bottom: 0.023
  10060. }
  10061. },
  10062. },
  10063. [
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(2.265, "feet"),
  10067. default: true
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10073. {
  10074. front: {
  10075. height: math.unit(5, "feet"),
  10076. weight: math.unit(30, "kg"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/vial/front.svg",
  10080. extra: 1365 / 1277,
  10081. bottom: 0.04
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(5, "feet"),
  10089. default: true
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10095. {
  10096. side: {
  10097. height: math.unit(3.4, "meters"),
  10098. weight: math.unit(1000, "lb"),
  10099. name: "Side",
  10100. image: {
  10101. source: "./media/characters/rovoska/side.svg",
  10102. extra: 4403 / 1515
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(3.4, "meters"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(8, "feet"),
  10119. weight: math.unit(315, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/gunner-rotthbauer/front.svg"
  10123. }
  10124. },
  10125. back: {
  10126. height: math.unit(8, "feet"),
  10127. weight: math.unit(315, "lb"),
  10128. name: "Back",
  10129. image: {
  10130. source: "./media/characters/gunner-rotthbauer/back.svg"
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(3.5, "inches")
  10138. },
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(8, "feet"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(250, "feet")
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(1, "AU")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 5 / 12, "feet"),
  10159. weight: math.unit(140, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/allatia/front.svg",
  10163. extra: 1227 / 1180,
  10164. bottom: 0.027
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(5 + 5 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(250, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(8, "miles")
  10181. }
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(120, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/tene/front.svg",
  10193. extra: 814/750,
  10194. bottom: 36/850
  10195. }
  10196. },
  10197. stomping: {
  10198. height: math.unit(2.025, "meters"),
  10199. weight: math.unit(120, "lb"),
  10200. name: "Stomping",
  10201. image: {
  10202. source: "./media/characters/tene/stomping.svg",
  10203. extra: 885/821,
  10204. bottom: 15/900
  10205. }
  10206. },
  10207. sitting: {
  10208. height: math.unit(1, "meter"),
  10209. weight: math.unit(120, "lb"),
  10210. name: "Sitting",
  10211. image: {
  10212. source: "./media/characters/tene/sitting.svg",
  10213. extra: 396/366,
  10214. bottom: 79/475
  10215. }
  10216. },
  10217. smiling: {
  10218. height: math.unit(1.2, "feet"),
  10219. name: "Smiling",
  10220. image: {
  10221. source: "./media/characters/tene/smiling.svg",
  10222. extra: 1364/1071,
  10223. bottom: 0/1364
  10224. }
  10225. },
  10226. smug: {
  10227. height: math.unit(1.3, "feet"),
  10228. name: "Smug",
  10229. image: {
  10230. source: "./media/characters/tene/smug.svg",
  10231. extra: 1323/1082,
  10232. bottom: 0/1323
  10233. }
  10234. },
  10235. feral: {
  10236. height: math.unit(3.9, "feet"),
  10237. weight: math.unit(250, "lb"),
  10238. name: "Feral",
  10239. image: {
  10240. source: "./media/characters/tene/feral.svg",
  10241. extra: 717 / 458,
  10242. bottom: 0.179
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(6, "feet")
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(300, "feet"),
  10254. default: true
  10255. },
  10256. {
  10257. name: "Megamacro",
  10258. height: math.unit(5, "miles")
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10264. {
  10265. side: {
  10266. height: math.unit(6, "feet"),
  10267. name: "Side",
  10268. image: {
  10269. source: "./media/characters/evander/side.svg",
  10270. extra: 877 / 477
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(0.83, "meters"),
  10278. default: true
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(12, "feet"),
  10287. weight: math.unit(1000, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10291. extra: 1762 / 1611
  10292. }
  10293. },
  10294. back: {
  10295. height: math.unit(12, "feet"),
  10296. weight: math.unit(1000, "lb"),
  10297. name: "Back",
  10298. image: {
  10299. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10300. extra: 1762 / 1611
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(12, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Kaiju",
  10312. height: math.unit(150, "feet")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/zero-alurus/front.svg"
  10325. }
  10326. },
  10327. back: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Back",
  10331. image: {
  10332. source: "./media/characters/zero-alurus/back.svg"
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(5 + 10 / 12, "feet")
  10340. },
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(60, "feet"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "Macro+",
  10348. height: math.unit(450, "feet")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(200, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/mega-shi/front.svg",
  10361. extra: 1279 / 1250,
  10362. bottom: 0.02
  10363. }
  10364. },
  10365. back: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(200, "lb"),
  10368. name: "Back",
  10369. image: {
  10370. source: "./media/characters/mega-shi/back.svg",
  10371. extra: 1279 / 1250,
  10372. bottom: 0.02
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(16 + 6 / 12, "feet")
  10380. },
  10381. {
  10382. name: "Third Dimension",
  10383. height: math.unit(40, "meters")
  10384. },
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(660, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(10, "miles")
  10393. },
  10394. {
  10395. name: "Planetary Launch",
  10396. height: math.unit(500, "miles")
  10397. },
  10398. {
  10399. name: "Interstellar",
  10400. height: math.unit(1e9, "miles")
  10401. },
  10402. {
  10403. name: "Leaving the Universe",
  10404. height: math.unit(1, "gigaparsec")
  10405. },
  10406. {
  10407. name: "Travelling Universes",
  10408. height: math.unit(30e15, "parsecs")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(5 + 4/12, "feet"),
  10417. weight: math.unit(120, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/odyssey/front.svg",
  10421. extra: 1747/1571,
  10422. bottom: 47/1794
  10423. }
  10424. },
  10425. side: {
  10426. height: math.unit(5.1, "feet"),
  10427. weight: math.unit(120, "lb"),
  10428. name: "Side",
  10429. image: {
  10430. source: "./media/characters/odyssey/side.svg",
  10431. extra: 1847/1619,
  10432. bottom: 47/1894
  10433. }
  10434. },
  10435. lounging: {
  10436. height: math.unit(1.464, "feet"),
  10437. weight: math.unit(120, "lb"),
  10438. name: "Lounging",
  10439. image: {
  10440. source: "./media/characters/odyssey/lounging.svg",
  10441. extra: 1235/837,
  10442. bottom: 551/1786
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(5 + 4 / 12, "feet")
  10450. },
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(1, "km")
  10454. },
  10455. {
  10456. name: "Megamacro",
  10457. height: math.unit(3000, "km")
  10458. },
  10459. {
  10460. name: "Gigamacro",
  10461. height: math.unit(1, "AU"),
  10462. default: true
  10463. },
  10464. {
  10465. name: "Omniversal",
  10466. height: math.unit(100e14, "lightyears")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(300, "lb"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/mekuto/front.svg",
  10479. extra: 921 / 832,
  10480. bottom: 0.03
  10481. }
  10482. },
  10483. hand: {
  10484. height: math.unit(6 / 10.24, "feet"),
  10485. name: "Hand",
  10486. image: {
  10487. source: "./media/characters/mekuto/hand.svg"
  10488. }
  10489. },
  10490. foot: {
  10491. height: math.unit(6 / 5.05, "feet"),
  10492. name: "Foot",
  10493. image: {
  10494. source: "./media/characters/mekuto/foot.svg"
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Minimicro",
  10501. height: math.unit(0.2, "inches")
  10502. },
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(1.5, "inches")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(5 + 11 / 12, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Minimacro",
  10514. height: math.unit(17 + 9 / 12, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(177.5, "feet")
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(152, "miles")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10528. {
  10529. front: {
  10530. height: math.unit(6.5, "inches"),
  10531. weight: math.unit(13, "oz"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/dafydd-tomos/front.svg",
  10535. extra: 2990 / 2603,
  10536. bottom: 0.03
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Micro",
  10543. height: math.unit(6.5, "inches"),
  10544. default: true
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(150, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/splinter/front.svg",
  10557. extra: 2990 / 2882,
  10558. bottom: 0.04
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/splinter/back.svg",
  10567. extra: 2990 / 2882,
  10568. bottom: 0.04
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(6, "feet")
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(230, "meters"),
  10580. default: true
  10581. },
  10582. ]
  10583. ))
  10584. characterMakers.push(() => makeCharacter(
  10585. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10586. {
  10587. front: {
  10588. height: math.unit(4 + 10 / 12, "feet"),
  10589. weight: math.unit(480, "lb"),
  10590. name: "Front",
  10591. image: {
  10592. source: "./media/characters/snow-gabumon/front.svg",
  10593. extra: 1140 / 963,
  10594. bottom: 0.058
  10595. }
  10596. },
  10597. back: {
  10598. height: math.unit(4 + 10 / 12, "feet"),
  10599. weight: math.unit(480, "lb"),
  10600. name: "Back",
  10601. image: {
  10602. source: "./media/characters/snow-gabumon/back.svg",
  10603. extra: 1115 / 962,
  10604. bottom: 0.041
  10605. }
  10606. },
  10607. frontUndresed: {
  10608. height: math.unit(4 + 10 / 12, "feet"),
  10609. weight: math.unit(480, "lb"),
  10610. name: "Front (Undressed)",
  10611. image: {
  10612. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10613. extra: 1061 / 960,
  10614. bottom: 0.045
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Micro",
  10621. height: math.unit(1, "inch")
  10622. },
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(4 + 10 / 12, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Macro",
  10630. height: math.unit(200, "feet")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(120, "miles")
  10635. },
  10636. {
  10637. name: "Gigamacro",
  10638. height: math.unit(9800, "miles")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(1.7, "meters"),
  10647. weight: math.unit(140, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/moody/front.svg",
  10651. extra: 3226 / 3007,
  10652. bottom: 0.087
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Micro",
  10659. height: math.unit(1, "mm")
  10660. },
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(1.7, "meters"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Macro",
  10668. height: math.unit(80, "meters")
  10669. },
  10670. {
  10671. name: "Macro+",
  10672. height: math.unit(500, "meters")
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(150, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/zyas/front.svg",
  10685. extra: 1180 / 1120,
  10686. bottom: 0.045
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(10, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Macro",
  10698. height: math.unit(500, "feet")
  10699. },
  10700. {
  10701. name: "Megamacro",
  10702. height: math.unit(5, "miles")
  10703. },
  10704. {
  10705. name: "Teramacro",
  10706. height: math.unit(150000, "miles")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/cuon/front.svg",
  10719. extra: 1390 / 1320,
  10720. bottom: 0.008
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(3, "inches")
  10728. },
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(18 + 9 / 12, "feet"),
  10732. default: true
  10733. },
  10734. {
  10735. name: "Macro",
  10736. height: math.unit(360, "feet")
  10737. },
  10738. {
  10739. name: "Megamacro",
  10740. height: math.unit(360, "miles")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10746. {
  10747. front: {
  10748. height: math.unit(2.4, "meters"),
  10749. weight: math.unit(70, "kg"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/nyanuxk/front.svg",
  10753. extra: 1172 / 1084,
  10754. bottom: 0.065
  10755. }
  10756. },
  10757. side: {
  10758. height: math.unit(2.4, "meters"),
  10759. weight: math.unit(70, "kg"),
  10760. name: "Side",
  10761. image: {
  10762. source: "./media/characters/nyanuxk/side.svg",
  10763. extra: 1190 / 1132,
  10764. bottom: 0.007
  10765. }
  10766. },
  10767. back: {
  10768. height: math.unit(2.4, "meters"),
  10769. weight: math.unit(70, "kg"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/nyanuxk/back.svg",
  10773. extra: 1200 / 1141,
  10774. bottom: 0.015
  10775. }
  10776. },
  10777. foot: {
  10778. height: math.unit(0.52, "meters"),
  10779. name: "Foot",
  10780. image: {
  10781. source: "./media/characters/nyanuxk/foot.svg"
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Micro",
  10788. height: math.unit(2, "cm")
  10789. },
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(2.4, "meters"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Smaller Macro",
  10797. height: math.unit(120, "meters")
  10798. },
  10799. {
  10800. name: "Bigger Macro",
  10801. height: math.unit(1.2, "km")
  10802. },
  10803. {
  10804. name: "Megamacro",
  10805. height: math.unit(15, "kilometers")
  10806. },
  10807. {
  10808. name: "Gigamacro",
  10809. height: math.unit(2000, "km")
  10810. },
  10811. {
  10812. name: "Teramacro",
  10813. height: math.unit(500000, "km")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10819. {
  10820. side: {
  10821. height: math.unit(6, "feet"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/ailbhe/side.svg",
  10825. extra: 757 / 464,
  10826. bottom: 0.041
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(1.07, "meters"),
  10834. default: true
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10840. {
  10841. front: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(120, "kg"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/zevulfius/front.svg",
  10847. extra: 965 / 903
  10848. }
  10849. },
  10850. side: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(120, "kg"),
  10853. name: "Side",
  10854. image: {
  10855. source: "./media/characters/zevulfius/side.svg",
  10856. extra: 939 / 900
  10857. }
  10858. },
  10859. back: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(120, "kg"),
  10862. name: "Back",
  10863. image: {
  10864. source: "./media/characters/zevulfius/back.svg",
  10865. extra: 918 / 854,
  10866. bottom: 0.005
  10867. }
  10868. },
  10869. foot: {
  10870. height: math.unit(6 / 3.72, "feet"),
  10871. name: "Foot",
  10872. image: {
  10873. source: "./media/characters/zevulfius/foot.svg"
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Macro",
  10880. height: math.unit(750, "meters")
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(20, "km"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Gigamacro",
  10889. height: math.unit(2000, "km")
  10890. },
  10891. {
  10892. name: "Teramacro",
  10893. height: math.unit(250000, "km")
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(100, "feet"),
  10902. weight: math.unit(350, "kg"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/rikes/front.svg",
  10906. extra: 1565 / 1483,
  10907. bottom: 0.017
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(100, "feet"),
  10915. default: true
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(8, "feet"),
  10924. weight: math.unit(356, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/adam-silver-mane/front.svg",
  10928. extra: 1036/937,
  10929. bottom: 63/1099
  10930. }
  10931. },
  10932. side: {
  10933. height: math.unit(8, "feet"),
  10934. weight: math.unit(356, "lb"),
  10935. name: "Side",
  10936. image: {
  10937. source: "./media/characters/adam-silver-mane/side.svg",
  10938. extra: 997/901,
  10939. bottom: 59/1056
  10940. }
  10941. },
  10942. frontNsfw: {
  10943. height: math.unit(8, "feet"),
  10944. weight: math.unit(356, "lb"),
  10945. name: "Front (NSFW)",
  10946. image: {
  10947. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10948. extra: 1036/937,
  10949. bottom: 63/1099
  10950. }
  10951. },
  10952. sideNsfw: {
  10953. height: math.unit(8, "feet"),
  10954. weight: math.unit(356, "lb"),
  10955. name: "Side (NSFW)",
  10956. image: {
  10957. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10958. extra: 997/901,
  10959. bottom: 59/1056
  10960. }
  10961. },
  10962. dick: {
  10963. height: math.unit(2.1, "feet"),
  10964. name: "Dick",
  10965. image: {
  10966. source: "./media/characters/adam-silver-mane/dick.svg"
  10967. }
  10968. },
  10969. taur: {
  10970. height: math.unit(16, "feet"),
  10971. weight: math.unit(1500, "kg"),
  10972. name: "Taur",
  10973. image: {
  10974. source: "./media/characters/adam-silver-mane/taur.svg",
  10975. extra: 1713 / 1571,
  10976. bottom: 0.01
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(8, "feet")
  10984. },
  10985. {
  10986. name: "Minimacro",
  10987. height: math.unit(80, "feet")
  10988. },
  10989. {
  10990. name: "MDA",
  10991. height: math.unit(80, "meters")
  10992. },
  10993. {
  10994. name: "Macro",
  10995. height: math.unit(800, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(8000, "feet")
  11001. },
  11002. {
  11003. name: "Gigamacro",
  11004. height: math.unit(800, "miles")
  11005. },
  11006. {
  11007. name: "Teramacro",
  11008. height: math.unit(80000, "miles")
  11009. },
  11010. {
  11011. name: "Celestial",
  11012. height: math.unit(8e6, "miles")
  11013. },
  11014. {
  11015. name: "Star Dragon",
  11016. height: math.unit(800000, "parsecs")
  11017. },
  11018. {
  11019. name: "Godly",
  11020. height: math.unit(800, "teraparsecs")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/ky'owin/front.svg",
  11033. extra: 3888 / 3068,
  11034. bottom: 0.015
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(6 + 8 / 12, "feet")
  11042. },
  11043. {
  11044. name: "Large",
  11045. height: math.unit(68, "feet")
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(132, "feet")
  11050. },
  11051. {
  11052. name: "Macro+",
  11053. height: math.unit(340, "feet")
  11054. },
  11055. {
  11056. name: "Macro++",
  11057. height: math.unit(680, "feet"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Megamacro",
  11062. height: math.unit(1, "mile")
  11063. },
  11064. {
  11065. name: "Megamacro+",
  11066. height: math.unit(10, "miles")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(4, "feet"),
  11075. weight: math.unit(50, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/mal/front.svg",
  11079. extra: 785 / 724,
  11080. bottom: 0.07
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(4, "inches")
  11088. },
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(4, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(200, "feet")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/jordan-deware/front.svg",
  11109. extra: 1191 / 1012
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Nano",
  11116. height: math.unit(0.01, "mm")
  11117. },
  11118. {
  11119. name: "Minimicro",
  11120. height: math.unit(1, "mm")
  11121. },
  11122. {
  11123. name: "Micro",
  11124. height: math.unit(0.5, "inches")
  11125. },
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(4, "feet"),
  11129. default: true
  11130. },
  11131. {
  11132. name: "Minimacro",
  11133. height: math.unit(40, "meters")
  11134. },
  11135. {
  11136. name: "Small Macro",
  11137. height: math.unit(400, "meters")
  11138. },
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(4, "miles")
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(40, "miles")
  11146. },
  11147. {
  11148. name: "Megamacro+",
  11149. height: math.unit(400, "miles")
  11150. },
  11151. {
  11152. name: "Gigamacro",
  11153. height: math.unit(400000, "miles")
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11159. {
  11160. side: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Side",
  11164. image: {
  11165. source: "./media/characters/kimiko/side.svg",
  11166. extra: 600 / 358
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(15, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(220, "feet")
  11179. },
  11180. {
  11181. name: "Macro+",
  11182. height: math.unit(1450, "feet")
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(11500, "feet")
  11187. },
  11188. {
  11189. name: "Gigamacro",
  11190. height: math.unit(9500, "miles")
  11191. },
  11192. {
  11193. name: "Teramacro",
  11194. height: math.unit(2208005005, "miles")
  11195. },
  11196. {
  11197. name: "Examacro",
  11198. height: math.unit(2750, "parsecs")
  11199. },
  11200. {
  11201. name: "Zettamacro",
  11202. height: math.unit(101500, "parsecs")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11208. {
  11209. front: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(70, "kg"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/andrew-sleepy/front.svg"
  11215. }
  11216. },
  11217. side: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(70, "kg"),
  11220. name: "Side",
  11221. image: {
  11222. source: "./media/characters/andrew-sleepy/side.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(1, "mm"),
  11230. default: true
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/judio/front.svg",
  11243. extra: 1258 / 1110
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(5 + 6 / 12, "feet")
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(1000, "feet"),
  11255. default: true
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(10, "miles")
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11265. {
  11266. frontDressed: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(68, "kg"),
  11269. name: "Front (Dressed)",
  11270. image: {
  11271. source: "./media/characters/nomaxice/front-dressed.svg",
  11272. extra: 1137/824,
  11273. bottom: 74/1211
  11274. }
  11275. },
  11276. frontShorts: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(68, "kg"),
  11279. name: "Front (Shorts)",
  11280. image: {
  11281. source: "./media/characters/nomaxice/front-shorts.svg",
  11282. extra: 1137/824,
  11283. bottom: 74/1211
  11284. }
  11285. },
  11286. back: {
  11287. height: math.unit(6, "feet"),
  11288. weight: math.unit(68, "kg"),
  11289. name: "Back",
  11290. image: {
  11291. source: "./media/characters/nomaxice/back.svg",
  11292. extra: 822/786,
  11293. bottom: 39/861
  11294. }
  11295. },
  11296. hand: {
  11297. height: math.unit(0.565, "feet"),
  11298. name: "Hand",
  11299. image: {
  11300. source: "./media/characters/nomaxice/hand.svg"
  11301. }
  11302. },
  11303. foot: {
  11304. height: math.unit(1, "feet"),
  11305. name: "Foot",
  11306. image: {
  11307. source: "./media/characters/nomaxice/foot.svg"
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(8, "cm")
  11315. },
  11316. {
  11317. name: "Norm",
  11318. height: math.unit(1.82, "m")
  11319. },
  11320. {
  11321. name: "Norm+",
  11322. height: math.unit(8.8, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Big",
  11327. height: math.unit(8, "meters")
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(18, "meters")
  11332. },
  11333. {
  11334. name: "Macro+",
  11335. height: math.unit(88, "meters")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(12, "feet"),
  11344. weight: math.unit(1.5, "tons"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/dydros/front.svg",
  11348. extra: 863 / 800,
  11349. bottom: 0.015
  11350. }
  11351. },
  11352. back: {
  11353. height: math.unit(12, "feet"),
  11354. weight: math.unit(1.5, "tons"),
  11355. name: "Back",
  11356. image: {
  11357. source: "./media/characters/dydros/back.svg",
  11358. extra: 900 / 843,
  11359. bottom: 0.005
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(12, "feet"),
  11367. default: true
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(100, "kg"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/riggi/front.svg",
  11380. extra: 5787 / 5303
  11381. }
  11382. },
  11383. hyper: {
  11384. height: math.unit(6 * 5 / 3, "feet"),
  11385. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11386. name: "Hyper",
  11387. image: {
  11388. source: "./media/characters/riggi/hyper.svg",
  11389. extra: 3595 / 3485
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "Small Macro",
  11396. height: math.unit(50, "feet")
  11397. },
  11398. {
  11399. name: "Default",
  11400. height: math.unit(200, "feet"),
  11401. default: true
  11402. },
  11403. {
  11404. name: "Loom",
  11405. height: math.unit(10000, "feet")
  11406. },
  11407. {
  11408. name: "Cruising Altitude",
  11409. height: math.unit(30000, "feet")
  11410. },
  11411. {
  11412. name: "Megamacro",
  11413. height: math.unit(100, "miles")
  11414. },
  11415. {
  11416. name: "Continent Sized",
  11417. height: math.unit(2800, "miles")
  11418. },
  11419. {
  11420. name: "Earth Sized",
  11421. height: math.unit(8000, "miles")
  11422. },
  11423. ]
  11424. ))
  11425. characterMakers.push(() => makeCharacter(
  11426. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11427. {
  11428. front: {
  11429. height: math.unit(6, "feet"),
  11430. weight: math.unit(250, "lb"),
  11431. name: "Front",
  11432. image: {
  11433. source: "./media/characters/alexi/front.svg",
  11434. extra: 3483 / 3291,
  11435. bottom: 0.04
  11436. }
  11437. },
  11438. back: {
  11439. height: math.unit(6, "feet"),
  11440. weight: math.unit(250, "lb"),
  11441. name: "Back",
  11442. image: {
  11443. source: "./media/characters/alexi/back.svg",
  11444. extra: 3533 / 3356,
  11445. bottom: 0.021
  11446. }
  11447. },
  11448. frontTransforming: {
  11449. height: math.unit(8.58, "feet"),
  11450. weight: math.unit(1300, "lb"),
  11451. name: "Transforming",
  11452. image: {
  11453. source: "./media/characters/alexi/front-transforming.svg",
  11454. extra: 437 / 409,
  11455. bottom: 19 / 458.66
  11456. }
  11457. },
  11458. frontTransformed: {
  11459. height: math.unit(12.5, "feet"),
  11460. weight: math.unit(4000, "lb"),
  11461. name: "Transformed",
  11462. image: {
  11463. source: "./media/characters/alexi/front-transformed.svg",
  11464. extra: 639 / 614,
  11465. bottom: 30.55 / 671
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Normal",
  11472. height: math.unit(14, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Minimacro",
  11477. height: math.unit(30, "meters")
  11478. },
  11479. {
  11480. name: "Macro",
  11481. height: math.unit(500, "meters")
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(9000, "km")
  11486. },
  11487. {
  11488. name: "Teramacro",
  11489. height: math.unit(384000, "km")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/kayroo/front.svg",
  11502. extra: 1153 / 1038,
  11503. bottom: 0.06
  11504. }
  11505. },
  11506. foot: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Foot",
  11510. image: {
  11511. source: "./media/characters/kayroo/foot.svg"
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(8, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Minimacro",
  11523. height: math.unit(250, "feet")
  11524. },
  11525. {
  11526. name: "Macro",
  11527. height: math.unit(2800, "feet")
  11528. },
  11529. {
  11530. name: "Megamacro",
  11531. height: math.unit(5200, "feet")
  11532. },
  11533. {
  11534. name: "Gigamacro",
  11535. height: math.unit(27000, "feet")
  11536. },
  11537. {
  11538. name: "Omega",
  11539. height: math.unit(45000, "feet")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(18, "feet"),
  11548. weight: math.unit(5800, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/rhys/front.svg",
  11552. extra: 3386 / 3090,
  11553. bottom: 0.07
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(18, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Working Size",
  11565. height: math.unit(200, "feet")
  11566. },
  11567. {
  11568. name: "Demolition Size",
  11569. height: math.unit(2000, "feet")
  11570. },
  11571. {
  11572. name: "Maximum Licensed Size",
  11573. height: math.unit(5, "miles")
  11574. },
  11575. {
  11576. name: "Maximum Observed Size",
  11577. height: math.unit(10, "yottameters")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(6, "feet"),
  11586. weight: math.unit(250, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/toto/front.svg",
  11590. extra: 527 / 479,
  11591. bottom: 0.05
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Micro",
  11598. height: math.unit(3, "feet")
  11599. },
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(10, "feet")
  11603. },
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(150, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Megamacro",
  11611. height: math.unit(1200, "feet")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "King", species: ["lion"], tags: ["anthro"] },
  11617. {
  11618. back: {
  11619. height: math.unit(6, "feet"),
  11620. weight: math.unit(150, "lb"),
  11621. name: "Back",
  11622. image: {
  11623. source: "./media/characters/king/back.svg"
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Micro",
  11630. height: math.unit(2, "inches")
  11631. },
  11632. {
  11633. name: "Normal",
  11634. height: math.unit(8, "feet")
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(200, "feet"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Megamacro",
  11643. height: math.unit(50, "miles")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(11, "feet"),
  11652. weight: math.unit(1400, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/cordite/front.svg",
  11656. extra: 1919/1827,
  11657. bottom: 40/1959
  11658. }
  11659. },
  11660. side: {
  11661. height: math.unit(11, "feet"),
  11662. weight: math.unit(1400, "lb"),
  11663. name: "Side",
  11664. image: {
  11665. source: "./media/characters/cordite/side.svg",
  11666. extra: 1908/1793,
  11667. bottom: 38/1946
  11668. }
  11669. },
  11670. back: {
  11671. height: math.unit(11, "feet"),
  11672. weight: math.unit(1400, "lb"),
  11673. name: "Back",
  11674. image: {
  11675. source: "./media/characters/cordite/back.svg",
  11676. extra: 1938/1837,
  11677. bottom: 10/1948
  11678. }
  11679. },
  11680. feral: {
  11681. height: math.unit(2, "feet"),
  11682. weight: math.unit(90, "lb"),
  11683. name: "Feral",
  11684. image: {
  11685. source: "./media/characters/cordite/feral.svg",
  11686. extra: 1260 / 755,
  11687. bottom: 0.05
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Normal",
  11694. height: math.unit(11, "feet"),
  11695. default: true
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/pianostrong/front.svg",
  11708. extra: 6577 / 6254,
  11709. bottom: 0.02
  11710. }
  11711. },
  11712. side: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Side",
  11716. image: {
  11717. source: "./media/characters/pianostrong/side.svg",
  11718. extra: 6106 / 5730
  11719. }
  11720. },
  11721. back: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Back",
  11725. image: {
  11726. source: "./media/characters/pianostrong/back.svg",
  11727. extra: 6085 / 5733,
  11728. bottom: 0.01
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(100, "feet")
  11736. },
  11737. {
  11738. name: "Macro+",
  11739. height: math.unit(300, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Macro++",
  11744. height: math.unit(1000, "feet")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/kona/front.svg",
  11757. extra: 2960 / 2629,
  11758. bottom: 0.005
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(11 + 8 / 12, "feet")
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(850, "feet"),
  11770. default: true
  11771. },
  11772. {
  11773. name: "Macro+",
  11774. height: math.unit(1.5, "km"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(80, "miles")
  11780. },
  11781. {
  11782. name: "Gigamacro",
  11783. height: math.unit(3500, "miles")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11789. {
  11790. side: {
  11791. height: math.unit(1.9, "meters"),
  11792. weight: math.unit(326, "kg"),
  11793. name: "Side",
  11794. image: {
  11795. source: "./media/characters/levi/side.svg",
  11796. extra: 1704 / 1334,
  11797. bottom: 0.02
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(1.9, "meters"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(20, "meters")
  11810. },
  11811. {
  11812. name: "Macro+",
  11813. height: math.unit(200, "meters")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(2, "km")
  11818. },
  11819. {
  11820. name: "Megamacro+",
  11821. height: math.unit(20, "km")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(2500, "km")
  11826. },
  11827. {
  11828. name: "Gigamacro+",
  11829. height: math.unit(120000, "km")
  11830. },
  11831. {
  11832. name: "Teramacro",
  11833. height: math.unit(7.77e6, "km")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11839. {
  11840. front: {
  11841. height: math.unit(6 + 4/12, "feet"),
  11842. weight: math.unit(190, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/bmc/front.svg",
  11846. extra: 1626/1472,
  11847. bottom: 79/1705
  11848. }
  11849. },
  11850. back: {
  11851. height: math.unit(6 + 4/12, "feet"),
  11852. weight: math.unit(190, "lb"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/bmc/back.svg",
  11856. extra: 1640/1479,
  11857. bottom: 45/1685
  11858. }
  11859. },
  11860. frontArmor: {
  11861. height: math.unit(6 + 4/12, "feet"),
  11862. weight: math.unit(190, "lb"),
  11863. name: "Front-armor",
  11864. image: {
  11865. source: "./media/characters/bmc/front-armor.svg",
  11866. extra: 1538/1468,
  11867. bottom: 79/1617
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Human-sized",
  11874. height: math.unit(6 + 4 / 12, "feet")
  11875. },
  11876. {
  11877. name: "Interactive Size",
  11878. height: math.unit(25, "feet")
  11879. },
  11880. {
  11881. name: "Small",
  11882. height: math.unit(250, "feet")
  11883. },
  11884. {
  11885. name: "Normal",
  11886. height: math.unit(1250, "feet"),
  11887. default: true
  11888. },
  11889. {
  11890. name: "Good Day",
  11891. height: math.unit(88, "miles")
  11892. },
  11893. {
  11894. name: "Largest Measured Size",
  11895. height: math.unit(105.960, "galaxies")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(20, "feet"),
  11904. weight: math.unit(2016, "kg"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/sven-the-kaiju/front.svg",
  11908. extra: 1277/1250,
  11909. bottom: 35/1312
  11910. }
  11911. },
  11912. mouth: {
  11913. height: math.unit(1.85, "feet"),
  11914. name: "Mouth",
  11915. image: {
  11916. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Fairy",
  11923. height: math.unit(6, "inches")
  11924. },
  11925. {
  11926. name: "Normal",
  11927. height: math.unit(20, "feet"),
  11928. default: true
  11929. },
  11930. {
  11931. name: "Rampage",
  11932. height: math.unit(200, "feet")
  11933. },
  11934. {
  11935. name: "Archfey Forest Guardian",
  11936. height: math.unit(1, "mile")
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11942. {
  11943. front: {
  11944. height: math.unit(4, "meters"),
  11945. weight: math.unit(2, "tons"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/marik/front.svg",
  11949. extra: 1057 / 1003,
  11950. bottom: 0.08
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Normal",
  11957. height: math.unit(4, "meters"),
  11958. default: true
  11959. },
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(20, "meters")
  11963. },
  11964. {
  11965. name: "Megamacro",
  11966. height: math.unit(50, "km")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(100, "km")
  11971. },
  11972. {
  11973. name: "Alpha Macro",
  11974. height: math.unit(7.88e7, "yottameters")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(110, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/mel/front.svg",
  11987. extra: 736 / 617,
  11988. bottom: 0.017
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Pico",
  11995. height: math.unit(3, "pm")
  11996. },
  11997. {
  11998. name: "Nano",
  11999. height: math.unit(3, "nm")
  12000. },
  12001. {
  12002. name: "Micro",
  12003. height: math.unit(0.3, "mm"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Micro+",
  12008. height: math.unit(3, "mm")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(5 + 10.5 / 12, "feet")
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12018. {
  12019. kaiju: {
  12020. height: math.unit(1.75, "meters"),
  12021. weight: math.unit(55, "kg"),
  12022. name: "Kaiju",
  12023. image: {
  12024. source: "./media/characters/lykonous/kaiju.svg",
  12025. extra: 1055 / 946,
  12026. bottom: 0.135
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Normal",
  12033. height: math.unit(2.5, "meters"),
  12034. default: true
  12035. },
  12036. {
  12037. name: "Kaiju Dragon",
  12038. height: math.unit(60, "meters")
  12039. },
  12040. {
  12041. name: "Mega Kaiju",
  12042. height: math.unit(120, "km")
  12043. },
  12044. {
  12045. name: "Giga Kaiju",
  12046. height: math.unit(200, "megameters")
  12047. },
  12048. {
  12049. name: "Terra Kaiju",
  12050. height: math.unit(400, "gigameters")
  12051. },
  12052. {
  12053. name: "Kaiju Dragon God",
  12054. height: math.unit(13000, "exaparsecs")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(150, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/blü/front.svg",
  12067. extra: 1883 / 1564,
  12068. bottom: 0.031
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(13, "feet"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Big Boi",
  12080. height: math.unit(150, "meters")
  12081. },
  12082. {
  12083. name: "Mini Stomper",
  12084. height: math.unit(300, "meters")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(1000, "meters")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(11000, "meters")
  12093. },
  12094. {
  12095. name: "Gigamacro",
  12096. height: math.unit(11000, "km")
  12097. },
  12098. {
  12099. name: "Teramacro",
  12100. height: math.unit(420000, "km")
  12101. },
  12102. {
  12103. name: "Examacro",
  12104. height: math.unit(120, "parsecs")
  12105. },
  12106. {
  12107. name: "God Tho",
  12108. height: math.unit(98000000000, "parsecs")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12114. {
  12115. taurFront: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(200, "lb"),
  12118. name: "Taur (Front)",
  12119. image: {
  12120. source: "./media/characters/scales/taur-front.svg",
  12121. extra: 1,
  12122. bottom: 0.05
  12123. }
  12124. },
  12125. taurBack: {
  12126. height: math.unit(6, "feet"),
  12127. weight: math.unit(200, "lb"),
  12128. name: "Taur (Back)",
  12129. image: {
  12130. source: "./media/characters/scales/taur-back.svg",
  12131. extra: 1,
  12132. bottom: 0.08
  12133. }
  12134. },
  12135. anthro: {
  12136. height: math.unit(6 * 7 / 12, "feet"),
  12137. weight: math.unit(100, "lb"),
  12138. name: "Anthro",
  12139. image: {
  12140. source: "./media/characters/scales/anthro.svg",
  12141. extra: 1,
  12142. bottom: 0.06
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(12, "feet"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(6, "feet"),
  12159. weight: math.unit(150, "lb"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/koragos/front.svg",
  12163. extra: 841 / 794,
  12164. bottom: 0.035
  12165. }
  12166. },
  12167. back: {
  12168. height: math.unit(6, "feet"),
  12169. weight: math.unit(150, "lb"),
  12170. name: "Back",
  12171. image: {
  12172. source: "./media/characters/koragos/back.svg",
  12173. extra: 841 / 810,
  12174. bottom: 0.022
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(6 + 11 / 12, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(490, "feet")
  12187. },
  12188. {
  12189. name: "Megamacro",
  12190. height: math.unit(10, "miles")
  12191. },
  12192. {
  12193. name: "Gigamacro",
  12194. height: math.unit(50, "miles")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(250, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/xylrem/front.svg",
  12207. extra: 3323 / 3050,
  12208. bottom: 0.065
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Micro",
  12215. height: math.unit(4, "feet")
  12216. },
  12217. {
  12218. name: "Normal",
  12219. height: math.unit(16, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(2720, "feet")
  12225. },
  12226. {
  12227. name: "Megamacro",
  12228. height: math.unit(25000, "miles")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(8, "feet"),
  12237. weight: math.unit(250, "kg"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/ikideru/front.svg",
  12241. extra: 930 / 870,
  12242. bottom: 0.087
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(8, "feet"),
  12247. weight: math.unit(250, "kg"),
  12248. name: "Back",
  12249. image: {
  12250. source: "./media/characters/ikideru/back.svg",
  12251. extra: 919 / 852,
  12252. bottom: 0.055
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Rare",
  12259. height: math.unit(8, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Playful Loom",
  12264. height: math.unit(80, "feet")
  12265. },
  12266. {
  12267. name: "City Leaner",
  12268. height: math.unit(230, "feet")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(2500, "feet")
  12273. },
  12274. {
  12275. name: "Gigamacro",
  12276. height: math.unit(26400, "feet")
  12277. },
  12278. {
  12279. name: "Tectonic Shifter",
  12280. height: math.unit(1.7, "megameters")
  12281. },
  12282. {
  12283. name: "Planet Carer",
  12284. height: math.unit(21, "megameters")
  12285. },
  12286. {
  12287. name: "God",
  12288. height: math.unit(11157.22, "parsecs")
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12294. {
  12295. front: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(120, "lb"),
  12298. name: "Front",
  12299. image: {
  12300. source: "./media/characters/neo/front.svg"
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Micro",
  12307. height: math.unit(2, "inches"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Human Size",
  12312. height: math.unit(5 + 8 / 12, "feet")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(13 + 10 / 12, "feet"),
  12321. weight: math.unit(5320, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/chauncey-chantz/front.svg",
  12325. extra: 1587 / 1435,
  12326. bottom: 0.02
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(13 + 10 / 12, "feet"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Macro",
  12338. height: math.unit(45, "feet")
  12339. },
  12340. {
  12341. name: "Megamacro",
  12342. height: math.unit(250, "miles")
  12343. },
  12344. {
  12345. name: "Planetary",
  12346. height: math.unit(10000, "miles")
  12347. },
  12348. {
  12349. name: "Galactic",
  12350. height: math.unit(40000, "parsecs")
  12351. },
  12352. {
  12353. name: "Universal",
  12354. height: math.unit(1, "yottameter")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12360. {
  12361. front: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(150, "lb"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/epifox/front.svg",
  12367. extra: 1,
  12368. bottom: 0.075
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(6, "inches")
  12376. },
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(12, "feet"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(3810, "feet")
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(500, "miles")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(1.8796, "m"),
  12397. weight: math.unit(230, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/colin-t/front.svg",
  12401. extra: 1272 / 1193,
  12402. bottom: 0.07
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Micro",
  12409. height: math.unit(0.571, "meters")
  12410. },
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(1.8796, "meters"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Tall",
  12418. height: math.unit(4, "meters")
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(67.241, "meters")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(371.856, "meters")
  12427. },
  12428. {
  12429. name: "Planetary",
  12430. height: math.unit(12631.5689, "km")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(1.85, "meters"),
  12439. weight: math.unit(80, "kg"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/matvei/front.svg",
  12443. extra: 614 / 594,
  12444. bottom: 0.01
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(1.85, "meters"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(5 + 9 / 12, "feet"),
  12461. weight: math.unit(70, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/quincy/front.svg",
  12465. extra: 3041 / 2751
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(5 + 9 / 12, "feet"),
  12470. weight: math.unit(70, "lb"),
  12471. name: "Back",
  12472. image: {
  12473. source: "./media/characters/quincy/back.svg",
  12474. extra: 3041 / 2751
  12475. }
  12476. },
  12477. flying: {
  12478. height: math.unit(5 + 4 / 12, "feet"),
  12479. weight: math.unit(70, "lb"),
  12480. name: "Flying",
  12481. image: {
  12482. source: "./media/characters/quincy/flying.svg",
  12483. extra: 1044 / 930
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Micro",
  12490. height: math.unit(3, "cm")
  12491. },
  12492. {
  12493. name: "Normal",
  12494. height: math.unit(5 + 9 / 12, "feet")
  12495. },
  12496. {
  12497. name: "Macro",
  12498. height: math.unit(200, "meters"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Megamacro",
  12503. height: math.unit(1000, "meters")
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12509. {
  12510. front: {
  12511. height: math.unit(3 + 11/12, "feet"),
  12512. weight: math.unit(50, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/vanrel/front.svg",
  12516. extra: 1104/949,
  12517. bottom: 52/1156
  12518. }
  12519. },
  12520. back: {
  12521. height: math.unit(3 + 11/12, "feet"),
  12522. weight: math.unit(50, "lb"),
  12523. name: "Back",
  12524. image: {
  12525. source: "./media/characters/vanrel/back.svg",
  12526. extra: 1119/976,
  12527. bottom: 37/1156
  12528. }
  12529. },
  12530. tome: {
  12531. height: math.unit(1.35, "feet"),
  12532. weight: math.unit(10, "lb"),
  12533. name: "Vanrel's Tome",
  12534. rename: true,
  12535. image: {
  12536. source: "./media/characters/vanrel/tome.svg"
  12537. }
  12538. },
  12539. beans: {
  12540. height: math.unit(0.89, "feet"),
  12541. name: "Beans",
  12542. image: {
  12543. source: "./media/characters/vanrel/beans.svg"
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(3 + 11/12, "feet"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(7 + 5 / 12, "feet"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/kuiper-vanrel/front.svg",
  12563. extra: 1219/1169,
  12564. bottom: 69/1288
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(7 + 5 / 12, "feet"),
  12569. name: "Back",
  12570. image: {
  12571. source: "./media/characters/kuiper-vanrel/back.svg",
  12572. extra: 1236/1193,
  12573. bottom: 27/1263
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(0.55, "meters"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/kuiper-vanrel/foot.svg",
  12581. }
  12582. },
  12583. battle: {
  12584. height: math.unit(6.824, "feet"),
  12585. name: "Battle",
  12586. image: {
  12587. source: "./media/characters/kuiper-vanrel/battle.svg",
  12588. extra: 1466 / 1327,
  12589. bottom: 29 / 1492.5
  12590. }
  12591. },
  12592. meerkui: {
  12593. height: math.unit(18, "inches"),
  12594. name: "Meerkui",
  12595. image: {
  12596. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12597. extra: 1354/1289,
  12598. bottom: 69/1423
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(7 + 5 / 12, "feet"),
  12606. default: true
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(8 + 5 / 12, "feet"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/keset-vanrel/front.svg",
  12618. extra: 1231/1148,
  12619. bottom: 82/1313
  12620. }
  12621. },
  12622. back: {
  12623. height: math.unit(8 + 5 / 12, "feet"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/keset-vanrel/back.svg",
  12627. extra: 1240/1174,
  12628. bottom: 33/1273
  12629. }
  12630. },
  12631. hand: {
  12632. height: math.unit(0.6, "meters"),
  12633. name: "Hand",
  12634. image: {
  12635. source: "./media/characters/keset-vanrel/hand.svg"
  12636. }
  12637. },
  12638. foot: {
  12639. height: math.unit(0.94978, "meters"),
  12640. name: "Foot",
  12641. image: {
  12642. source: "./media/characters/keset-vanrel/foot.svg"
  12643. }
  12644. },
  12645. battle: {
  12646. height: math.unit(7.408, "feet"),
  12647. name: "Battle",
  12648. image: {
  12649. source: "./media/characters/keset-vanrel/battle.svg",
  12650. extra: 1890 / 1386,
  12651. bottom: 73.28 / 1970
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(8 + 5 / 12, "feet"),
  12659. default: true
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(6, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/neos/front.svg",
  12672. extra: 1696 / 992,
  12673. bottom: 0.14
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(54, "cm"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(100, "m")
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(10, "km")
  12690. },
  12691. {
  12692. name: "Megamacro+",
  12693. height: math.unit(100, "km")
  12694. },
  12695. {
  12696. name: "Gigamacro",
  12697. height: math.unit(100, "Mm")
  12698. },
  12699. {
  12700. name: "Teramacro",
  12701. height: math.unit(100, "Gm")
  12702. },
  12703. {
  12704. name: "Examacro",
  12705. height: math.unit(100, "Em")
  12706. },
  12707. {
  12708. name: "Godly",
  12709. height: math.unit(10000, "Ym")
  12710. },
  12711. {
  12712. name: "Beyond Godly",
  12713. height: math.unit(25, "multiverses")
  12714. },
  12715. ]
  12716. ))
  12717. characterMakers.push(() => makeCharacter(
  12718. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12719. {
  12720. feminine: {
  12721. height: math.unit(5, "feet"),
  12722. weight: math.unit(100, "lb"),
  12723. name: "Feminine",
  12724. image: {
  12725. source: "./media/characters/sammy-mouse/feminine.svg",
  12726. extra: 2526 / 2425,
  12727. bottom: 0.123
  12728. }
  12729. },
  12730. masculine: {
  12731. height: math.unit(5, "feet"),
  12732. weight: math.unit(100, "lb"),
  12733. name: "Masculine",
  12734. image: {
  12735. source: "./media/characters/sammy-mouse/masculine.svg",
  12736. extra: 2526 / 2425,
  12737. bottom: 0.123
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Micro",
  12744. height: math.unit(5, "inches")
  12745. },
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(5, "feet"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(60, "feet")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(4, "feet"),
  12762. weight: math.unit(50, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/kole/front.svg",
  12766. extra: 1423 / 1303,
  12767. bottom: 0.025
  12768. }
  12769. },
  12770. back: {
  12771. height: math.unit(4, "feet"),
  12772. weight: math.unit(50, "lb"),
  12773. name: "Back",
  12774. image: {
  12775. source: "./media/characters/kole/back.svg",
  12776. extra: 1426 / 1280,
  12777. bottom: 0.02
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(4, "feet"),
  12785. default: true
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(2.5, "feet"),
  12794. weight: math.unit(32, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/rufran/front.svg",
  12798. extra: 1313/885,
  12799. bottom: 94/1407
  12800. }
  12801. },
  12802. side: {
  12803. height: math.unit(2.5, "feet"),
  12804. weight: math.unit(32, "lb"),
  12805. name: "Side",
  12806. image: {
  12807. source: "./media/characters/rufran/side.svg",
  12808. extra: 1109/852,
  12809. bottom: 118/1227
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(2.5, "feet"),
  12814. weight: math.unit(32, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/rufran/back.svg",
  12818. extra: 1280/878,
  12819. bottom: 131/1411
  12820. }
  12821. },
  12822. mouth: {
  12823. height: math.unit(1.13, "feet"),
  12824. name: "Mouth",
  12825. image: {
  12826. source: "./media/characters/rufran/mouth.svg"
  12827. }
  12828. },
  12829. foot: {
  12830. height: math.unit(1.33, "feet"),
  12831. name: "Foot",
  12832. image: {
  12833. source: "./media/characters/rufran/foot.svg"
  12834. }
  12835. },
  12836. koboldFront: {
  12837. height: math.unit(2 + 6 / 12, "feet"),
  12838. weight: math.unit(20, "lb"),
  12839. name: "Front (Kobold)",
  12840. image: {
  12841. source: "./media/characters/rufran/kobold-front.svg",
  12842. extra: 2041 / 1839,
  12843. bottom: 0.055
  12844. }
  12845. },
  12846. koboldBack: {
  12847. height: math.unit(2 + 6 / 12, "feet"),
  12848. weight: math.unit(20, "lb"),
  12849. name: "Back (Kobold)",
  12850. image: {
  12851. source: "./media/characters/rufran/kobold-back.svg",
  12852. extra: 2054 / 1839,
  12853. bottom: 0.01
  12854. }
  12855. },
  12856. koboldHand: {
  12857. height: math.unit(0.2166, "meters"),
  12858. name: "Hand (Kobold)",
  12859. image: {
  12860. source: "./media/characters/rufran/kobold-hand.svg"
  12861. }
  12862. },
  12863. koboldFoot: {
  12864. height: math.unit(0.185, "meters"),
  12865. name: "Foot (Kobold)",
  12866. image: {
  12867. source: "./media/characters/rufran/kobold-foot.svg"
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Micro",
  12874. height: math.unit(1, "inch")
  12875. },
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(2 + 6 / 12, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Big",
  12883. height: math.unit(60, "feet")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(325, "feet")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(0.3, "meters"),
  12896. weight: math.unit(3.5, "kg"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/chip/front.svg",
  12900. extra: 748 / 674
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Micro",
  12907. height: math.unit(1, "inch"),
  12908. default: true
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12914. {
  12915. side: {
  12916. height: math.unit(2.3, "meters"),
  12917. weight: math.unit(3500, "lb"),
  12918. name: "Side",
  12919. image: {
  12920. source: "./media/characters/torvid/side.svg",
  12921. extra: 1972 / 722,
  12922. bottom: 0.035
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(2.3, "meters"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(2, "meters"),
  12939. weight: math.unit(150.5, "kg"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/susan/front.svg",
  12943. extra: 693 / 635,
  12944. bottom: 0.05
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(505, "miles"),
  12952. default: true
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6, "feet"),
  12961. weight: math.unit(150, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/raindrops/front.svg",
  12965. extra: 2655 / 2461,
  12966. bottom: 49 / 2705
  12967. }
  12968. },
  12969. back: {
  12970. height: math.unit(6, "feet"),
  12971. weight: math.unit(150, "lb"),
  12972. name: "Back",
  12973. image: {
  12974. source: "./media/characters/raindrops/back.svg",
  12975. extra: 2574 / 2400,
  12976. bottom: 65 / 2634
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Micro",
  12983. height: math.unit(6, "inches")
  12984. },
  12985. {
  12986. name: "Normal",
  12987. height: math.unit(6 + 2 / 12, "feet")
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(131, "feet"),
  12992. default: true
  12993. },
  12994. {
  12995. name: "Megamacro",
  12996. height: math.unit(15, "miles")
  12997. },
  12998. {
  12999. name: "Gigamacro",
  13000. height: math.unit(4000, "miles")
  13001. },
  13002. {
  13003. name: "Teramacro",
  13004. height: math.unit(315000, "miles")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(2.794, "meters"),
  13013. weight: math.unit(325, "kg"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/tezwa/front.svg",
  13017. extra: 2083 / 1906,
  13018. bottom: 0.031
  13019. }
  13020. },
  13021. foot: {
  13022. height: math.unit(0.687, "meters"),
  13023. name: "Foot",
  13024. image: {
  13025. source: "./media/characters/tezwa/foot.svg"
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(9 + 2 / 12, "feet"),
  13033. default: true
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(58, "feet"),
  13042. weight: math.unit(89000, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/typhus/front.svg",
  13046. extra: 816 / 800,
  13047. bottom: 0.065
  13048. }
  13049. },
  13050. },
  13051. [
  13052. {
  13053. name: "Macro",
  13054. height: math.unit(58, "feet"),
  13055. default: true
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(12, "feet"),
  13064. weight: math.unit(6, "tonnes"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/lyra-von-wulf/front.svg",
  13068. extra: 1,
  13069. bottom: 0.10
  13070. }
  13071. },
  13072. frontMecha: {
  13073. height: math.unit(12, "feet"),
  13074. weight: math.unit(12, "tonnes"),
  13075. name: "Front (Mecha)",
  13076. image: {
  13077. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13078. extra: 1,
  13079. bottom: 0.042
  13080. }
  13081. },
  13082. maw: {
  13083. height: math.unit(2.2, "feet"),
  13084. name: "Maw",
  13085. image: {
  13086. source: "./media/characters/lyra-von-wulf/maw.svg"
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(12, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Classic",
  13098. height: math.unit(50, "feet")
  13099. },
  13100. {
  13101. name: "Macro",
  13102. height: math.unit(500, "feet")
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(1, "mile")
  13107. },
  13108. {
  13109. name: "Gigamacro",
  13110. height: math.unit(400, "miles")
  13111. },
  13112. {
  13113. name: "Teramacro",
  13114. height: math.unit(22000, "miles")
  13115. },
  13116. {
  13117. name: "Solarmacro",
  13118. height: math.unit(8600000, "miles")
  13119. },
  13120. {
  13121. name: "Galactic",
  13122. height: math.unit(1057000, "lightyears")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(6 + 10 / 12, "feet"),
  13131. weight: math.unit(150, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/dixon/front.svg",
  13135. extra: 3361 / 3209,
  13136. bottom: 0.01
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(6 + 10 / 12, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Big",
  13148. height: math.unit(12, "meters")
  13149. },
  13150. {
  13151. name: "Macro",
  13152. height: math.unit(500, "meters")
  13153. },
  13154. {
  13155. name: "Megamacro",
  13156. height: math.unit(2, "km")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(185, "cm"),
  13165. weight: math.unit(68, "kg"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/kauko/front.svg",
  13169. extra: 1455 / 1421,
  13170. bottom: 0.03
  13171. }
  13172. },
  13173. back: {
  13174. height: math.unit(185, "cm"),
  13175. weight: math.unit(68, "kg"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/kauko/back.svg",
  13179. extra: 1455 / 1421,
  13180. bottom: 0.004
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(185, "cm"),
  13188. default: true
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/varg/front.svg",
  13201. extra: 1108 / 1018,
  13202. bottom: 0.0375
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(5, "meters")
  13210. },
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(200, "meters")
  13214. },
  13215. {
  13216. name: "Megamacro",
  13217. height: math.unit(20, "kilometers")
  13218. },
  13219. {
  13220. name: "True Size",
  13221. height: math.unit(211, "km"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(1000, "km")
  13227. },
  13228. {
  13229. name: "Gigamacro+",
  13230. height: math.unit(8000, "km")
  13231. },
  13232. {
  13233. name: "Teramacro",
  13234. height: math.unit(1000000, "km")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(7 + 7 / 12, "feet"),
  13243. weight: math.unit(267, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/dayza/front.svg",
  13247. extra: 1262 / 1200,
  13248. bottom: 0.035
  13249. }
  13250. },
  13251. side: {
  13252. height: math.unit(7 + 7 / 12, "feet"),
  13253. weight: math.unit(267, "lb"),
  13254. name: "Side",
  13255. image: {
  13256. source: "./media/characters/dayza/side.svg",
  13257. extra: 1295 / 1245,
  13258. bottom: 0.05
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(7 + 7 / 12, "feet"),
  13263. weight: math.unit(267, "lb"),
  13264. name: "Back",
  13265. image: {
  13266. source: "./media/characters/dayza/back.svg",
  13267. extra: 1241 / 1170
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(7 + 7 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(155, "feet")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(6 + 5 / 12, "feet"),
  13288. weight: math.unit(160, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/xanthos/front.svg",
  13292. extra: 1,
  13293. bottom: 0.04
  13294. }
  13295. },
  13296. back: {
  13297. height: math.unit(6 + 5 / 12, "feet"),
  13298. weight: math.unit(160, "lb"),
  13299. name: "Back",
  13300. image: {
  13301. source: "./media/characters/xanthos/back.svg",
  13302. extra: 1,
  13303. bottom: 0.03
  13304. }
  13305. },
  13306. hand: {
  13307. height: math.unit(0.928, "feet"),
  13308. name: "Hand",
  13309. image: {
  13310. source: "./media/characters/xanthos/hand.svg"
  13311. }
  13312. },
  13313. foot: {
  13314. height: math.unit(1.286, "feet"),
  13315. name: "Foot",
  13316. image: {
  13317. source: "./media/characters/xanthos/foot.svg"
  13318. }
  13319. },
  13320. },
  13321. [
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(6 + 5 / 12, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Normal+",
  13329. height: math.unit(6, "meters")
  13330. },
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(40, "feet")
  13334. },
  13335. {
  13336. name: "Macro+",
  13337. height: math.unit(200, "meters")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(20, "km")
  13342. },
  13343. {
  13344. name: "Megamacro+",
  13345. height: math.unit(100, "km")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(200, "megameters")
  13350. },
  13351. {
  13352. name: "Gigamacro+",
  13353. height: math.unit(1.5, "gigameters")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(6 + 3 / 12, "feet"),
  13362. weight: math.unit(215, "lb"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/grynn/front.svg",
  13366. extra: 4627 / 4209,
  13367. bottom: 0.047
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Micro",
  13374. height: math.unit(6, "inches")
  13375. },
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(6 + 3 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Big",
  13383. height: math.unit(104, "feet")
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(944, "feet")
  13388. },
  13389. {
  13390. name: "Macro+",
  13391. height: math.unit(9480, "feet")
  13392. },
  13393. {
  13394. name: "Megamacro",
  13395. height: math.unit(78752, "feet")
  13396. },
  13397. {
  13398. name: "Megamacro+",
  13399. height: math.unit(630128, "feet")
  13400. },
  13401. {
  13402. name: "Megamacro++",
  13403. height: math.unit(3150695, "feet")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(7 + 5 / 12, "feet"),
  13412. weight: math.unit(450, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/mocha-aura/front.svg",
  13416. extra: 1907 / 1817,
  13417. bottom: 0.04
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(7 + 5 / 12, "feet"),
  13422. weight: math.unit(450, "lb"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/mocha-aura/back.svg",
  13426. extra: 1900 / 1825,
  13427. bottom: 0.045
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Nano",
  13434. height: math.unit(1, "nm")
  13435. },
  13436. {
  13437. name: "Megamicro",
  13438. height: math.unit(1, "mm")
  13439. },
  13440. {
  13441. name: "Micro",
  13442. height: math.unit(3, "inches")
  13443. },
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(7 + 5 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(30, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(3500, "feet")
  13456. },
  13457. {
  13458. name: "Teramacro",
  13459. height: math.unit(500000, "miles")
  13460. },
  13461. {
  13462. name: "Petamacro",
  13463. height: math.unit(50000000000000000, "parsecs")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(150, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/ilisha-devya/front.svg",
  13476. extra: 1053/1049,
  13477. bottom: 270/1323
  13478. }
  13479. },
  13480. back: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Back",
  13484. image: {
  13485. source: "./media/characters/ilisha-devya/back.svg",
  13486. extra: 1131/1128,
  13487. bottom: 39/1170
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Macro",
  13494. height: math.unit(500, "feet"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(10, "miles")
  13500. },
  13501. {
  13502. name: "Gigamacro",
  13503. height: math.unit(100000, "miles")
  13504. },
  13505. {
  13506. name: "Examacro",
  13507. height: math.unit(1e9, "lightyears")
  13508. },
  13509. {
  13510. name: "Omniversal",
  13511. height: math.unit(1e33, "lightyears")
  13512. },
  13513. {
  13514. name: "Beyond Infinite",
  13515. height: math.unit(1e100, "lightyears")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13521. {
  13522. Side: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Side",
  13526. image: {
  13527. source: "./media/characters/mira/side.svg",
  13528. extra: 900 / 799,
  13529. bottom: 0.02
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Human Size",
  13536. height: math.unit(6, "feet")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(100, "feet"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(10, "miles")
  13546. },
  13547. {
  13548. name: "Gigamacro",
  13549. height: math.unit(25000, "miles")
  13550. },
  13551. {
  13552. name: "Teramacro",
  13553. height: math.unit(300, "AU")
  13554. },
  13555. {
  13556. name: "Full Size",
  13557. height: math.unit(4.5e10, "lightyears")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/holly/front.svg",
  13570. extra: 639 / 606
  13571. }
  13572. },
  13573. back: {
  13574. height: math.unit(6, "feet"),
  13575. weight: math.unit(150, "lb"),
  13576. name: "Back",
  13577. image: {
  13578. source: "./media/characters/holly/back.svg",
  13579. extra: 623 / 598
  13580. }
  13581. },
  13582. frontWorking: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front (Working)",
  13586. image: {
  13587. source: "./media/characters/holly/front-working.svg",
  13588. extra: 607 / 577,
  13589. bottom: 0.048
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(12 + 3 / 12, "feet"),
  13597. default: true
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(150, "lb"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/porter/front.svg",
  13610. extra: 1,
  13611. bottom: 0.01
  13612. }
  13613. },
  13614. frontRobes: {
  13615. height: math.unit(6, "feet"),
  13616. weight: math.unit(150, "lb"),
  13617. name: "Front (Robes)",
  13618. image: {
  13619. source: "./media/characters/porter/front-robes.svg",
  13620. extra: 1.01,
  13621. bottom: 0.01
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(11 + 9 / 12, "feet"),
  13629. default: true
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13635. {
  13636. legendary: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Legendary",
  13640. image: {
  13641. source: "./media/characters/lucy/legendary.svg",
  13642. extra: 1355 / 1100,
  13643. bottom: 0.045
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Legendary",
  13650. height: math.unit(86882 * 2, "miles"),
  13651. default: true
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(6, "feet"),
  13660. weight: math.unit(150, "lb"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/drusilla/front.svg",
  13664. extra: 678 / 635,
  13665. bottom: 0.03
  13666. }
  13667. },
  13668. back: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(150, "lb"),
  13671. name: "Back",
  13672. image: {
  13673. source: "./media/characters/drusilla/back.svg",
  13674. extra: 678 / 635,
  13675. bottom: 0.005
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(100, "feet")
  13683. },
  13684. {
  13685. name: "Canon Height",
  13686. height: math.unit(2000, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(180, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/renard-thatch/front.svg",
  13700. extra: 2411 / 2275,
  13701. bottom: 0.01
  13702. }
  13703. },
  13704. frontPosing: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(180, "lb"),
  13707. name: "Front (Posing)",
  13708. image: {
  13709. source: "./media/characters/renard-thatch/front-posing.svg",
  13710. extra: 2381 / 2261,
  13711. bottom: 0.01
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(180, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/renard-thatch/back.svg",
  13720. extra: 2428 / 2288
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Micro",
  13727. height: math.unit(3, "inches")
  13728. },
  13729. {
  13730. name: "Default",
  13731. height: math.unit(6, "feet"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(75, "feet")
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(1450, "feet"),
  13745. weight: math.unit(1.21e6, "tons"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/sekvra/front.svg",
  13749. extra: 1193/1190,
  13750. bottom: 78/1271
  13751. }
  13752. },
  13753. side: {
  13754. height: math.unit(1450, "feet"),
  13755. weight: math.unit(1.21e6, "tons"),
  13756. name: "Side",
  13757. image: {
  13758. source: "./media/characters/sekvra/side.svg",
  13759. extra: 1193/1190,
  13760. bottom: 52/1245
  13761. }
  13762. },
  13763. back: {
  13764. height: math.unit(1450, "feet"),
  13765. weight: math.unit(1.21e6, "tons"),
  13766. name: "Back",
  13767. image: {
  13768. source: "./media/characters/sekvra/back.svg",
  13769. extra: 1219/1216,
  13770. bottom: 21/1240
  13771. }
  13772. },
  13773. frontClothed: {
  13774. height: math.unit(1450, "feet"),
  13775. weight: math.unit(1.21e6, "tons"),
  13776. name: "Front (Clothed)",
  13777. image: {
  13778. source: "./media/characters/sekvra/front-clothed.svg",
  13779. extra: 1192/1189,
  13780. bottom: 79/1271
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Macro",
  13787. height: math.unit(1450, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(15000, "feet")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(6, "feet"),
  13801. weight: math.unit(150, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/carmine/front.svg",
  13805. extra: 1,
  13806. bottom: 0.035
  13807. }
  13808. },
  13809. frontArmor: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front (Armor)",
  13813. image: {
  13814. source: "./media/characters/carmine/front-armor.svg",
  13815. extra: 1,
  13816. bottom: 0.035
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Large",
  13823. height: math.unit(1, "mile")
  13824. },
  13825. {
  13826. name: "Huge",
  13827. height: math.unit(40, "miles"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Colossal",
  13832. height: math.unit(2500, "miles")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/elyssia/front.svg",
  13845. extra: 2201 / 2035,
  13846. bottom: 0.05
  13847. }
  13848. },
  13849. frontClothed: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front (Clothed)",
  13853. image: {
  13854. source: "./media/characters/elyssia/front-clothed.svg",
  13855. extra: 2201 / 2035,
  13856. bottom: 0.05
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/elyssia/back.svg",
  13865. extra: 2201 / 2035,
  13866. bottom: 0.013
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Smaller",
  13873. height: math.unit(150, "feet")
  13874. },
  13875. {
  13876. name: "Standard",
  13877. height: math.unit(1400, "feet"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Distracted",
  13882. height: math.unit(15000, "feet")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(7 + 4/12, "feet"),
  13891. weight: math.unit(690, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/geno-maxwell/front.svg",
  13895. extra: 984/856,
  13896. bottom: 87/1071
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(7 + 4/12, "feet"),
  13901. weight: math.unit(690, "lb"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/geno-maxwell/back.svg",
  13905. extra: 981/854,
  13906. bottom: 57/1038
  13907. }
  13908. },
  13909. frontCostume: {
  13910. height: math.unit(7 + 4/12, "feet"),
  13911. weight: math.unit(690, "lb"),
  13912. name: "Front (Costume)",
  13913. image: {
  13914. source: "./media/characters/geno-maxwell/front-costume.svg",
  13915. extra: 984/856,
  13916. bottom: 87/1071
  13917. }
  13918. },
  13919. backcostume: {
  13920. height: math.unit(7 + 4/12, "feet"),
  13921. weight: math.unit(690, "lb"),
  13922. name: "Back (Costume)",
  13923. image: {
  13924. source: "./media/characters/geno-maxwell/back-costume.svg",
  13925. extra: 981/854,
  13926. bottom: 57/1038
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Micro",
  13933. height: math.unit(3, "inches")
  13934. },
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(7 + 4 / 12, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(220, "feet")
  13943. },
  13944. {
  13945. name: "Megamacro",
  13946. height: math.unit(11, "miles")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(7 + 4/12, "feet"),
  13955. weight: math.unit(750, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/regena-maxwell/front.svg",
  13959. extra: 984/856,
  13960. bottom: 87/1071
  13961. }
  13962. },
  13963. back: {
  13964. height: math.unit(7 + 4/12, "feet"),
  13965. weight: math.unit(750, "lb"),
  13966. name: "Back",
  13967. image: {
  13968. source: "./media/characters/regena-maxwell/back.svg",
  13969. extra: 981/854,
  13970. bottom: 57/1038
  13971. }
  13972. },
  13973. frontCostume: {
  13974. height: math.unit(7 + 4/12, "feet"),
  13975. weight: math.unit(750, "lb"),
  13976. name: "Front (Costume)",
  13977. image: {
  13978. source: "./media/characters/regena-maxwell/front-costume.svg",
  13979. extra: 984/856,
  13980. bottom: 87/1071
  13981. }
  13982. },
  13983. backcostume: {
  13984. height: math.unit(7 + 4/12, "feet"),
  13985. weight: math.unit(750, "lb"),
  13986. name: "Back (Costume)",
  13987. image: {
  13988. source: "./media/characters/regena-maxwell/back-costume.svg",
  13989. extra: 981/854,
  13990. bottom: 57/1038
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(7 + 4 / 12, "feet"),
  13998. default: true
  13999. },
  14000. {
  14001. name: "Macro",
  14002. height: math.unit(220, "feet")
  14003. },
  14004. {
  14005. name: "Megamacro",
  14006. height: math.unit(11, "miles")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14019. extra: 860 / 690,
  14020. bottom: 0.03
  14021. }
  14022. },
  14023. },
  14024. [
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(1.7, "meters"),
  14028. default: true
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14034. {
  14035. front: {
  14036. height: math.unit(6, "feet"),
  14037. weight: math.unit(150, "lb"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/quilly/front.svg",
  14041. extra: 890 / 776
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Gigamacro",
  14048. height: math.unit(404090, "miles"),
  14049. default: true
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(7 + 8 / 12, "feet"),
  14058. weight: math.unit(350, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/tempest/front.svg",
  14062. extra: 1175 / 1086,
  14063. bottom: 0.02
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(7 + 8 / 12, "feet"),
  14071. default: true
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14077. {
  14078. side: {
  14079. height: math.unit(4 + 5 / 12, "feet"),
  14080. weight: math.unit(80, "lb"),
  14081. name: "Side",
  14082. image: {
  14083. source: "./media/characters/rodger/side.svg",
  14084. extra: 1235 / 1118
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Micro",
  14091. height: math.unit(1, "inch")
  14092. },
  14093. {
  14094. name: "Normal",
  14095. height: math.unit(4 + 5 / 12, "feet"),
  14096. default: true
  14097. },
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(120, "feet")
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(6, "feet"),
  14109. weight: math.unit(150, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/danyel/front.svg",
  14113. extra: 1185 / 1123,
  14114. bottom: 0.05
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Shrunken",
  14121. height: math.unit(0.5, "mm")
  14122. },
  14123. {
  14124. name: "Micro",
  14125. height: math.unit(1, "mm"),
  14126. default: true
  14127. },
  14128. {
  14129. name: "Upsized",
  14130. height: math.unit(5 + 5 / 12, "feet")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(5 + 6 / 12, "feet"),
  14139. weight: math.unit(200, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/vivian-bijoux/front.svg",
  14143. extra: 1217/1209,
  14144. bottom: 76/1293
  14145. }
  14146. },
  14147. back: {
  14148. height: math.unit(5 + 6 / 12, "feet"),
  14149. weight: math.unit(200, "lb"),
  14150. name: "Back",
  14151. image: {
  14152. source: "./media/characters/vivian-bijoux/back.svg",
  14153. extra: 1214/1208,
  14154. bottom: 51/1265
  14155. }
  14156. },
  14157. dressed: {
  14158. height: math.unit(5 + 6 / 12, "feet"),
  14159. weight: math.unit(200, "lb"),
  14160. name: "Dressed",
  14161. image: {
  14162. source: "./media/characters/vivian-bijoux/dressed.svg",
  14163. extra: 1217/1209,
  14164. bottom: 76/1293
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(5 + 6 / 12, "feet"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Bad Dream",
  14176. height: math.unit(500, "feet")
  14177. },
  14178. {
  14179. name: "Nightmare",
  14180. height: math.unit(500, "miles")
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(6 + 1 / 12, "feet"),
  14189. weight: math.unit(260, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/zeta/front.svg",
  14193. extra: 1968 / 1889,
  14194. bottom: 0.06
  14195. }
  14196. },
  14197. back: {
  14198. height: math.unit(6 + 1 / 12, "feet"),
  14199. weight: math.unit(260, "lb"),
  14200. name: "Back",
  14201. image: {
  14202. source: "./media/characters/zeta/back.svg",
  14203. extra: 1944 / 1858,
  14204. bottom: 0.03
  14205. }
  14206. },
  14207. hand: {
  14208. height: math.unit(1.112, "feet"),
  14209. name: "Hand",
  14210. image: {
  14211. source: "./media/characters/zeta/hand.svg"
  14212. }
  14213. },
  14214. foot: {
  14215. height: math.unit(1.48, "feet"),
  14216. name: "Foot",
  14217. image: {
  14218. source: "./media/characters/zeta/foot.svg"
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(6, "inches")
  14226. },
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6 + 1 / 12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(20, "feet")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(150, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/jamie-larsen/front.svg",
  14247. extra: 962 / 933,
  14248. bottom: 0.02
  14249. }
  14250. },
  14251. back: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(150, "lb"),
  14254. name: "Back",
  14255. image: {
  14256. source: "./media/characters/jamie-larsen/back.svg",
  14257. extra: 997 / 946
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(28 + 7 / 12, "feet"),
  14265. default: true
  14266. },
  14267. {
  14268. name: "Macro+",
  14269. height: math.unit(180, "feet")
  14270. },
  14271. {
  14272. name: "Megamacro",
  14273. height: math.unit(10, "miles")
  14274. },
  14275. {
  14276. name: "Gigamacro",
  14277. height: math.unit(200000, "miles")
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(6, "feet"),
  14286. weight: math.unit(120, "lb"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/vance/front.svg",
  14290. extra: 1980 / 1890,
  14291. bottom: 0.09
  14292. }
  14293. },
  14294. back: {
  14295. height: math.unit(6, "feet"),
  14296. weight: math.unit(120, "lb"),
  14297. name: "Back",
  14298. image: {
  14299. source: "./media/characters/vance/back.svg",
  14300. extra: 2081 / 1994,
  14301. bottom: 0.014
  14302. }
  14303. },
  14304. hand: {
  14305. height: math.unit(0.88, "feet"),
  14306. name: "Hand",
  14307. image: {
  14308. source: "./media/characters/vance/hand.svg"
  14309. }
  14310. },
  14311. foot: {
  14312. height: math.unit(0.64, "feet"),
  14313. name: "Foot",
  14314. image: {
  14315. source: "./media/characters/vance/foot.svg"
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Small",
  14322. height: math.unit(90, "feet"),
  14323. default: true
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(100, "meters")
  14328. },
  14329. {
  14330. name: "Megamacro",
  14331. height: math.unit(15, "miles")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6, "feet"),
  14340. weight: math.unit(180, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/xochitl/front.svg",
  14344. extra: 2297 / 2261,
  14345. bottom: 0.065
  14346. }
  14347. },
  14348. back: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(180, "lb"),
  14351. name: "Back",
  14352. image: {
  14353. source: "./media/characters/xochitl/back.svg",
  14354. extra: 2386 / 2354,
  14355. bottom: 0.01
  14356. }
  14357. },
  14358. foot: {
  14359. height: math.unit(6 / 5 * 1.15, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Foot",
  14362. image: {
  14363. source: "./media/characters/xochitl/foot.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(80, "feet")
  14371. },
  14372. {
  14373. name: "Macro+",
  14374. height: math.unit(400, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Gigamacro",
  14379. height: math.unit(80000, "miles")
  14380. },
  14381. {
  14382. name: "Gigamacro+",
  14383. height: math.unit(400000, "miles")
  14384. },
  14385. {
  14386. name: "Teramacro",
  14387. height: math.unit(300, "AU")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/vincent/front.svg",
  14400. extra: 1130 / 1080,
  14401. bottom: 0.055
  14402. }
  14403. },
  14404. beak: {
  14405. height: math.unit(6 * 0.1, "feet"),
  14406. name: "Beak",
  14407. image: {
  14408. source: "./media/characters/vincent/beak.svg"
  14409. }
  14410. },
  14411. hand: {
  14412. height: math.unit(6 * 0.85, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Hand",
  14415. image: {
  14416. source: "./media/characters/vincent/hand.svg"
  14417. }
  14418. },
  14419. foot: {
  14420. height: math.unit(6 * 0.19, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Foot",
  14423. image: {
  14424. source: "./media/characters/vincent/foot.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Base",
  14431. height: math.unit(6 + 5 / 12, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro",
  14436. height: math.unit(300, "feet")
  14437. },
  14438. {
  14439. name: "Megamacro",
  14440. height: math.unit(2, "miles")
  14441. },
  14442. {
  14443. name: "Gigamacro",
  14444. height: math.unit(1000, "miles")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(2, "meters"),
  14453. weight: math.unit(500, "kg"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/coatl/front.svg",
  14457. extra: 3948 / 3500,
  14458. bottom: 0.082
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(4, "meters")
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(100, "meters"),
  14470. default: true
  14471. },
  14472. {
  14473. name: "Macro+",
  14474. height: math.unit(300, "meters")
  14475. },
  14476. {
  14477. name: "Megamacro",
  14478. height: math.unit(3, "gigameters")
  14479. },
  14480. {
  14481. name: "Megamacro+",
  14482. height: math.unit(300, "terameters")
  14483. },
  14484. {
  14485. name: "Megamacro++",
  14486. height: math.unit(3, "lightyears")
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(50, "kg"),
  14496. name: "front",
  14497. image: {
  14498. source: "./media/characters/shiroryu/front.svg",
  14499. extra: 1990 / 1935
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Mortal Mingling",
  14506. height: math.unit(3, "meters")
  14507. },
  14508. {
  14509. name: "Kaiju-ish",
  14510. height: math.unit(250, "meters")
  14511. },
  14512. {
  14513. name: "Somewhat Godly",
  14514. height: math.unit(400, "km"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Planetary",
  14519. height: math.unit(300, "megameters")
  14520. },
  14521. {
  14522. name: "Galaxy-dwarfing",
  14523. height: math.unit(450, "kiloparsecs")
  14524. },
  14525. {
  14526. name: "Universe Eater",
  14527. height: math.unit(150, "gigaparsecs")
  14528. },
  14529. {
  14530. name: "Almost Immeasurable",
  14531. height: math.unit(1.3e266, "yottaparsecs")
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(6, "feet"),
  14540. weight: math.unit(150, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/umeko/front.svg",
  14544. extra: 1,
  14545. bottom: 0.019
  14546. }
  14547. },
  14548. frontArmored: {
  14549. height: math.unit(6, "feet"),
  14550. weight: math.unit(150, "lb"),
  14551. name: "Front (Armored)",
  14552. image: {
  14553. source: "./media/characters/umeko/front-armored.svg",
  14554. extra: 1,
  14555. bottom: 0.021
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(220, "feet"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Guardian Dragon",
  14567. height: math.unit(50, "miles")
  14568. },
  14569. {
  14570. name: "Cosmic",
  14571. height: math.unit(800000, "miles")
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(6, "feet"),
  14580. weight: math.unit(150, "lb"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/cassidy/front.svg",
  14584. extra: 810/808,
  14585. bottom: 41/851
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Canon Height",
  14592. height: math.unit(120, "feet"),
  14593. default: true
  14594. },
  14595. {
  14596. name: "Macro+",
  14597. height: math.unit(400, "feet")
  14598. },
  14599. {
  14600. name: "Macro++",
  14601. height: math.unit(4000, "feet")
  14602. },
  14603. {
  14604. name: "Megamacro",
  14605. height: math.unit(3, "miles")
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(150, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/isaac/front.svg",
  14618. extra: 896 / 815,
  14619. bottom: 0.11
  14620. }
  14621. },
  14622. },
  14623. [
  14624. {
  14625. name: "Human Size",
  14626. height: math.unit(8, "feet"),
  14627. default: true
  14628. },
  14629. {
  14630. name: "Macro",
  14631. height: math.unit(400, "feet")
  14632. },
  14633. {
  14634. name: "Megamacro",
  14635. height: math.unit(50, "miles")
  14636. },
  14637. {
  14638. name: "Canon Height",
  14639. height: math.unit(200, "AU")
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(72, "kg"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/sleekit/front.svg",
  14652. extra: 4693 / 4487,
  14653. bottom: 0.012
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Minimum Height",
  14660. height: math.unit(10, "meters")
  14661. },
  14662. {
  14663. name: "Smaller",
  14664. height: math.unit(25, "meters")
  14665. },
  14666. {
  14667. name: "Larger",
  14668. height: math.unit(38, "meters"),
  14669. default: true
  14670. },
  14671. {
  14672. name: "Maximum height",
  14673. height: math.unit(100, "meters")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/nillia/front.svg",
  14686. extra: 2195 / 2037,
  14687. bottom: 0.005
  14688. }
  14689. },
  14690. back: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(150, "lb"),
  14693. name: "Back",
  14694. image: {
  14695. source: "./media/characters/nillia/back.svg",
  14696. extra: 2195 / 2037,
  14697. bottom: 0.005
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Canon Height",
  14704. height: math.unit(489, "feet"),
  14705. default: true
  14706. }
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(150, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/mesmyriza/front.svg",
  14718. extra: 2067 / 1784,
  14719. bottom: 0.035
  14720. }
  14721. },
  14722. foot: {
  14723. height: math.unit(6 / (250 / 35), "feet"),
  14724. name: "Foot",
  14725. image: {
  14726. source: "./media/characters/mesmyriza/foot.svg"
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(457, "meters"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Megamacro",
  14738. height: math.unit(8, "megameters")
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(250, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/saudade/front.svg",
  14751. extra: 1172 / 1139,
  14752. bottom: 0.035
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Micro",
  14759. height: math.unit(3, "inches")
  14760. },
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(6, "feet"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(50, "feet")
  14769. },
  14770. {
  14771. name: "Megamacro",
  14772. height: math.unit(2800, "feet")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(5 + 4 / 12, "feet"),
  14781. weight: math.unit(100, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/keireer/front.svg",
  14785. extra: 716 / 666,
  14786. bottom: 0.05
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(5 + 4 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(90, "kg"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/mirja/front.svg",
  14807. extra: 1789 / 1683,
  14808. bottom: 0.05
  14809. }
  14810. },
  14811. frontDressed: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(90, "lb"),
  14814. name: "Front (Dressed)",
  14815. image: {
  14816. source: "./media/characters/mirja/front-dressed.svg",
  14817. extra: 1789 / 1683,
  14818. bottom: 0.05
  14819. }
  14820. },
  14821. back: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(90, "lb"),
  14824. name: "Back",
  14825. image: {
  14826. source: "./media/characters/mirja/back.svg",
  14827. extra: 953 / 917,
  14828. bottom: 0.017
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "\"Incognito\"",
  14835. height: math.unit(3, "meters")
  14836. },
  14837. {
  14838. name: "Strolling Size",
  14839. height: math.unit(15, "km")
  14840. },
  14841. {
  14842. name: "Larger Strolling Size",
  14843. height: math.unit(400, "km")
  14844. },
  14845. {
  14846. name: "Preferred Size",
  14847. height: math.unit(5000, "km")
  14848. },
  14849. {
  14850. name: "True Size",
  14851. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(15, "feet"),
  14861. weight: math.unit(880, "kg"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/nightraver/front.svg",
  14865. extra: 2444 / 2160,
  14866. bottom: 0.027
  14867. }
  14868. },
  14869. back: {
  14870. height: math.unit(15, "feet"),
  14871. weight: math.unit(880, "kg"),
  14872. name: "Back",
  14873. image: {
  14874. source: "./media/characters/nightraver/back.svg",
  14875. extra: 2309 / 2180,
  14876. bottom: 0.005
  14877. }
  14878. },
  14879. sole: {
  14880. height: math.unit(2.878, "feet"),
  14881. name: "Sole",
  14882. image: {
  14883. source: "./media/characters/nightraver/sole.svg"
  14884. }
  14885. },
  14886. foot: {
  14887. height: math.unit(2.285, "feet"),
  14888. name: "Foot",
  14889. image: {
  14890. source: "./media/characters/nightraver/foot.svg"
  14891. }
  14892. },
  14893. maw: {
  14894. height: math.unit(2.67, "feet"),
  14895. name: "Maw",
  14896. image: {
  14897. source: "./media/characters/nightraver/maw.svg"
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(1, "cm")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(15, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(300, "feet")
  14914. },
  14915. {
  14916. name: "Megamacro",
  14917. height: math.unit(300, "miles")
  14918. },
  14919. {
  14920. name: "Gigamacro",
  14921. height: math.unit(10000, "miles")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14927. {
  14928. side: {
  14929. height: math.unit(2, "inches"),
  14930. weight: math.unit(5, "grams"),
  14931. name: "Side",
  14932. image: {
  14933. source: "./media/characters/arc/side.svg"
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Micro",
  14940. height: math.unit(2, "inches"),
  14941. default: true
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(1.1938, "meters"),
  14950. weight: math.unit(54, "kg"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/nebula-shahar/front.svg",
  14954. extra: 1642 / 1436,
  14955. bottom: 0.06
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Megamicro",
  14962. height: math.unit(0.3, "mm")
  14963. },
  14964. {
  14965. name: "Micro",
  14966. height: math.unit(3, "cm")
  14967. },
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(138, "cm"),
  14971. default: true
  14972. },
  14973. {
  14974. name: "Macro",
  14975. height: math.unit(30, "m")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(5.24, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/shayla/front.svg",
  14988. extra: 1512 / 1414,
  14989. bottom: 0.01
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(5.24, "feet"),
  14994. weight: math.unit(150, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/shayla/back.svg",
  14998. extra: 1512 / 1414
  14999. }
  15000. },
  15001. hand: {
  15002. height: math.unit(0.7781496062992126, "feet"),
  15003. name: "Hand",
  15004. image: {
  15005. source: "./media/characters/shayla/hand.svg"
  15006. }
  15007. },
  15008. foot: {
  15009. height: math.unit(1.4206036745406823, "feet"),
  15010. name: "Foot",
  15011. image: {
  15012. source: "./media/characters/shayla/foot.svg"
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Micro",
  15019. height: math.unit(0.32, "feet")
  15020. },
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5.24, "feet"),
  15024. default: true
  15025. },
  15026. {
  15027. name: "Macro",
  15028. height: math.unit(492.12, "feet")
  15029. },
  15030. {
  15031. name: "Megamacro",
  15032. height: math.unit(186.41, "miles")
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(2.2, "m"),
  15041. weight: math.unit(120, "kg"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/pia-jr/front.svg",
  15045. extra: 1000 / 970,
  15046. bottom: 0.035
  15047. }
  15048. },
  15049. hand: {
  15050. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15051. name: "Hand",
  15052. image: {
  15053. source: "./media/characters/pia-jr/hand.svg"
  15054. }
  15055. },
  15056. paw: {
  15057. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15058. name: "Paw",
  15059. image: {
  15060. source: "./media/characters/pia-jr/paw.svg"
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Micro",
  15067. height: math.unit(1.2, "cm")
  15068. },
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(2.2, "m"),
  15072. default: true
  15073. },
  15074. {
  15075. name: "Macro",
  15076. height: math.unit(180, "m")
  15077. },
  15078. {
  15079. name: "Megamacro",
  15080. height: math.unit(420, "km")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(2, "m"),
  15089. weight: math.unit(115, "kg"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/pia-sr/front.svg",
  15093. extra: 760 / 730,
  15094. bottom: 0.015
  15095. }
  15096. },
  15097. back: {
  15098. height: math.unit(2, "m"),
  15099. weight: math.unit(115, "kg"),
  15100. name: "Back",
  15101. image: {
  15102. source: "./media/characters/pia-sr/back.svg",
  15103. extra: 760 / 730,
  15104. bottom: 0.01
  15105. }
  15106. },
  15107. hand: {
  15108. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15109. name: "Hand",
  15110. image: {
  15111. source: "./media/characters/pia-sr/hand.svg"
  15112. }
  15113. },
  15114. foot: {
  15115. height: math.unit(1.83, "feet"),
  15116. name: "Foot",
  15117. image: {
  15118. source: "./media/characters/pia-sr/foot.svg"
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Micro",
  15125. height: math.unit(88, "mm")
  15126. },
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(2, "m"),
  15130. default: true
  15131. },
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(200, "m")
  15135. },
  15136. {
  15137. name: "Megamacro",
  15138. height: math.unit(420, "km")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(8 + 2 / 12, "feet"),
  15147. weight: math.unit(300, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/kibibyte/front.svg",
  15151. extra: 2221 / 2098,
  15152. bottom: 0.04
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(8 + 2 / 12, "feet"),
  15160. default: true
  15161. },
  15162. {
  15163. name: "Socialable Macro",
  15164. height: math.unit(50, "feet")
  15165. },
  15166. {
  15167. name: "Macro",
  15168. height: math.unit(300, "feet")
  15169. },
  15170. {
  15171. name: "Megamacro",
  15172. height: math.unit(500, "miles")
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(150, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/felix/front.svg",
  15185. extra: 762 / 722,
  15186. bottom: 0.02
  15187. }
  15188. },
  15189. frontClothed: {
  15190. height: math.unit(6, "feet"),
  15191. weight: math.unit(150, "lb"),
  15192. name: "Front (Clothed)",
  15193. image: {
  15194. source: "./media/characters/felix/front-clothed.svg",
  15195. extra: 762 / 722,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(6 + 8 / 12, "feet"),
  15204. default: true
  15205. },
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(2600, "feet")
  15209. },
  15210. {
  15211. name: "Megamacro",
  15212. height: math.unit(450, "miles")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6 + 1 / 12, "feet"),
  15221. weight: math.unit(250, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/tobo/front.svg",
  15225. extra: 608 / 586,
  15226. bottom: 0.023
  15227. }
  15228. },
  15229. back: {
  15230. height: math.unit(6 + 1 / 12, "feet"),
  15231. weight: math.unit(250, "lb"),
  15232. name: "Back",
  15233. image: {
  15234. source: "./media/characters/tobo/back.svg",
  15235. extra: 608 / 586
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Nano",
  15242. height: math.unit(2, "nm")
  15243. },
  15244. {
  15245. name: "Megamicro",
  15246. height: math.unit(0.1, "mm")
  15247. },
  15248. {
  15249. name: "Micro",
  15250. height: math.unit(1, "inch"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Human-sized",
  15255. height: math.unit(6 + 1 / 12, "feet")
  15256. },
  15257. {
  15258. name: "Macro",
  15259. height: math.unit(250, "feet")
  15260. },
  15261. {
  15262. name: "Megamacro",
  15263. height: math.unit(75, "miles")
  15264. },
  15265. {
  15266. name: "Texas-sized",
  15267. height: math.unit(750, "miles")
  15268. },
  15269. {
  15270. name: "Teramacro",
  15271. height: math.unit(50000, "miles")
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(269, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/danny-kapowsky/front.svg",
  15284. extra: 766 / 736,
  15285. bottom: 0.044
  15286. }
  15287. },
  15288. back: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(269, "lb"),
  15291. name: "Back",
  15292. image: {
  15293. source: "./media/characters/danny-kapowsky/back.svg",
  15294. extra: 797 / 760,
  15295. bottom: 0.025
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Macro",
  15302. height: math.unit(150, "feet"),
  15303. default: true
  15304. },
  15305. {
  15306. name: "Macro+",
  15307. height: math.unit(200, "feet")
  15308. },
  15309. {
  15310. name: "Macro++",
  15311. height: math.unit(300, "feet")
  15312. },
  15313. {
  15314. name: "Macro+++",
  15315. height: math.unit(400, "feet")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15321. {
  15322. side: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(170, "lb"),
  15325. name: "Side",
  15326. image: {
  15327. source: "./media/characters/finn/side.svg",
  15328. extra: 1953 / 1807,
  15329. bottom: 0.057
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Megamacro",
  15336. height: math.unit(14445, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 6 / 12, "feet"),
  15346. weight: math.unit(125, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/roy/front.svg",
  15350. extra: 1,
  15351. bottom: 0.11
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Micro",
  15358. height: math.unit(3, "inches"),
  15359. default: true
  15360. },
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(5 + 6 / 12, "feet")
  15364. },
  15365. {
  15366. name: "Lesser Macro",
  15367. height: math.unit(60, "feet")
  15368. },
  15369. {
  15370. name: "Greater Macro",
  15371. height: math.unit(120, "feet")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(6, "feet"),
  15380. weight: math.unit(100, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/aevsivs/front.svg",
  15384. extra: 1,
  15385. bottom: 0.03
  15386. }
  15387. },
  15388. back: {
  15389. height: math.unit(6, "feet"),
  15390. weight: math.unit(100, "lb"),
  15391. name: "Back",
  15392. image: {
  15393. source: "./media/characters/aevsivs/back.svg"
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Micro",
  15400. height: math.unit(2, "inches"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(5, "feet")
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15411. {
  15412. front: {
  15413. height: math.unit(5 + 7 / 12, "feet"),
  15414. weight: math.unit(159, "lb"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/hildegard/front.svg",
  15418. extra: 289 / 269,
  15419. bottom: 7.63 / 297.8
  15420. }
  15421. },
  15422. back: {
  15423. height: math.unit(5 + 7 / 12, "feet"),
  15424. weight: math.unit(159, "lb"),
  15425. name: "Back",
  15426. image: {
  15427. source: "./media/characters/hildegard/back.svg",
  15428. extra: 280 / 260,
  15429. bottom: 2.3 / 282
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(5 + 7 / 12, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15443. {
  15444. bernard: {
  15445. height: math.unit(2 + 7 / 12, "feet"),
  15446. weight: math.unit(66, "lb"),
  15447. name: "Bernard",
  15448. rename: true,
  15449. image: {
  15450. source: "./media/characters/bernard-wilder/bernard.svg",
  15451. extra: 192 / 128,
  15452. bottom: 0.05
  15453. }
  15454. },
  15455. wilder: {
  15456. height: math.unit(5 + 8 / 12, "feet"),
  15457. weight: math.unit(143, "lb"),
  15458. name: "Wilder",
  15459. rename: true,
  15460. image: {
  15461. source: "./media/characters/bernard-wilder/wilder.svg",
  15462. extra: 361 / 312,
  15463. bottom: 0.02
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(2 + 7 / 12, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15477. {
  15478. anthro: {
  15479. height: math.unit(6 + 1 / 12, "feet"),
  15480. weight: math.unit(155, "lb"),
  15481. name: "Anthro",
  15482. image: {
  15483. source: "./media/characters/hearth/anthro.svg",
  15484. extra: 1178/1136,
  15485. bottom: 28/1206
  15486. }
  15487. },
  15488. feral: {
  15489. height: math.unit(3.78, "feet"),
  15490. weight: math.unit(35, "kg"),
  15491. name: "Feral",
  15492. image: {
  15493. source: "./media/characters/hearth/feral.svg",
  15494. extra: 153 / 135,
  15495. bottom: 0.03
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(6 + 1 / 12, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(6, "feet"),
  15512. weight: math.unit(182, "lb"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/ingrid/front.svg",
  15516. extra: 294 / 268,
  15517. bottom: 0.027
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Normal",
  15524. height: math.unit(6, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15531. {
  15532. eevee: {
  15533. height: math.unit(2 + 10 / 12, "feet"),
  15534. weight: math.unit(86, "lb"),
  15535. name: "Malgam",
  15536. image: {
  15537. source: "./media/characters/malgam/eevee.svg",
  15538. extra: 952/784,
  15539. bottom: 38/990
  15540. }
  15541. },
  15542. sylveon: {
  15543. height: math.unit(4, "feet"),
  15544. weight: math.unit(101, "lb"),
  15545. name: "Future Malgam",
  15546. rename: true,
  15547. image: {
  15548. source: "./media/characters/malgam/sylveon.svg",
  15549. extra: 371 / 325,
  15550. bottom: 0.015
  15551. }
  15552. },
  15553. gigantamax: {
  15554. height: math.unit(50, "feet"),
  15555. name: "Gigantamax Malgam",
  15556. rename: true,
  15557. image: {
  15558. source: "./media/characters/malgam/gigantamax.svg"
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(2 + 10 / 12, "feet"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(5 + 11 / 12, "feet"),
  15575. weight: math.unit(188, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/fleur/front.svg",
  15579. extra: 309 / 283,
  15580. bottom: 0.007
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(5 + 11 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(5 + 4 / 12, "feet"),
  15597. weight: math.unit(122, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/jude/front.svg",
  15601. extra: 288 / 273,
  15602. bottom: 0.03
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(5 + 4 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 11 / 12, "feet"),
  15619. weight: math.unit(190, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/seara/front.svg",
  15623. extra: 1,
  15624. bottom: 0.05
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 11 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(16 + 5 / 12, "feet"),
  15641. weight: math.unit(524, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/caspian-lugia/front.svg",
  15645. extra: 1,
  15646. bottom: 0.04
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(16 + 5 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(5 + 7 / 12, "feet"),
  15663. weight: math.unit(170, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/mika/front.svg",
  15667. extra: 1,
  15668. bottom: 0.016
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(5 + 7 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6 + 2 / 12, "feet"),
  15685. weight: math.unit(268, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/sol/front.svg",
  15689. extra: 247 / 231,
  15690. bottom: 0.05
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15704. {
  15705. buizel: {
  15706. height: math.unit(2 + 5 / 12, "feet"),
  15707. weight: math.unit(87, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/umiko/buizel.svg",
  15711. extra: 172 / 157,
  15712. bottom: 0.01
  15713. },
  15714. form: "buizel",
  15715. default: true
  15716. },
  15717. floatzel: {
  15718. height: math.unit(5 + 9 / 12, "feet"),
  15719. weight: math.unit(250, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/umiko/floatzel.svg",
  15723. extra: 1076/1006,
  15724. bottom: 15/1091
  15725. },
  15726. form: "floatzel",
  15727. default: true
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(2 + 5 / 12, "feet"),
  15734. form: "buizel",
  15735. default: true
  15736. },
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(5 + 9 / 12, "feet"),
  15740. form: "floatzel",
  15741. default: true
  15742. },
  15743. ],
  15744. {
  15745. "buizel": {
  15746. name: "Buizel"
  15747. },
  15748. "floatzel": {
  15749. name: "Floatzel",
  15750. default: true
  15751. }
  15752. }
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(6 + 2 / 12, "feet"),
  15759. weight: math.unit(146, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/iliac/front.svg",
  15763. extra: 389 / 365,
  15764. bottom: 0.035
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(6 + 2 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(170, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/topaz/front.svg",
  15785. extra: 317 / 303,
  15786. bottom: 0.055
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(5 + 11 / 12, "feet"),
  15803. weight: math.unit(144, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/gabriel/front.svg",
  15807. extra: 285 / 262,
  15808. bottom: 0.004
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(5 + 11 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15822. {
  15823. side: {
  15824. height: math.unit(6 + 5 / 12, "feet"),
  15825. weight: math.unit(300, "lb"),
  15826. name: "Side",
  15827. image: {
  15828. source: "./media/characters/tempest-suicune/side.svg",
  15829. extra: 195 / 154,
  15830. bottom: 0.04
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(6 + 5 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(7 + 2 / 12, "feet"),
  15847. weight: math.unit(322, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/vulcan/front.svg",
  15851. extra: 154 / 147,
  15852. bottom: 0.04
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(7 + 2 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(5 + 10 / 12, "feet"),
  15869. weight: math.unit(264, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/gault/front.svg",
  15873. extra: 161 / 140,
  15874. bottom: 0.028
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(5 + 10 / 12, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/shard/front.svg",
  15895. extra: 273 / 238,
  15896. bottom: 0.02
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(3 + 6 / 12, "feet"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(5 + 11 / 12, "feet"),
  15913. weight: math.unit(146, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/ashe/front.svg",
  15917. extra: 400 / 373,
  15918. bottom: 0.01
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(5 + 11 / 12, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(5 + 5 / 12, "feet"),
  15935. weight: math.unit(135, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/beatrix/front.svg",
  15939. extra: 392 / 379,
  15940. bottom: 0.01
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(6, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(6 + 2/12, "feet"),
  15957. weight: math.unit(135, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/ignatius/front.svg",
  15961. extra: 1380/1259,
  15962. bottom: 27/1407
  15963. }
  15964. },
  15965. },
  15966. [
  15967. {
  15968. name: "Normal",
  15969. height: math.unit(6 + 2/12, "feet"),
  15970. default: true
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(6 + 2 / 12, "feet"),
  15979. weight: math.unit(138, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/mei-li/front.svg",
  15983. extra: 237 / 229,
  15984. bottom: 0.03
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(6 + 2 / 12, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(2 + 4 / 12, "feet"),
  16001. weight: math.unit(62, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/puru/front.svg",
  16005. extra: 206 / 149,
  16006. bottom: 0.06
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(2 + 4 / 12, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16020. {
  16021. anthro: {
  16022. height: math.unit(5 + 8/12, "feet"),
  16023. weight: math.unit(200, "lb"),
  16024. energyNeed: math.unit(2000, "kcal"),
  16025. name: "Anthro",
  16026. image: {
  16027. source: "./media/characters/kee/anthro.svg",
  16028. extra: 3251/3184,
  16029. bottom: 250/3501
  16030. }
  16031. },
  16032. taur: {
  16033. height: math.unit(11, "feet"),
  16034. weight: math.unit(500, "lb"),
  16035. energyNeed: math.unit(5000, "kcal"),
  16036. name: "Taur",
  16037. image: {
  16038. source: "./media/characters/kee/taur.svg",
  16039. extra: 1362/1320,
  16040. bottom: 83/1445
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(5 + 8/12, "feet"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Macro",
  16052. height: math.unit(35, "feet")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16058. {
  16059. anthro: {
  16060. height: math.unit(7, "feet"),
  16061. weight: math.unit(190, "lb"),
  16062. name: "Anthro",
  16063. image: {
  16064. source: "./media/characters/cobalt-dracha/anthro.svg",
  16065. extra: 231 / 225,
  16066. bottom: 0.04
  16067. }
  16068. },
  16069. feral: {
  16070. height: math.unit(9 + 7 / 12, "feet"),
  16071. weight: math.unit(294, "lb"),
  16072. name: "Feral",
  16073. image: {
  16074. source: "./media/characters/cobalt-dracha/feral.svg",
  16075. extra: 692 / 633,
  16076. bottom: 0.05
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(7, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16090. {
  16091. fallen: {
  16092. height: math.unit(11 + 8 / 12, "feet"),
  16093. weight: math.unit(485, "lb"),
  16094. name: "Java (Fallen)",
  16095. rename: true,
  16096. image: {
  16097. source: "./media/characters/java/fallen.svg",
  16098. extra: 226 / 208,
  16099. bottom: 0.005
  16100. }
  16101. },
  16102. godkin: {
  16103. height: math.unit(10 + 6 / 12, "feet"),
  16104. weight: math.unit(328, "lb"),
  16105. name: "Java (Godkin)",
  16106. rename: true,
  16107. image: {
  16108. source: "./media/characters/java/godkin.svg",
  16109. extra: 1104/1068,
  16110. bottom: 36/1140
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(11 + 8 / 12, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(5 + 9 / 12, "feet"),
  16127. weight: math.unit(170, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/purna/front.svg",
  16131. extra: 239 / 229,
  16132. bottom: 0.01
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(5 + 9 / 12, "feet"),
  16149. weight: math.unit(142, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/kuva/front.svg",
  16153. extra: 281 / 271,
  16154. bottom: 0.006
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(5 + 9 / 12, "feet"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16168. {
  16169. anthro: {
  16170. height: math.unit(9 + 2 / 12, "feet"),
  16171. weight: math.unit(270, "lb"),
  16172. name: "Anthro",
  16173. image: {
  16174. source: "./media/characters/embra/anthro.svg",
  16175. extra: 200 / 187,
  16176. bottom: 0.02
  16177. }
  16178. },
  16179. feral: {
  16180. height: math.unit(18 + 8 / 12, "feet"),
  16181. weight: math.unit(576, "lb"),
  16182. name: "Feral",
  16183. image: {
  16184. source: "./media/characters/embra/feral.svg",
  16185. extra: 152 / 137,
  16186. bottom: 0.037
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(9 + 2 / 12, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16200. {
  16201. anthro: {
  16202. height: math.unit(10 + 9 / 12, "feet"),
  16203. weight: math.unit(224, "lb"),
  16204. name: "Anthro",
  16205. image: {
  16206. source: "./media/characters/grottos/anthro.svg",
  16207. extra: 350 / 332,
  16208. bottom: 0.045
  16209. }
  16210. },
  16211. feral: {
  16212. height: math.unit(20 + 7 / 12, "feet"),
  16213. weight: math.unit(629, "lb"),
  16214. name: "Feral",
  16215. image: {
  16216. source: "./media/characters/grottos/feral.svg",
  16217. extra: 207 / 190,
  16218. bottom: 0.05
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(10 + 9 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16232. {
  16233. anthro: {
  16234. height: math.unit(9 + 6 / 12, "feet"),
  16235. weight: math.unit(298, "lb"),
  16236. name: "Anthro",
  16237. image: {
  16238. source: "./media/characters/frifna/anthro.svg",
  16239. extra: 282 / 269,
  16240. bottom: 0.015
  16241. }
  16242. },
  16243. feral: {
  16244. height: math.unit(16 + 2 / 12, "feet"),
  16245. weight: math.unit(624, "lb"),
  16246. name: "Feral",
  16247. image: {
  16248. source: "./media/characters/frifna/feral.svg"
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(9 + 6 / 12, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6 + 2 / 12, "feet"),
  16265. weight: math.unit(168, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/elise/front.svg",
  16269. extra: 276 / 271
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(6 + 2 / 12, "feet"),
  16277. default: true
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(5 + 10 / 12, "feet"),
  16286. weight: math.unit(210, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/glade/front.svg",
  16290. extra: 258 / 247,
  16291. bottom: 0.008
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(5 + 10 / 12, "feet"),
  16299. default: true
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(5 + 10 / 12, "feet"),
  16308. weight: math.unit(129, "lb"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/rina/front.svg",
  16312. extra: 266 / 255,
  16313. bottom: 0.005
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(5 + 10 / 12, "feet"),
  16321. default: true
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16327. {
  16328. front: {
  16329. height: math.unit(6 + 1 / 12, "feet"),
  16330. weight: math.unit(192, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/veronica/front.svg",
  16334. extra: 319 / 309,
  16335. bottom: 0.005
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Normal",
  16342. height: math.unit(6 + 1 / 12, "feet"),
  16343. default: true
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(9 + 3 / 12, "feet"),
  16352. weight: math.unit(1100, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/braxton/front.svg",
  16356. extra: 1057 / 984,
  16357. bottom: 0.05
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(9 + 3 / 12, "feet")
  16365. },
  16366. {
  16367. name: "Giant",
  16368. height: math.unit(300, "feet"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(700, "feet")
  16374. },
  16375. {
  16376. name: "Megamacro",
  16377. height: math.unit(6000, "feet")
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(6 + 7 / 12, "feet"),
  16386. weight: math.unit(150, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/blue-feyonics/front.svg",
  16390. extra: 1403 / 1306,
  16391. bottom: 0.047
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Normal",
  16398. height: math.unit(6 + 7 / 12, "feet"),
  16399. default: true
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(1.8, "meters"),
  16408. weight: math.unit(60, "kg"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/maxwell/front.svg",
  16412. extra: 2060 / 1873
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Micro",
  16419. height: math.unit(1, "mm")
  16420. },
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(1.8, "meter"),
  16424. default: true
  16425. },
  16426. {
  16427. name: "Macro",
  16428. height: math.unit(30, "meters")
  16429. },
  16430. {
  16431. name: "Megamacro",
  16432. height: math.unit(10, "km")
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(6, "feet"),
  16441. weight: math.unit(150, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/jack/front.svg",
  16445. extra: 1754 / 1640,
  16446. bottom: 0.01
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(80000, "feet"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Max size",
  16458. height: math.unit(10, "lightyears")
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16464. {
  16465. urban: {
  16466. height: math.unit(5, "feet"),
  16467. weight: math.unit(240, "lb"),
  16468. name: "Urban",
  16469. image: {
  16470. source: "./media/characters/cafat/urban.svg",
  16471. extra: 1223/1126,
  16472. bottom: 205/1428
  16473. }
  16474. },
  16475. summer: {
  16476. height: math.unit(5, "feet"),
  16477. weight: math.unit(240, "lb"),
  16478. name: "Summer",
  16479. image: {
  16480. source: "./media/characters/cafat/summer.svg",
  16481. extra: 1223/1126,
  16482. bottom: 205/1428
  16483. }
  16484. },
  16485. winter: {
  16486. height: math.unit(5, "feet"),
  16487. weight: math.unit(240, "lb"),
  16488. name: "Winter",
  16489. image: {
  16490. source: "./media/characters/cafat/winter.svg",
  16491. extra: 1223/1126,
  16492. bottom: 205/1428
  16493. }
  16494. },
  16495. lingerie: {
  16496. height: math.unit(5, "feet"),
  16497. weight: math.unit(240, "lb"),
  16498. name: "Lingerie",
  16499. image: {
  16500. source: "./media/characters/cafat/lingerie.svg",
  16501. extra: 1223/1126,
  16502. bottom: 205/1428
  16503. }
  16504. },
  16505. upright: {
  16506. height: math.unit(6.3, "feet"),
  16507. weight: math.unit(240, "lb"),
  16508. name: "Upright",
  16509. image: {
  16510. source: "./media/characters/cafat/upright.svg",
  16511. bottom: 0.01
  16512. }
  16513. },
  16514. uprightFull: {
  16515. height: math.unit(6.3, "feet"),
  16516. weight: math.unit(240, "lb"),
  16517. name: "Upright (Full)",
  16518. image: {
  16519. source: "./media/characters/cafat/upright-full.svg",
  16520. bottom: 0.01
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Small",
  16527. height: math.unit(5, "feet"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Large",
  16532. height: math.unit(13, "feet")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/verin-raharra/front.svg",
  16545. extra: 5019 / 4835,
  16546. bottom: 0.023
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(7 + 5 / 12, "feet"),
  16554. default: true
  16555. },
  16556. {
  16557. name: "Upsized",
  16558. height: math.unit(20, "feet")
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(7, "feet"),
  16567. weight: math.unit(230, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/nakata/front.svg",
  16571. extra: 1.005,
  16572. bottom: 0.01
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(7, "feet"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Big",
  16584. height: math.unit(14, "feet")
  16585. },
  16586. {
  16587. name: "Macro",
  16588. height: math.unit(400, "feet")
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(4.91, "feet"),
  16597. weight: math.unit(100, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/lily/front.svg",
  16601. extra: 1585 / 1415,
  16602. bottom: 0.02
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(4.91, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16616. {
  16617. laying: {
  16618. height: math.unit(4 + 4 / 12, "feet"),
  16619. weight: math.unit(600, "lb"),
  16620. name: "Laying",
  16621. image: {
  16622. source: "./media/characters/sheila/laying.svg",
  16623. extra: 1333 / 1265,
  16624. bottom: 0.16
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(4 + 4 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(6, "feet"),
  16641. weight: math.unit(190, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/sax/front.svg",
  16645. extra: 1187 / 973,
  16646. bottom: 0.042
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Micro",
  16653. height: math.unit(4, "inches"),
  16654. default: true
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16660. {
  16661. front: {
  16662. height: math.unit(6, "feet"),
  16663. weight: math.unit(150, "lb"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/pandora/front.svg",
  16667. extra: 2720 / 2556,
  16668. bottom: 0.015
  16669. }
  16670. },
  16671. back: {
  16672. height: math.unit(6, "feet"),
  16673. weight: math.unit(150, "lb"),
  16674. name: "Back",
  16675. image: {
  16676. source: "./media/characters/pandora/back.svg",
  16677. extra: 2720 / 2556,
  16678. bottom: 0.01
  16679. }
  16680. },
  16681. beans: {
  16682. height: math.unit(6 / 8, "feet"),
  16683. name: "Beans",
  16684. image: {
  16685. source: "./media/characters/pandora/beans.svg"
  16686. }
  16687. },
  16688. collar: {
  16689. height: math.unit(0.31, "feet"),
  16690. name: "Collar",
  16691. image: {
  16692. source: "./media/characters/pandora/collar.svg"
  16693. }
  16694. },
  16695. skirt: {
  16696. height: math.unit(6, "feet"),
  16697. weight: math.unit(150, "lb"),
  16698. name: "Skirt",
  16699. image: {
  16700. source: "./media/characters/pandora/skirt.svg",
  16701. extra: 1622 / 1525,
  16702. bottom: 0.015
  16703. }
  16704. },
  16705. hoodie: {
  16706. height: math.unit(6, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Hoodie",
  16709. image: {
  16710. source: "./media/characters/pandora/hoodie.svg",
  16711. extra: 1622 / 1525,
  16712. bottom: 0.015
  16713. }
  16714. },
  16715. casual: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Casual",
  16719. image: {
  16720. source: "./media/characters/pandora/casual.svg",
  16721. extra: 1622 / 1525,
  16722. bottom: 0.015
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(6, "feet")
  16730. },
  16731. {
  16732. name: "Big Steppy",
  16733. height: math.unit(1, "km"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Galactic Steppy",
  16738. height: math.unit(2, "gigameters")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16744. {
  16745. side: {
  16746. height: math.unit(10, "feet"),
  16747. weight: math.unit(800, "kg"),
  16748. name: "Side",
  16749. image: {
  16750. source: "./media/characters/venio-darcony/side.svg",
  16751. extra: 1373 / 1003,
  16752. bottom: 0.037
  16753. }
  16754. },
  16755. front: {
  16756. height: math.unit(19, "feet"),
  16757. weight: math.unit(800, "kg"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/venio-darcony/front.svg"
  16761. }
  16762. },
  16763. back: {
  16764. height: math.unit(19, "feet"),
  16765. weight: math.unit(800, "kg"),
  16766. name: "Back",
  16767. image: {
  16768. source: "./media/characters/venio-darcony/back.svg"
  16769. }
  16770. },
  16771. sideNsfw: {
  16772. height: math.unit(10, "feet"),
  16773. weight: math.unit(800, "kg"),
  16774. name: "Side (NSFW)",
  16775. image: {
  16776. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16777. extra: 1373 / 1003,
  16778. bottom: 0.037
  16779. }
  16780. },
  16781. frontNsfw: {
  16782. height: math.unit(19, "feet"),
  16783. weight: math.unit(800, "kg"),
  16784. name: "Front (NSFW)",
  16785. image: {
  16786. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16787. }
  16788. },
  16789. backNsfw: {
  16790. height: math.unit(19, "feet"),
  16791. weight: math.unit(800, "kg"),
  16792. name: "Back (NSFW)",
  16793. image: {
  16794. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16795. }
  16796. },
  16797. sideArmored: {
  16798. height: math.unit(10, "feet"),
  16799. weight: math.unit(800, "kg"),
  16800. name: "Side (Armored)",
  16801. image: {
  16802. source: "./media/characters/venio-darcony/side-armored.svg",
  16803. extra: 1373 / 1003,
  16804. bottom: 0.037
  16805. }
  16806. },
  16807. frontArmored: {
  16808. height: math.unit(19, "feet"),
  16809. weight: math.unit(900, "kg"),
  16810. name: "Front (Armored)",
  16811. image: {
  16812. source: "./media/characters/venio-darcony/front-armored.svg"
  16813. }
  16814. },
  16815. backArmored: {
  16816. height: math.unit(19, "feet"),
  16817. weight: math.unit(900, "kg"),
  16818. name: "Back (Armored)",
  16819. image: {
  16820. source: "./media/characters/venio-darcony/back-armored.svg"
  16821. }
  16822. },
  16823. sword: {
  16824. height: math.unit(10, "feet"),
  16825. weight: math.unit(50, "lb"),
  16826. name: "Sword",
  16827. image: {
  16828. source: "./media/characters/venio-darcony/sword.svg"
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(10, "feet")
  16836. },
  16837. {
  16838. name: "Macro",
  16839. height: math.unit(130, "feet"),
  16840. default: true
  16841. },
  16842. {
  16843. name: "Macro+",
  16844. height: math.unit(240, "feet")
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(6, "feet"),
  16853. weight: math.unit(150, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/veski/front.svg",
  16857. extra: 1299 / 1225,
  16858. bottom: 0.04
  16859. }
  16860. },
  16861. back: {
  16862. height: math.unit(6, "feet"),
  16863. weight: math.unit(150, "lb"),
  16864. name: "Back",
  16865. image: {
  16866. source: "./media/characters/veski/back.svg",
  16867. extra: 1299 / 1225,
  16868. bottom: 0.008
  16869. }
  16870. },
  16871. maw: {
  16872. height: math.unit(1.5 * 1.21, "feet"),
  16873. name: "Maw",
  16874. image: {
  16875. source: "./media/characters/veski/maw.svg"
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Macro",
  16882. height: math.unit(2, "km"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(5 + 7 / 12, "feet"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/isabelle/front.svg",
  16895. extra: 2130 / 1976,
  16896. bottom: 0.05
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Supermicro",
  16903. height: math.unit(10, "micrometers")
  16904. },
  16905. {
  16906. name: "Micro",
  16907. height: math.unit(1, "inch")
  16908. },
  16909. {
  16910. name: "Tiny",
  16911. height: math.unit(5, "inches")
  16912. },
  16913. {
  16914. name: "Standard",
  16915. height: math.unit(5 + 7 / 12, "inches")
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(80, "meters"),
  16920. default: true
  16921. },
  16922. {
  16923. name: "Megamacro",
  16924. height: math.unit(250, "meters")
  16925. },
  16926. {
  16927. name: "Gigamacro",
  16928. height: math.unit(5, "km")
  16929. },
  16930. {
  16931. name: "Cosmic",
  16932. height: math.unit(2.5e6, "miles")
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(150, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/hanzo/front.svg",
  16945. extra: 374 / 344,
  16946. bottom: 0.02
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(8, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(7, "feet"),
  16963. weight: math.unit(130, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/anna/front.svg",
  16967. extra: 169 / 145,
  16968. bottom: 0.06
  16969. }
  16970. },
  16971. full: {
  16972. height: math.unit(4.96, "feet"),
  16973. weight: math.unit(220, "lb"),
  16974. name: "Full",
  16975. image: {
  16976. source: "./media/characters/anna/full.svg",
  16977. extra: 138 / 114,
  16978. bottom: 0.15
  16979. }
  16980. },
  16981. tongue: {
  16982. height: math.unit(2.53, "feet"),
  16983. name: "Tongue",
  16984. image: {
  16985. source: "./media/characters/anna/tongue.svg"
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(7, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(7, "feet"),
  17002. weight: math.unit(150, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/ian-corvid/front.svg",
  17006. extra: 150 / 142,
  17007. bottom: 0.02
  17008. }
  17009. },
  17010. back: {
  17011. height: math.unit(7, "feet"),
  17012. weight: math.unit(150, "lb"),
  17013. name: "Back",
  17014. image: {
  17015. source: "./media/characters/ian-corvid/back.svg",
  17016. extra: 150 / 143,
  17017. bottom: 0.01
  17018. }
  17019. },
  17020. stomping: {
  17021. height: math.unit(7, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Stomping",
  17024. image: {
  17025. source: "./media/characters/ian-corvid/stomping.svg",
  17026. extra: 76 / 72
  17027. }
  17028. },
  17029. sitting: {
  17030. height: math.unit(7 / 1.8, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Sitting",
  17033. image: {
  17034. source: "./media/characters/ian-corvid/sitting.svg",
  17035. extra: 1400 / 1269,
  17036. bottom: 0.15
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Tiny Microw",
  17043. height: math.unit(1, "inch")
  17044. },
  17045. {
  17046. name: "Microw",
  17047. height: math.unit(6, "inches")
  17048. },
  17049. {
  17050. name: "Crow",
  17051. height: math.unit(7 + 1 / 12, "feet"),
  17052. default: true
  17053. },
  17054. {
  17055. name: "Macrow",
  17056. height: math.unit(176, "feet")
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(5 + 7 / 12, "feet"),
  17065. weight: math.unit(147, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/natalie-kellon/front.svg",
  17069. extra: 1214 / 1141,
  17070. bottom: 0.02
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Micro",
  17077. height: math.unit(1 / 16, "inch")
  17078. },
  17079. {
  17080. name: "Tiny",
  17081. height: math.unit(4, "inches")
  17082. },
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(5 + 7 / 12, "feet"),
  17086. default: true
  17087. },
  17088. {
  17089. name: "Amazon",
  17090. height: math.unit(12, "feet")
  17091. },
  17092. {
  17093. name: "Giantess",
  17094. height: math.unit(160, "meters")
  17095. },
  17096. {
  17097. name: "Titaness",
  17098. height: math.unit(800, "meters")
  17099. },
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(6, "feet"),
  17107. weight: math.unit(150, "lb"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/alluria/front.svg",
  17111. extra: 806 / 738,
  17112. bottom: 0.01
  17113. }
  17114. },
  17115. side: {
  17116. height: math.unit(6, "feet"),
  17117. weight: math.unit(150, "lb"),
  17118. name: "Side",
  17119. image: {
  17120. source: "./media/characters/alluria/side.svg",
  17121. extra: 800 / 750,
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(6, "feet"),
  17126. weight: math.unit(150, "lb"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/alluria/back.svg",
  17130. extra: 806 / 738,
  17131. }
  17132. },
  17133. frontMaid: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Front (Maid)",
  17137. image: {
  17138. source: "./media/characters/alluria/front-maid.svg",
  17139. extra: 806 / 738,
  17140. bottom: 0.01
  17141. }
  17142. },
  17143. sideMaid: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(150, "lb"),
  17146. name: "Side (Maid)",
  17147. image: {
  17148. source: "./media/characters/alluria/side-maid.svg",
  17149. extra: 800 / 750,
  17150. bottom: 0.005
  17151. }
  17152. },
  17153. backMaid: {
  17154. height: math.unit(6, "feet"),
  17155. weight: math.unit(150, "lb"),
  17156. name: "Back (Maid)",
  17157. image: {
  17158. source: "./media/characters/alluria/back-maid.svg",
  17159. extra: 806 / 738,
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Micro",
  17166. height: math.unit(6, "inches"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(6, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/kyle/front.svg",
  17180. extra: 1069 / 962,
  17181. bottom: 77.228 / 1727.45
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(150, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(6, "feet"),
  17198. weight: math.unit(300, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/duncan/front.svg",
  17202. extra: 1650 / 1482,
  17203. bottom: 0.05
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Macro",
  17210. height: math.unit(100, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17217. {
  17218. front: {
  17219. height: math.unit(5 + 4 / 12, "feet"),
  17220. weight: math.unit(220, "lb"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/memory/front.svg",
  17224. extra: 3641 / 3545,
  17225. bottom: 0.03
  17226. }
  17227. },
  17228. back: {
  17229. height: math.unit(5 + 4 / 12, "feet"),
  17230. weight: math.unit(220, "lb"),
  17231. name: "Back",
  17232. image: {
  17233. source: "./media/characters/memory/back.svg",
  17234. extra: 3641 / 3545,
  17235. bottom: 0.025
  17236. }
  17237. },
  17238. frontSkirt: {
  17239. height: math.unit(5 + 4 / 12, "feet"),
  17240. weight: math.unit(220, "lb"),
  17241. name: "Front (Skirt)",
  17242. image: {
  17243. source: "./media/characters/memory/front-skirt.svg",
  17244. extra: 3641 / 3545,
  17245. bottom: 0.03
  17246. }
  17247. },
  17248. frontDress: {
  17249. height: math.unit(5 + 4 / 12, "feet"),
  17250. weight: math.unit(220, "lb"),
  17251. name: "Front (Dress)",
  17252. image: {
  17253. source: "./media/characters/memory/front-dress.svg",
  17254. extra: 3641 / 3545,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Micro",
  17262. height: math.unit(6, "inches"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(5 + 4 / 12, "feet")
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(4 + 11 / 12, "feet"),
  17276. weight: math.unit(100, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/luno/front.svg",
  17280. extra: 1535 / 1487,
  17281. bottom: 0.03
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Micro",
  17288. height: math.unit(3, "inches")
  17289. },
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(4 + 11 / 12, "feet"),
  17293. default: true
  17294. },
  17295. {
  17296. name: "Macro",
  17297. height: math.unit(300, "feet")
  17298. },
  17299. {
  17300. name: "Megamacro",
  17301. height: math.unit(700, "miles")
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17307. {
  17308. front: {
  17309. height: math.unit(6 + 2 / 12, "feet"),
  17310. weight: math.unit(170, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/jamesy/front.svg",
  17314. extra: 440 / 382,
  17315. bottom: 0.005
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Micro",
  17322. height: math.unit(3, "inches")
  17323. },
  17324. {
  17325. name: "Normal",
  17326. height: math.unit(6 + 2 / 12, "feet"),
  17327. default: true
  17328. },
  17329. {
  17330. name: "Macro",
  17331. height: math.unit(300, "feet")
  17332. },
  17333. {
  17334. name: "Megamacro",
  17335. height: math.unit(700, "miles")
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(6, "feet"),
  17344. weight: math.unit(160, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/mark/front.svg",
  17348. extra: 3300 / 3100,
  17349. bottom: 136.42 / 3440.47
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(120, "meters")
  17357. },
  17358. {
  17359. name: "Bigger Macro",
  17360. height: math.unit(350, "meters")
  17361. },
  17362. {
  17363. name: "Megamacro",
  17364. height: math.unit(8, "km"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Continental",
  17369. height: math.unit(4550, "km")
  17370. },
  17371. {
  17372. name: "Planetary",
  17373. height: math.unit(65000, "km")
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(400, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/mac/front.svg",
  17386. extra: 1048 / 987.7,
  17387. bottom: 60 / 1107.6,
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Macro",
  17394. height: math.unit(500, "feet"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(5 + 2 / 12, "feet"),
  17404. weight: math.unit(190, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/bari/front.svg",
  17408. extra: 3156 / 2880,
  17409. bottom: 0.03
  17410. }
  17411. },
  17412. back: {
  17413. height: math.unit(5 + 2 / 12, "feet"),
  17414. weight: math.unit(190, "lb"),
  17415. name: "Back",
  17416. image: {
  17417. source: "./media/characters/bari/back.svg",
  17418. extra: 3260 / 2834,
  17419. bottom: 0.025
  17420. }
  17421. },
  17422. frontPlush: {
  17423. height: math.unit(5 + 2 / 12, "feet"),
  17424. weight: math.unit(190, "lb"),
  17425. name: "Front (Plush)",
  17426. image: {
  17427. source: "./media/characters/bari/front-plush.svg",
  17428. extra: 1112 / 1061,
  17429. bottom: 0.002
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Micro",
  17436. height: math.unit(3, "inches")
  17437. },
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(5 + 2 / 12, "feet"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(20, "feet")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(6 + 1 / 12, "feet"),
  17454. weight: math.unit(275, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/hunter-misha-raven/front.svg"
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Mortal",
  17464. height: math.unit(6 + 1 / 12, "feet")
  17465. },
  17466. {
  17467. name: "Divine",
  17468. height: math.unit(1.12134e34, "parsecs"),
  17469. default: true
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(6 + 3 / 12, "feet"),
  17478. weight: math.unit(220, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/max-calore/front.svg",
  17482. extra: 1700 / 1648,
  17483. bottom: 0.01
  17484. }
  17485. },
  17486. back: {
  17487. height: math.unit(6 + 3 / 12, "feet"),
  17488. weight: math.unit(220, "lb"),
  17489. name: "Back",
  17490. image: {
  17491. source: "./media/characters/max-calore/back.svg",
  17492. extra: 1700 / 1648,
  17493. bottom: 0.01
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(6 + 3 / 12, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17507. {
  17508. side: {
  17509. height: math.unit(2 + 8 / 12, "feet"),
  17510. weight: math.unit(99, "lb"),
  17511. name: "Side",
  17512. image: {
  17513. source: "./media/characters/aspen/side.svg",
  17514. extra: 152 / 138,
  17515. bottom: 0.032
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(2 + 8 / 12, "feet"),
  17523. default: true
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17529. {
  17530. side: {
  17531. height: math.unit(3 + 2 / 12, "feet"),
  17532. weight: math.unit(224, "lb"),
  17533. name: "Side",
  17534. image: {
  17535. source: "./media/characters/sheila-feral-wolf/side.svg",
  17536. extra: 179 / 166,
  17537. bottom: 0.03
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(3 + 2 / 12, "feet"),
  17545. default: true
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17551. {
  17552. side: {
  17553. height: math.unit(1 + 9 / 12, "feet"),
  17554. weight: math.unit(38, "lb"),
  17555. name: "Side",
  17556. image: {
  17557. source: "./media/characters/michelle/side.svg",
  17558. extra: 147 / 136.7,
  17559. bottom: 0.03
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(1 + 9 / 12, "feet"),
  17567. default: true
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17573. {
  17574. front: {
  17575. height: math.unit(1.54, "feet"),
  17576. weight: math.unit(50, "lb"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/nino/front.svg"
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(1.54, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(1.49, "feet"),
  17596. weight: math.unit(45, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/viola/front.svg"
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(1.49, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(6 + 5 / 12, "feet"),
  17616. weight: math.unit(580, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/atlas/front.svg",
  17620. extra: 298.5 / 290,
  17621. bottom: 0.015
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(6 + 5 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(15.6, "inches"),
  17638. weight: math.unit(10, "lb"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/davy/side.svg",
  17642. extra: 200 / 170,
  17643. bottom: 0.01
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(15.6, "inches"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17657. {
  17658. side: {
  17659. height: math.unit(4 + 8 / 12, "feet"),
  17660. weight: math.unit(166, "lb"),
  17661. name: "Side",
  17662. image: {
  17663. source: "./media/characters/fiona/side.svg",
  17664. extra: 232 / 220,
  17665. bottom: 0.03
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(4 + 8 / 12, "feet"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17679. {
  17680. front: {
  17681. height: math.unit(26, "inches"),
  17682. weight: math.unit(35, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/lyla/front.svg",
  17686. bottom: 0.1
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(3, "feet"),
  17694. default: true
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17700. {
  17701. side: {
  17702. height: math.unit(1.8, "feet"),
  17703. weight: math.unit(44, "lb"),
  17704. name: "Side",
  17705. image: {
  17706. source: "./media/characters/perseus/side.svg",
  17707. bottom: 0.21
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(1.8, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17721. {
  17722. side: {
  17723. height: math.unit(4 + 2 / 12, "feet"),
  17724. weight: math.unit(20, "lb"),
  17725. name: "Side",
  17726. image: {
  17727. source: "./media/characters/remus/side.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(4 + 2 / 12, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(4 + 11 / 12, "feet"),
  17744. weight: math.unit(114, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/raf/front.svg",
  17748. extra: 1504/1339,
  17749. bottom: 26/1530
  17750. }
  17751. },
  17752. side: {
  17753. height: math.unit(4 + 11 / 12, "feet"),
  17754. weight: math.unit(114, "lb"),
  17755. name: "Side",
  17756. image: {
  17757. source: "./media/characters/raf/side.svg",
  17758. extra: 1466/1316,
  17759. bottom: 29/1495
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Micro",
  17766. height: math.unit(2, "inches")
  17767. },
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(4 + 11 / 12, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(70, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(1.5, "meters"),
  17784. weight: math.unit(68, "kg"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/liam-einarr/front.svg",
  17788. extra: 2822 / 2666
  17789. }
  17790. },
  17791. back: {
  17792. height: math.unit(1.5, "meters"),
  17793. weight: math.unit(68, "kg"),
  17794. name: "Back",
  17795. image: {
  17796. source: "./media/characters/liam-einarr/back.svg",
  17797. extra: 2822 / 2666,
  17798. bottom: 0.015
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(1.5, "meters"),
  17806. default: true
  17807. },
  17808. {
  17809. name: "Macro",
  17810. height: math.unit(150, "meters")
  17811. },
  17812. {
  17813. name: "Megamacro",
  17814. height: math.unit(35, "km")
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(6, "feet"),
  17823. weight: math.unit(75, "kg"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/linda/front.svg",
  17827. extra: 930 / 874,
  17828. bottom: 0.004
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Normal",
  17835. height: math.unit(6, "feet"),
  17836. default: true
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17842. {
  17843. front: {
  17844. height: math.unit(6 + 8 / 12, "feet"),
  17845. weight: math.unit(220, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/caylex/front.svg",
  17849. extra: 821 / 772,
  17850. bottom: 0.07
  17851. }
  17852. },
  17853. back: {
  17854. height: math.unit(6 + 8 / 12, "feet"),
  17855. weight: math.unit(220, "lb"),
  17856. name: "Back",
  17857. image: {
  17858. source: "./media/characters/caylex/back.svg",
  17859. extra: 821 / 772,
  17860. bottom: 0.022
  17861. }
  17862. },
  17863. hand: {
  17864. height: math.unit(1.25, "feet"),
  17865. name: "Hand",
  17866. image: {
  17867. source: "./media/characters/caylex/hand.svg"
  17868. }
  17869. },
  17870. foot: {
  17871. height: math.unit(1.6, "feet"),
  17872. name: "Foot",
  17873. image: {
  17874. source: "./media/characters/caylex/foot.svg"
  17875. }
  17876. },
  17877. armored: {
  17878. height: math.unit(6 + 8 / 12, "feet"),
  17879. weight: math.unit(250, "lb"),
  17880. name: "Armored",
  17881. image: {
  17882. source: "./media/characters/caylex/armored.svg",
  17883. extra: 1420 / 1310,
  17884. bottom: 0.045
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(6 + 8 / 12, "feet"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Normal+",
  17896. height: math.unit(12, "feet")
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(7 + 6 / 12, "feet"),
  17905. weight: math.unit(288, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/alana/front.svg",
  17909. extra: 679 / 653,
  17910. bottom: 22.5 / 701
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(7 + 6 / 12, "feet")
  17918. },
  17919. {
  17920. name: "Large",
  17921. height: math.unit(50, "feet")
  17922. },
  17923. {
  17924. name: "Macro",
  17925. height: math.unit(100, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Macro+",
  17930. height: math.unit(200, "feet")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(6 + 1 / 12, "feet"),
  17939. weight: math.unit(210, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/hasani/front.svg",
  17943. extra: 244 / 232,
  17944. bottom: 0.01
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(6 + 1 / 12, "feet"),
  17949. weight: math.unit(210, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/hasani/back.svg",
  17953. extra: 244 / 232,
  17954. bottom: 0.01
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(6 + 1 / 12, "feet")
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(175, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(1.82, "meters"),
  17975. weight: math.unit(140, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/nita/front.svg",
  17979. extra: 2473 / 2363,
  17980. bottom: 0.01
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(1.82, "m")
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(300, "m")
  17992. },
  17993. {
  17994. name: "Mistake Canon",
  17995. height: math.unit(0.5, "miles"),
  17996. default: true
  17997. },
  17998. {
  17999. name: "Big Mistake",
  18000. height: math.unit(13, "miles")
  18001. },
  18002. {
  18003. name: "Playing God",
  18004. height: math.unit(2450, "miles")
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(4, "feet"),
  18013. weight: math.unit(120, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/shiriko/front.svg",
  18017. extra: 970/934,
  18018. bottom: 5/975
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Normal",
  18025. height: math.unit(4, "feet"),
  18026. default: true
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(6, "feet"),
  18035. name: "front",
  18036. image: {
  18037. source: "./media/characters/deja/front.svg",
  18038. extra: 926 / 840,
  18039. bottom: 0.07
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Planck Length",
  18046. height: math.unit(1.6e-35, "meters")
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(30.48, "meters"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Universal",
  18055. height: math.unit(8.8e26, "meters")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18061. {
  18062. side: {
  18063. height: math.unit(8, "feet"),
  18064. weight: math.unit(6300, "lb"),
  18065. name: "Side",
  18066. image: {
  18067. source: "./media/characters/anima/side.svg",
  18068. bottom: 0.035
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(8, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(8, "feet"),
  18085. weight: math.unit(350, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/bianca/front.svg",
  18089. extra: 234 / 225,
  18090. bottom: 0.03
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(8, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. weight: math.unit(150, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/adinia/front.svg",
  18111. extra: 1845 / 1672,
  18112. bottom: 0.02
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(150, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/adinia/back.svg",
  18121. extra: 1845 / 1672,
  18122. bottom: 0.002
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(11 + 5 / 12, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(3, "meters"),
  18139. weight: math.unit(200, "kg"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/lykasa/front.svg",
  18143. extra: 1076 / 976,
  18144. bottom: 0.06
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(3, "meters")
  18152. },
  18153. {
  18154. name: "Kaiju",
  18155. height: math.unit(120, "meters"),
  18156. default: true
  18157. },
  18158. {
  18159. name: "Mega Kaiju",
  18160. height: math.unit(240, "km")
  18161. },
  18162. {
  18163. name: "Giga Kaiju",
  18164. height: math.unit(400, "megameters")
  18165. },
  18166. {
  18167. name: "Tera Kaiju",
  18168. height: math.unit(800, "gigameters")
  18169. },
  18170. {
  18171. name: "Kaiju Dragon Goddess",
  18172. height: math.unit(26, "zettaparsecs")
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18178. {
  18179. side: {
  18180. height: math.unit(283 / 124 * 6, "feet"),
  18181. weight: math.unit(35000, "lb"),
  18182. name: "Side",
  18183. image: {
  18184. source: "./media/characters/malfaren/side.svg",
  18185. extra: 1310/529,
  18186. bottom: 24/1334
  18187. }
  18188. },
  18189. front: {
  18190. height: math.unit(22.36, "feet"),
  18191. weight: math.unit(35000, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/malfaren/front.svg",
  18195. extra: 1237/1115,
  18196. bottom: 32/1269
  18197. }
  18198. },
  18199. maw: {
  18200. height: math.unit(6.9, "feet"),
  18201. name: "Maw",
  18202. image: {
  18203. source: "./media/characters/malfaren/maw.svg"
  18204. }
  18205. },
  18206. dick: {
  18207. height: math.unit(6.19, "feet"),
  18208. name: "Dick",
  18209. image: {
  18210. source: "./media/characters/malfaren/dick.svg"
  18211. }
  18212. },
  18213. eye: {
  18214. height: math.unit(0.69, "feet"),
  18215. name: "Eye",
  18216. image: {
  18217. source: "./media/characters/malfaren/eye.svg"
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Big",
  18224. height: math.unit(283 / 162 * 6, "feet"),
  18225. },
  18226. {
  18227. name: "Bigger",
  18228. height: math.unit(283 / 124 * 6, "feet")
  18229. },
  18230. {
  18231. name: "Massive",
  18232. height: math.unit(283 / 92 * 6, "feet"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "👀💦",
  18237. height: math.unit(283 / 73 * 6, "feet"),
  18238. },
  18239. ]
  18240. ))
  18241. characterMakers.push(() => makeCharacter(
  18242. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18243. {
  18244. front: {
  18245. height: math.unit(1.7, "m"),
  18246. weight: math.unit(70, "kg"),
  18247. name: "Front",
  18248. image: {
  18249. source: "./media/characters/kernel/front.svg",
  18250. extra: 222 / 210,
  18251. bottom: 0.007
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Nano",
  18258. height: math.unit(17, "micrometers")
  18259. },
  18260. {
  18261. name: "Micro",
  18262. height: math.unit(1.7, "mm")
  18263. },
  18264. {
  18265. name: "Small",
  18266. height: math.unit(1.7, "cm")
  18267. },
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(1.7, "m"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(1.75, "meters"),
  18280. weight: math.unit(65, "kg"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/jayne-folest/front.svg",
  18284. extra: 2115 / 2007,
  18285. bottom: 0.02
  18286. }
  18287. },
  18288. back: {
  18289. height: math.unit(1.75, "meters"),
  18290. weight: math.unit(65, "kg"),
  18291. name: "Back",
  18292. image: {
  18293. source: "./media/characters/jayne-folest/back.svg",
  18294. extra: 2115 / 2007,
  18295. bottom: 0.005
  18296. }
  18297. },
  18298. frontClothed: {
  18299. height: math.unit(1.75, "meters"),
  18300. weight: math.unit(65, "kg"),
  18301. name: "Front (Clothed)",
  18302. image: {
  18303. source: "./media/characters/jayne-folest/front-clothed.svg",
  18304. extra: 2115 / 2007,
  18305. bottom: 0.035
  18306. }
  18307. },
  18308. hand: {
  18309. height: math.unit(1 / 1.260, "feet"),
  18310. name: "Hand",
  18311. image: {
  18312. source: "./media/characters/jayne-folest/hand.svg"
  18313. }
  18314. },
  18315. foot: {
  18316. height: math.unit(1 / 0.918, "feet"),
  18317. name: "Foot",
  18318. image: {
  18319. source: "./media/characters/jayne-folest/foot.svg"
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Micro",
  18326. height: math.unit(4, "cm")
  18327. },
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(1.75, "meters")
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(47.5, "meters"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(180, "cm"),
  18344. weight: math.unit(70, "kg"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/algier/front.svg",
  18348. extra: 596 / 572,
  18349. bottom: 0.04
  18350. }
  18351. },
  18352. back: {
  18353. height: math.unit(180, "cm"),
  18354. weight: math.unit(70, "kg"),
  18355. name: "Back",
  18356. image: {
  18357. source: "./media/characters/algier/back.svg",
  18358. extra: 596 / 572,
  18359. bottom: 0.025
  18360. }
  18361. },
  18362. frontdressed: {
  18363. height: math.unit(180, "cm"),
  18364. weight: math.unit(150, "kg"),
  18365. name: "Front-dressed",
  18366. image: {
  18367. source: "./media/characters/algier/front-dressed.svg",
  18368. extra: 596 / 572,
  18369. bottom: 0.038
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Micro",
  18376. height: math.unit(5, "cm")
  18377. },
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(180, "cm"),
  18381. default: true
  18382. },
  18383. {
  18384. name: "Macro",
  18385. height: math.unit(64, "m")
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18391. {
  18392. upright: {
  18393. height: math.unit(7, "feet"),
  18394. weight: math.unit(300, "lb"),
  18395. name: "Upright",
  18396. image: {
  18397. source: "./media/characters/pretzel/upright.svg",
  18398. extra: 534 / 522,
  18399. bottom: 0.065
  18400. }
  18401. },
  18402. sprawling: {
  18403. height: math.unit(3.75, "feet"),
  18404. weight: math.unit(300, "lb"),
  18405. name: "Sprawling",
  18406. image: {
  18407. source: "./media/characters/pretzel/sprawling.svg",
  18408. extra: 314 / 281,
  18409. bottom: 0.1
  18410. }
  18411. },
  18412. tongue: {
  18413. height: math.unit(2, "feet"),
  18414. name: "Tongue",
  18415. image: {
  18416. source: "./media/characters/pretzel/tongue.svg"
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(7, "feet"),
  18424. default: true
  18425. },
  18426. {
  18427. name: "Oversized",
  18428. height: math.unit(15, "feet")
  18429. },
  18430. {
  18431. name: "Huge",
  18432. height: math.unit(30, "feet")
  18433. },
  18434. {
  18435. name: "Macro",
  18436. height: math.unit(250, "feet")
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18442. {
  18443. sideFront: {
  18444. height: math.unit(5 + 2 / 12, "feet"),
  18445. weight: math.unit(120, "lb"),
  18446. name: "Front Side",
  18447. image: {
  18448. source: "./media/characters/roxi/side-front.svg",
  18449. extra: 2924 / 2717,
  18450. bottom: 0.08
  18451. }
  18452. },
  18453. sideBack: {
  18454. height: math.unit(5 + 2 / 12, "feet"),
  18455. weight: math.unit(120, "lb"),
  18456. name: "Back Side",
  18457. image: {
  18458. source: "./media/characters/roxi/side-back.svg",
  18459. extra: 2904 / 2693,
  18460. bottom: 0.06
  18461. }
  18462. },
  18463. front: {
  18464. height: math.unit(5 + 2 / 12, "feet"),
  18465. weight: math.unit(120, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/roxi/front.svg",
  18469. extra: 2028 / 1907,
  18470. bottom: 0.01
  18471. }
  18472. },
  18473. frontAlt: {
  18474. height: math.unit(5 + 2 / 12, "feet"),
  18475. weight: math.unit(120, "lb"),
  18476. name: "Front (Alt)",
  18477. image: {
  18478. source: "./media/characters/roxi/front-alt.svg",
  18479. extra: 1828 / 1798,
  18480. bottom: 0.01
  18481. }
  18482. },
  18483. sitting: {
  18484. height: math.unit(2.8, "feet"),
  18485. weight: math.unit(120, "lb"),
  18486. name: "Sitting",
  18487. image: {
  18488. source: "./media/characters/roxi/sitting.svg",
  18489. extra: 2660 / 2462,
  18490. bottom: 0.1
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(5 + 2 / 12, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18504. {
  18505. side: {
  18506. height: math.unit(55, "feet"),
  18507. weight: math.unit(153, "tons"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/shadow/side.svg",
  18511. extra: 701 / 628,
  18512. bottom: 0.02
  18513. }
  18514. },
  18515. flying: {
  18516. height: math.unit(145, "feet"),
  18517. weight: math.unit(153, "tons"),
  18518. name: "Flying",
  18519. image: {
  18520. source: "./media/characters/shadow/flying.svg"
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(55, "feet"),
  18528. default: true
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18534. {
  18535. front: {
  18536. height: math.unit(6, "feet"),
  18537. weight: math.unit(200, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/marcie/front.svg",
  18541. extra: 960 / 876,
  18542. bottom: 58 / 1017.87
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(1, "mile"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(7, "feet"),
  18559. weight: math.unit(200, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/kachina/front.svg",
  18563. extra: 1290.68 / 1119,
  18564. bottom: 36.5 / 1327.18
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(7, "feet"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18578. {
  18579. looking: {
  18580. height: math.unit(2, "meters"),
  18581. weight: math.unit(300, "kg"),
  18582. name: "Looking",
  18583. image: {
  18584. source: "./media/characters/kash/looking.svg",
  18585. extra: 474 / 344,
  18586. bottom: 0.03
  18587. }
  18588. },
  18589. side: {
  18590. height: math.unit(2, "meters"),
  18591. weight: math.unit(300, "kg"),
  18592. name: "Side",
  18593. image: {
  18594. source: "./media/characters/kash/side.svg",
  18595. extra: 302 / 251,
  18596. bottom: 0.03
  18597. }
  18598. },
  18599. front: {
  18600. height: math.unit(2, "meters"),
  18601. weight: math.unit(300, "kg"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/kash/front.svg",
  18605. extra: 495 / 360,
  18606. bottom: 0.015
  18607. }
  18608. },
  18609. },
  18610. [
  18611. {
  18612. name: "Normal",
  18613. height: math.unit(2, "meters"),
  18614. default: true
  18615. },
  18616. {
  18617. name: "Big",
  18618. height: math.unit(3, "meters")
  18619. },
  18620. {
  18621. name: "Large",
  18622. height: math.unit(5, "meters")
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18628. {
  18629. feeding: {
  18630. height: math.unit(6.7, "feet"),
  18631. weight: math.unit(350, "lb"),
  18632. name: "Feeding",
  18633. image: {
  18634. source: "./media/characters/lalim/feeding.svg",
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(6.7, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(9.5, "feet"),
  18651. weight: math.unit(600, "lb"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/de'vout/front.svg",
  18655. extra: 1443 / 1328,
  18656. bottom: 0.025
  18657. }
  18658. },
  18659. back: {
  18660. height: math.unit(9.5, "feet"),
  18661. weight: math.unit(600, "lb"),
  18662. name: "Back",
  18663. image: {
  18664. source: "./media/characters/de'vout/back.svg",
  18665. extra: 1443 / 1328
  18666. }
  18667. },
  18668. frontDressed: {
  18669. height: math.unit(9.5, "feet"),
  18670. weight: math.unit(600, "lb"),
  18671. name: "Front (Dressed",
  18672. image: {
  18673. source: "./media/characters/de'vout/front-dressed.svg",
  18674. extra: 1443 / 1328,
  18675. bottom: 0.025
  18676. }
  18677. },
  18678. backDressed: {
  18679. height: math.unit(9.5, "feet"),
  18680. weight: math.unit(600, "lb"),
  18681. name: "Back (Dressed",
  18682. image: {
  18683. source: "./media/characters/de'vout/back-dressed.svg",
  18684. extra: 1443 / 1328
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(9.5, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(8, "feet"),
  18701. weight: math.unit(225, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/talana/front.svg",
  18705. extra: 1410 / 1300,
  18706. bottom: 0.015
  18707. }
  18708. },
  18709. frontDressed: {
  18710. height: math.unit(8, "feet"),
  18711. weight: math.unit(225, "lb"),
  18712. name: "Front (Dressed",
  18713. image: {
  18714. source: "./media/characters/talana/front-dressed.svg",
  18715. extra: 1410 / 1300,
  18716. bottom: 0.015
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(8, "feet"),
  18724. default: true
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18730. {
  18731. side: {
  18732. height: math.unit(7.2, "feet"),
  18733. weight: math.unit(150, "lb"),
  18734. name: "Side",
  18735. image: {
  18736. source: "./media/characters/xeauvok/side.svg",
  18737. extra: 1975 / 1523,
  18738. bottom: 0.07
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(7.2, "feet"),
  18746. default: true
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18752. {
  18753. side: {
  18754. height: math.unit(10, "feet"),
  18755. weight: math.unit(900, "kg"),
  18756. name: "Side",
  18757. image: {
  18758. source: "./media/characters/zara/side.svg",
  18759. extra: 504 / 498
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(10, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18773. {
  18774. side: {
  18775. height: math.unit(6, "feet"),
  18776. weight: math.unit(150, "lb"),
  18777. name: "Side",
  18778. image: {
  18779. source: "./media/characters/richard-dragon/side.svg",
  18780. extra: 845 / 340,
  18781. bottom: 0.017
  18782. }
  18783. },
  18784. maw: {
  18785. height: math.unit(2.97, "feet"),
  18786. name: "Maw",
  18787. image: {
  18788. source: "./media/characters/richard-dragon/maw.svg"
  18789. }
  18790. },
  18791. },
  18792. [
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(4, "feet"),
  18800. weight: math.unit(100, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/richard-smeargle/front.svg",
  18804. extra: 2952 / 2820,
  18805. bottom: 0.028
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(4, "feet"),
  18813. default: true
  18814. },
  18815. {
  18816. name: "Dynamax",
  18817. height: math.unit(20, "meters")
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(6, "feet"),
  18826. weight: math.unit(110, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/klay/front.svg",
  18830. extra: 962 / 883,
  18831. bottom: 0.04
  18832. }
  18833. },
  18834. back: {
  18835. height: math.unit(6, "feet"),
  18836. weight: math.unit(110, "lb"),
  18837. name: "Back",
  18838. image: {
  18839. source: "./media/characters/klay/back.svg",
  18840. extra: 962 / 883
  18841. }
  18842. },
  18843. beans: {
  18844. height: math.unit(1.15, "feet"),
  18845. name: "Beans",
  18846. image: {
  18847. source: "./media/characters/klay/beans.svg"
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Micro",
  18854. height: math.unit(6, "inches")
  18855. },
  18856. {
  18857. name: "Mini",
  18858. height: math.unit(3, "feet")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(6, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Big",
  18867. height: math.unit(25, "feet")
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(100, "feet")
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(400, "feet")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(6, "feet"),
  18884. weight: math.unit(160, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/marcus/front.svg",
  18888. extra: 734 / 676,
  18889. bottom: 0.03
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Little",
  18896. height: math.unit(6, "feet")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(110, "feet"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(250, "feet")
  18906. },
  18907. {
  18908. name: "Megamacro",
  18909. height: math.unit(1000, "feet")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18915. {
  18916. front: {
  18917. height: math.unit(7, "feet"),
  18918. weight: math.unit(275, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/claude-delroute/front.svg",
  18922. extra: 902/827,
  18923. bottom: 26/928
  18924. }
  18925. },
  18926. side: {
  18927. height: math.unit(7, "feet"),
  18928. weight: math.unit(275, "lb"),
  18929. name: "Side",
  18930. image: {
  18931. source: "./media/characters/claude-delroute/side.svg",
  18932. extra: 908/853,
  18933. bottom: 16/924
  18934. }
  18935. },
  18936. back: {
  18937. height: math.unit(7, "feet"),
  18938. weight: math.unit(275, "lb"),
  18939. name: "Back",
  18940. image: {
  18941. source: "./media/characters/claude-delroute/back.svg",
  18942. extra: 911/829,
  18943. bottom: 18/929
  18944. }
  18945. },
  18946. maw: {
  18947. height: math.unit(0.6407, "meters"),
  18948. name: "Maw",
  18949. image: {
  18950. source: "./media/characters/claude-delroute/maw.svg"
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(7, "feet"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Lorge",
  18962. height: math.unit(20, "feet")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(8 + 4 / 12, "feet"),
  18971. weight: math.unit(600, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/dragonien/front.svg",
  18975. extra: 100 / 94,
  18976. bottom: 3.3 / 103.3445
  18977. }
  18978. },
  18979. back: {
  18980. height: math.unit(8 + 4 / 12, "feet"),
  18981. weight: math.unit(600, "lb"),
  18982. name: "Back",
  18983. image: {
  18984. source: "./media/characters/dragonien/back.svg",
  18985. extra: 776 / 746,
  18986. bottom: 6.4 / 782.0616
  18987. }
  18988. },
  18989. foot: {
  18990. height: math.unit(1.54, "feet"),
  18991. name: "Foot",
  18992. image: {
  18993. source: "./media/characters/dragonien/foot.svg",
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(8 + 4 / 12, "feet"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Macro",
  19005. height: math.unit(200, "feet")
  19006. },
  19007. {
  19008. name: "Megamacro",
  19009. height: math.unit(1, "mile")
  19010. },
  19011. {
  19012. name: "Gigamacro",
  19013. height: math.unit(1000, "miles")
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(5 + 2 / 12, "feet"),
  19022. weight: math.unit(110, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/desta/front.svg",
  19026. extra: 767 / 726,
  19027. bottom: 11.7 / 779
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(5 + 2 / 12, "feet"),
  19032. weight: math.unit(110, "lb"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/desta/back.svg",
  19036. extra: 777 / 728,
  19037. bottom: 6 / 784
  19038. }
  19039. },
  19040. frontAlt: {
  19041. height: math.unit(5 + 2 / 12, "feet"),
  19042. weight: math.unit(110, "lb"),
  19043. name: "Front",
  19044. image: {
  19045. source: "./media/characters/desta/front-alt.svg",
  19046. extra: 1482 / 1417
  19047. }
  19048. },
  19049. side: {
  19050. height: math.unit(5 + 2 / 12, "feet"),
  19051. weight: math.unit(110, "lb"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/desta/side.svg",
  19055. extra: 2579 / 2491,
  19056. bottom: 0.053
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Micro",
  19063. height: math.unit(6, "inches")
  19064. },
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 2 / 12, "feet"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Macro",
  19072. height: math.unit(62, "feet")
  19073. },
  19074. {
  19075. name: "Megamacro",
  19076. height: math.unit(1800, "feet")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(10, "feet"),
  19085. weight: math.unit(700, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/storm-alystar/front.svg",
  19089. extra: 2112 / 1898,
  19090. bottom: 0.034
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Micro",
  19097. height: math.unit(3.5, "inches")
  19098. },
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(10, "feet"),
  19102. default: true
  19103. },
  19104. {
  19105. name: "Macro",
  19106. height: math.unit(400, "feet")
  19107. },
  19108. {
  19109. name: "Deific",
  19110. height: math.unit(60, "miles")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(2.35, "meters"),
  19119. weight: math.unit(119, "kg"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/ilia/front.svg",
  19123. extra: 1285 / 1255,
  19124. bottom: 0.06
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(2.35, "meters")
  19132. },
  19133. {
  19134. name: "Macro",
  19135. height: math.unit(140, "meters"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Megamacro",
  19140. height: math.unit(100, "miles")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6 + 5 / 12, "feet"),
  19149. weight: math.unit(190, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/kingdead/front.svg",
  19153. extra: 1228 / 1177
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Micro",
  19160. height: math.unit(7, "inches")
  19161. },
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(6 + 5 / 12, "feet")
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(150, "feet"),
  19169. default: true
  19170. },
  19171. {
  19172. name: "Megamacro",
  19173. height: math.unit(200, "miles")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(8, "feet"),
  19182. weight: math.unit(600, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/kyrehx/front.svg",
  19186. extra: 1195 / 1095,
  19187. bottom: 0.034
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Micro",
  19194. height: math.unit(2, "inches")
  19195. },
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(8, "feet"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(255, "feet")
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19212. weight: math.unit(184, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/xang/front.svg",
  19216. extra: 845 / 755
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Macro",
  19228. height: math.unit(0.935 * 146, "feet")
  19229. },
  19230. {
  19231. name: "Megamacro",
  19232. height: math.unit(0.935 * 3, "miles")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19238. {
  19239. frontDressed: {
  19240. height: math.unit(5 + 7 / 12, "feet"),
  19241. weight: math.unit(140, "lb"),
  19242. name: "Front (Dressed)",
  19243. image: {
  19244. source: "./media/characters/doc-weardno/front-dressed.svg",
  19245. extra: 263 / 234
  19246. }
  19247. },
  19248. backDressed: {
  19249. height: math.unit(5 + 7 / 12, "feet"),
  19250. weight: math.unit(140, "lb"),
  19251. name: "Back (Dressed)",
  19252. image: {
  19253. source: "./media/characters/doc-weardno/back-dressed.svg",
  19254. extra: 266 / 238
  19255. }
  19256. },
  19257. front: {
  19258. height: math.unit(5 + 7 / 12, "feet"),
  19259. weight: math.unit(140, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/doc-weardno/front.svg",
  19263. extra: 254 / 233
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(3, "inches")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(5 + 7 / 12, "feet"),
  19275. default: true
  19276. },
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(25, "feet")
  19280. },
  19281. {
  19282. name: "Megamacro",
  19283. height: math.unit(2, "miles")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(6 + 2 / 12, "feet"),
  19292. weight: math.unit(153, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/seth-whilst/front.svg",
  19296. bottom: 0.07
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Micro",
  19303. height: math.unit(5, "inches")
  19304. },
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(6 + 2 / 12, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(3, "inches"),
  19317. weight: math.unit(8, "grams"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/pocket-jabari/front.svg",
  19321. extra: 1024 / 974,
  19322. bottom: 0.039
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Minimicro",
  19329. height: math.unit(8, "mm")
  19330. },
  19331. {
  19332. name: "Micro",
  19333. height: math.unit(3, "inches"),
  19334. default: true
  19335. },
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(3, "feet")
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19344. {
  19345. frontDressed: {
  19346. height: math.unit(15, "feet"),
  19347. weight: math.unit(3280, "lb"),
  19348. name: "Front (Dressed)",
  19349. image: {
  19350. source: "./media/characters/sapphy/front-dressed.svg",
  19351. extra: 1951/1654,
  19352. bottom: 194/2145
  19353. },
  19354. form: "anthro",
  19355. default: true
  19356. },
  19357. backDressed: {
  19358. height: math.unit(15, "feet"),
  19359. weight: math.unit(3280, "lb"),
  19360. name: "Back (Dressed)",
  19361. image: {
  19362. source: "./media/characters/sapphy/back-dressed.svg",
  19363. extra: 2058/1918,
  19364. bottom: 125/2183
  19365. },
  19366. form: "anthro"
  19367. },
  19368. frontNude: {
  19369. height: math.unit(15, "feet"),
  19370. weight: math.unit(3280, "lb"),
  19371. name: "Front (Nude)",
  19372. image: {
  19373. source: "./media/characters/sapphy/front-nude.svg",
  19374. extra: 1951/1654,
  19375. bottom: 194/2145
  19376. },
  19377. form: "anthro"
  19378. },
  19379. backNude: {
  19380. height: math.unit(15, "feet"),
  19381. weight: math.unit(3280, "lb"),
  19382. name: "Back (Nude)",
  19383. image: {
  19384. source: "./media/characters/sapphy/back-nude.svg",
  19385. extra: 2058/1918,
  19386. bottom: 125/2183
  19387. },
  19388. form: "anthro"
  19389. },
  19390. full: {
  19391. height: math.unit(15, "feet"),
  19392. weight: math.unit(3280, "lb"),
  19393. name: "Full",
  19394. image: {
  19395. source: "./media/characters/sapphy/full.svg",
  19396. extra: 1396/1317,
  19397. bottom: 44/1440
  19398. },
  19399. form: "anthro"
  19400. },
  19401. dick: {
  19402. height: math.unit(3.8, "feet"),
  19403. name: "Dick",
  19404. image: {
  19405. source: "./media/characters/sapphy/dick.svg"
  19406. },
  19407. form: "anthro"
  19408. },
  19409. feral: {
  19410. height: math.unit(35, "feet"),
  19411. weight: math.unit(160, "tons"),
  19412. name: "Feral",
  19413. image: {
  19414. source: "./media/characters/sapphy/feral.svg",
  19415. extra: 1050/573,
  19416. bottom: 60/1110
  19417. },
  19418. form: "feral",
  19419. default: true
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(15, "feet"),
  19426. form: "anthro"
  19427. },
  19428. {
  19429. name: "Casual Macro",
  19430. height: math.unit(120, "feet"),
  19431. form: "anthro"
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(2150, "feet"),
  19436. default: true,
  19437. form: "anthro"
  19438. },
  19439. {
  19440. name: "Megamacro",
  19441. height: math.unit(8, "miles"),
  19442. form: "anthro"
  19443. },
  19444. {
  19445. name: "Galaxy Mom",
  19446. height: math.unit(6, "megalightyears"),
  19447. form: "anthro"
  19448. },
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(35, "feet"),
  19452. form: "feral",
  19453. default: true
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(300, "feet"),
  19458. form: "feral"
  19459. },
  19460. {
  19461. name: "Galaxy Mom",
  19462. height: math.unit(10, "megalightyears"),
  19463. form: "feral"
  19464. },
  19465. ],
  19466. {
  19467. "anthro": {
  19468. name: "Anthro",
  19469. default: true
  19470. },
  19471. "feral": {
  19472. name: "Feral"
  19473. }
  19474. }
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(6, "feet"),
  19481. weight: math.unit(170, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/kiro/front.svg",
  19485. extra: 1064 / 1012,
  19486. bottom: 0.052
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Micro",
  19493. height: math.unit(6, "inches")
  19494. },
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(6, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Macro",
  19502. height: math.unit(72, "feet")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(5 + 9 / 12, "feet"),
  19511. weight: math.unit(175, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/irishfox/front.svg",
  19515. extra: 1912 / 1680,
  19516. bottom: 0.02
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Nano",
  19523. height: math.unit(1, "mm")
  19524. },
  19525. {
  19526. name: "Micro",
  19527. height: math.unit(2, "inches")
  19528. },
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(5 + 9 / 12, "feet"),
  19532. default: true
  19533. },
  19534. {
  19535. name: "Macro",
  19536. height: math.unit(45, "feet")
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(6 + 1 / 12, "feet"),
  19545. weight: math.unit(75, "lb"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/aronai-sieyes/front.svg",
  19549. extra: 1532/1450,
  19550. bottom: 42/1574
  19551. }
  19552. },
  19553. side: {
  19554. height: math.unit(6 + 1 / 12, "feet"),
  19555. weight: math.unit(75, "lb"),
  19556. name: "Side",
  19557. image: {
  19558. source: "./media/characters/aronai-sieyes/side.svg",
  19559. extra: 1422/1365,
  19560. bottom: 148/1570
  19561. }
  19562. },
  19563. back: {
  19564. height: math.unit(6 + 1 / 12, "feet"),
  19565. weight: math.unit(75, "lb"),
  19566. name: "Back",
  19567. image: {
  19568. source: "./media/characters/aronai-sieyes/back.svg",
  19569. extra: 1526/1464,
  19570. bottom: 51/1577
  19571. }
  19572. },
  19573. dressed: {
  19574. height: math.unit(6 + 1 / 12, "feet"),
  19575. weight: math.unit(75, "lb"),
  19576. name: "Dressed",
  19577. image: {
  19578. source: "./media/characters/aronai-sieyes/dressed.svg",
  19579. extra: 1559/1483,
  19580. bottom: 39/1598
  19581. }
  19582. },
  19583. slit: {
  19584. height: math.unit(1.3, "feet"),
  19585. name: "Slit",
  19586. image: {
  19587. source: "./media/characters/aronai-sieyes/slit.svg"
  19588. }
  19589. },
  19590. slitSpread: {
  19591. height: math.unit(0.9, "feet"),
  19592. name: "Slit (Spread)",
  19593. image: {
  19594. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19595. }
  19596. },
  19597. rump: {
  19598. height: math.unit(1.3, "feet"),
  19599. name: "Rump",
  19600. image: {
  19601. source: "./media/characters/aronai-sieyes/rump.svg"
  19602. }
  19603. },
  19604. maw: {
  19605. height: math.unit(1.25, "feet"),
  19606. name: "Maw",
  19607. image: {
  19608. source: "./media/characters/aronai-sieyes/maw.svg"
  19609. }
  19610. },
  19611. feral: {
  19612. height: math.unit(18, "feet"),
  19613. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19614. name: "Feral",
  19615. image: {
  19616. source: "./media/characters/aronai-sieyes/feral.svg",
  19617. extra: 1530 / 1240,
  19618. bottom: 0.035
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Micro",
  19625. height: math.unit(2, "inches")
  19626. },
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(6 + 1 / 12, "feet"),
  19630. default: true
  19631. }
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(12, "feet"),
  19639. weight: math.unit(410, "kg"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/xuna/front.svg",
  19643. extra: 2184 / 1980
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(12, "feet"),
  19648. weight: math.unit(410, "kg"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/xuna/side.svg",
  19652. extra: 2184 / 1980
  19653. }
  19654. },
  19655. back: {
  19656. height: math.unit(12, "feet"),
  19657. weight: math.unit(410, "kg"),
  19658. name: "Back",
  19659. image: {
  19660. source: "./media/characters/xuna/back.svg",
  19661. extra: 2184 / 1980
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Nano glow",
  19668. height: math.unit(10, "nm")
  19669. },
  19670. {
  19671. name: "Micro floof",
  19672. height: math.unit(0.3, "m")
  19673. },
  19674. {
  19675. name: "Huggable softy boi",
  19676. height: math.unit(3.6576, "m"),
  19677. default: true
  19678. },
  19679. {
  19680. name: "Admirable floof",
  19681. height: math.unit(80, "meters")
  19682. },
  19683. {
  19684. name: "Gentle macro",
  19685. height: math.unit(300, "meters")
  19686. },
  19687. {
  19688. name: "Very careful floof",
  19689. height: math.unit(3200, "meters")
  19690. },
  19691. {
  19692. name: "The mega floof",
  19693. height: math.unit(36000, "meters")
  19694. },
  19695. {
  19696. name: "Giga-fur-Wicker",
  19697. height: math.unit(4800000, "meters")
  19698. },
  19699. {
  19700. name: "Licky world",
  19701. height: math.unit(20000000, "meters")
  19702. },
  19703. {
  19704. name: "Floofy cyan sun",
  19705. height: math.unit(1500000000, "meters")
  19706. },
  19707. {
  19708. name: "Milky Wicker",
  19709. height: math.unit(1000000000000000000000, "meters")
  19710. },
  19711. {
  19712. name: "The observing Wicker",
  19713. height: math.unit(999999999999999999999999999, "meters")
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(5 + 9 / 12, "feet"),
  19722. weight: math.unit(150, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/arokha-sieyes/front.svg",
  19726. extra: 1425 / 1284,
  19727. bottom: 0.05
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(5 + 9 / 12, "feet")
  19735. },
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(30, "meters"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(6, "feet"),
  19748. weight: math.unit(180, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/arokh-sieyes/front.svg",
  19752. extra: 1830 / 1769,
  19753. bottom: 0.01
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(6, "feet")
  19761. },
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(30, "meters"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19771. {
  19772. side: {
  19773. height: math.unit(13 + 1 / 12, "feet"),
  19774. weight: math.unit(8.5, "tonnes"),
  19775. name: "Side",
  19776. image: {
  19777. source: "./media/characters/goldeneye/side.svg",
  19778. extra: 1182 / 778,
  19779. bottom: 0.067
  19780. }
  19781. },
  19782. paw: {
  19783. height: math.unit(3.4, "feet"),
  19784. name: "Paw",
  19785. image: {
  19786. source: "./media/characters/goldeneye/paw.svg"
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(13 + 1 / 12, "feet"),
  19794. default: true
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19800. {
  19801. front: {
  19802. height: math.unit(6 + 1 / 12, "feet"),
  19803. weight: math.unit(210, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/leonardo-lycheborne/front.svg",
  19807. extra: 776/723,
  19808. bottom: 34/810
  19809. }
  19810. },
  19811. side: {
  19812. height: math.unit(6 + 1 / 12, "feet"),
  19813. weight: math.unit(210, "lb"),
  19814. name: "Side",
  19815. image: {
  19816. source: "./media/characters/leonardo-lycheborne/side.svg",
  19817. extra: 780/728,
  19818. bottom: 12/792
  19819. }
  19820. },
  19821. back: {
  19822. height: math.unit(6 + 1 / 12, "feet"),
  19823. weight: math.unit(210, "lb"),
  19824. name: "Back",
  19825. image: {
  19826. source: "./media/characters/leonardo-lycheborne/back.svg",
  19827. extra: 775/721,
  19828. bottom: 17/792
  19829. }
  19830. },
  19831. hand: {
  19832. height: math.unit(1.08, "feet"),
  19833. name: "Hand",
  19834. image: {
  19835. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19836. }
  19837. },
  19838. foot: {
  19839. height: math.unit(1.32, "feet"),
  19840. name: "Foot",
  19841. image: {
  19842. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19843. }
  19844. },
  19845. maw: {
  19846. height: math.unit(1, "feet"),
  19847. name: "Maw",
  19848. image: {
  19849. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19850. }
  19851. },
  19852. were: {
  19853. height: math.unit(20, "feet"),
  19854. weight: math.unit(7800, "lb"),
  19855. name: "Were",
  19856. image: {
  19857. source: "./media/characters/leonardo-lycheborne/were.svg",
  19858. extra: 1224/1165,
  19859. bottom: 72/1296
  19860. }
  19861. },
  19862. feral: {
  19863. height: math.unit(7.5, "feet"),
  19864. weight: math.unit(600, "lb"),
  19865. name: "Feral",
  19866. image: {
  19867. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19868. extra: 797/702,
  19869. bottom: 139/936
  19870. }
  19871. },
  19872. taur: {
  19873. height: math.unit(11, "feet"),
  19874. weight: math.unit(3300, "lb"),
  19875. name: "Taur",
  19876. image: {
  19877. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19878. extra: 1271/1197,
  19879. bottom: 47/1318
  19880. }
  19881. },
  19882. barghest: {
  19883. height: math.unit(11, "feet"),
  19884. weight: math.unit(1300, "lb"),
  19885. name: "Barghest",
  19886. image: {
  19887. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19888. extra: 1291/1204,
  19889. bottom: 37/1328
  19890. }
  19891. },
  19892. dick: {
  19893. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19894. name: "Dick",
  19895. image: {
  19896. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19897. }
  19898. },
  19899. dickWere: {
  19900. height: math.unit((20) / 3.8, "feet"),
  19901. name: "Dick (Were)",
  19902. image: {
  19903. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(6 + 1 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(10, "feet"),
  19920. weight: math.unit(350, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/jet/front.svg",
  19924. extra: 2050 / 1980,
  19925. bottom: 0.013
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(10, "feet"),
  19930. weight: math.unit(350, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/jet/back.svg",
  19934. extra: 2050 / 1980,
  19935. bottom: 0.013
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Micro",
  19942. height: math.unit(6, "inches")
  19943. },
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(10, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(100, "feet")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19957. {
  19958. front: {
  19959. height: math.unit(15, "feet"),
  19960. weight: math.unit(2800, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/tanarath/front.svg",
  19964. extra: 2392 / 2220,
  19965. bottom: 0.03
  19966. }
  19967. },
  19968. back: {
  19969. height: math.unit(15, "feet"),
  19970. weight: math.unit(2800, "lb"),
  19971. name: "Back",
  19972. image: {
  19973. source: "./media/characters/tanarath/back.svg",
  19974. extra: 2392 / 2220,
  19975. bottom: 0.03
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(15, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(7 + 1 / 12, "feet"),
  19992. weight: math.unit(175, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/patty-cattybatty/front.svg",
  19996. extra: 908 / 874,
  19997. bottom: 0.025
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Micro",
  20004. height: math.unit(1, "inch")
  20005. },
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(7 + 1 / 12, "feet")
  20009. },
  20010. {
  20011. name: "Mini Macro",
  20012. height: math.unit(155, "feet")
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(1077, "feet")
  20017. },
  20018. {
  20019. name: "Mega Macro",
  20020. height: math.unit(47650, "feet"),
  20021. default: true
  20022. },
  20023. {
  20024. name: "Giga Macro",
  20025. height: math.unit(440, "miles")
  20026. },
  20027. {
  20028. name: "Tera Macro",
  20029. height: math.unit(8700, "miles")
  20030. },
  20031. {
  20032. name: "Planetary Macro",
  20033. height: math.unit(32700, "miles")
  20034. },
  20035. {
  20036. name: "Solar Macro",
  20037. height: math.unit(550000, "miles")
  20038. },
  20039. {
  20040. name: "Celestial Macro",
  20041. height: math.unit(2.5, "AU")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(4 + 5 / 12, "feet"),
  20050. weight: math.unit(90, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/cappu/front.svg",
  20054. extra: 1247 / 1152,
  20055. bottom: 0.012
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(4 + 5 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20069. {
  20070. frontDressed: {
  20071. height: math.unit(70, "cm"),
  20072. weight: math.unit(6, "kg"),
  20073. name: "Front (Dressed)",
  20074. image: {
  20075. source: "./media/characters/sebi/front-dressed.svg",
  20076. extra: 713.5 / 686.5,
  20077. bottom: 0.003
  20078. }
  20079. },
  20080. front: {
  20081. height: math.unit(70, "cm"),
  20082. weight: math.unit(5, "kg"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/sebi/front.svg",
  20086. extra: 713.5 / 686.5,
  20087. bottom: 0.003
  20088. }
  20089. }
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(70, "cm"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Macro",
  20099. height: math.unit(8, "meters")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(6, "feet"),
  20108. weight: math.unit(150, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/typhek/front.svg",
  20112. extra: 1948 / 1929,
  20113. bottom: 0.025
  20114. }
  20115. },
  20116. side: {
  20117. height: math.unit(6, "feet"),
  20118. weight: math.unit(150, "lb"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/typhek/side.svg",
  20122. extra: 2034 / 2010,
  20123. bottom: 0.003
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(6, "feet"),
  20128. weight: math.unit(150, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/typhek/back.svg",
  20132. extra: 2005 / 1978,
  20133. bottom: 0.004
  20134. }
  20135. },
  20136. palm: {
  20137. height: math.unit(1.2, "feet"),
  20138. name: "Palm",
  20139. image: {
  20140. source: "./media/characters/typhek/palm.svg"
  20141. }
  20142. },
  20143. fist: {
  20144. height: math.unit(1.1, "feet"),
  20145. name: "Fist",
  20146. image: {
  20147. source: "./media/characters/typhek/fist.svg"
  20148. }
  20149. },
  20150. foot: {
  20151. height: math.unit(1.57, "feet"),
  20152. name: "Foot",
  20153. image: {
  20154. source: "./media/characters/typhek/foot.svg"
  20155. }
  20156. },
  20157. sole: {
  20158. height: math.unit(2.05, "feet"),
  20159. name: "Sole",
  20160. image: {
  20161. source: "./media/characters/typhek/sole.svg"
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Macro",
  20168. height: math.unit(40, "stories"),
  20169. default: true
  20170. },
  20171. {
  20172. name: "Megamacro",
  20173. height: math.unit(1, "mile")
  20174. },
  20175. {
  20176. name: "Gigamacro",
  20177. height: math.unit(4000, "solarradii")
  20178. },
  20179. {
  20180. name: "Universal",
  20181. height: math.unit(1.1, "universes")
  20182. }
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20187. {
  20188. side: {
  20189. height: math.unit(5 + 7 / 12, "feet"),
  20190. weight: math.unit(150, "lb"),
  20191. name: "Side",
  20192. image: {
  20193. source: "./media/characters/kassy/side.svg",
  20194. extra: 1280 / 1225,
  20195. bottom: 0.002
  20196. }
  20197. },
  20198. front: {
  20199. height: math.unit(5 + 7 / 12, "feet"),
  20200. weight: math.unit(150, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/kassy/front.svg",
  20204. extra: 1280 / 1225,
  20205. bottom: 0.025
  20206. }
  20207. },
  20208. back: {
  20209. height: math.unit(5 + 7 / 12, "feet"),
  20210. weight: math.unit(150, "lb"),
  20211. name: "Back",
  20212. image: {
  20213. source: "./media/characters/kassy/back.svg",
  20214. extra: 1280 / 1225,
  20215. bottom: 0.002
  20216. }
  20217. },
  20218. foot: {
  20219. height: math.unit(1.266, "feet"),
  20220. name: "Foot",
  20221. image: {
  20222. source: "./media/characters/kassy/foot.svg"
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(5 + 7 / 12, "feet")
  20230. },
  20231. {
  20232. name: "Macro",
  20233. height: math.unit(137, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Megamacro",
  20238. height: math.unit(1, "mile")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(6 + 1 / 12, "feet"),
  20247. weight: math.unit(200, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/neil/front.svg",
  20251. extra: 1326 / 1250,
  20252. bottom: 0.023
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(6 + 1 / 12, "feet"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Macro",
  20264. height: math.unit(200, "feet")
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(5 + 9 / 12, "feet"),
  20273. weight: math.unit(190, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/atticus/front.svg",
  20277. extra: 2934 / 2785,
  20278. bottom: 0.025
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(5 + 9 / 12, "feet"),
  20286. default: true
  20287. },
  20288. {
  20289. name: "Macro",
  20290. height: math.unit(180, "feet")
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20296. {
  20297. side: {
  20298. height: math.unit(9, "feet"),
  20299. weight: math.unit(650, "lb"),
  20300. name: "Side",
  20301. image: {
  20302. source: "./media/characters/milo/side.svg",
  20303. extra: 2644 / 2310,
  20304. bottom: 0.032
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(9, "feet"),
  20312. default: true
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(300, "feet")
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20322. {
  20323. side: {
  20324. height: math.unit(8, "meters"),
  20325. weight: math.unit(90000, "kg"),
  20326. name: "Side",
  20327. image: {
  20328. source: "./media/characters/ijzer/side.svg",
  20329. extra: 2756 / 1600,
  20330. bottom: 0.01
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Small",
  20337. height: math.unit(3, "meters")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(8, "meters"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Normal+",
  20346. height: math.unit(10, "meters")
  20347. },
  20348. {
  20349. name: "Bigger",
  20350. height: math.unit(24, "meters")
  20351. },
  20352. {
  20353. name: "Huge",
  20354. height: math.unit(80, "meters")
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20360. {
  20361. front: {
  20362. height: math.unit(6 + 2 / 12, "feet"),
  20363. weight: math.unit(153, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/luca-cervicum/front.svg",
  20367. extra: 370 / 327,
  20368. bottom: 0.015
  20369. }
  20370. },
  20371. back: {
  20372. height: math.unit(6 + 2 / 12, "feet"),
  20373. weight: math.unit(153, "lb"),
  20374. name: "Back",
  20375. image: {
  20376. source: "./media/characters/luca-cervicum/back.svg",
  20377. extra: 367 / 333,
  20378. bottom: 0.005
  20379. }
  20380. },
  20381. frontGear: {
  20382. height: math.unit(6 + 2 / 12, "feet"),
  20383. weight: math.unit(173, "lb"),
  20384. name: "Front (Gear)",
  20385. image: {
  20386. source: "./media/characters/luca-cervicum/front-gear.svg",
  20387. extra: 377 / 333,
  20388. bottom: 0.006
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(6 + 2 / 12, "feet"),
  20396. default: true
  20397. },
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20402. {
  20403. front: {
  20404. height: math.unit(6 + 1 / 12, "feet"),
  20405. weight: math.unit(304, "lb"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/oliver/front.svg",
  20409. extra: 157 / 143,
  20410. bottom: 0.08
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(6 + 1 / 12, "feet"),
  20418. default: true
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(5 + 7 / 12, "feet"),
  20427. weight: math.unit(140, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/shane/front.svg",
  20431. extra: 304 / 289,
  20432. bottom: 0.005
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. default: true
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(5 + 9 / 12, "feet"),
  20449. weight: math.unit(178, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/shin/front.svg",
  20453. extra: 159 / 151,
  20454. bottom: 0.015
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(5 + 9 / 12, "feet"),
  20462. default: true
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(5 + 10 / 12, "feet"),
  20471. weight: math.unit(168, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/xerxes/front.svg",
  20475. extra: 282 / 260,
  20476. bottom: 0.045
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(5 + 10 / 12, "feet"),
  20484. default: true
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20490. {
  20491. front: {
  20492. height: math.unit(6 + 7 / 12, "feet"),
  20493. weight: math.unit(208, "lb"),
  20494. name: "Front",
  20495. image: {
  20496. source: "./media/characters/chaska/front.svg",
  20497. extra: 332 / 319,
  20498. bottom: 0.015
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(6 + 7 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(5 + 8 / 12, "feet"),
  20515. weight: math.unit(208, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/enuk/front.svg",
  20519. extra: 437 / 406,
  20520. bottom: 0.02
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 8 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(5 + 10 / 12, "feet"),
  20537. weight: math.unit(252, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/bruun/front.svg",
  20541. extra: 197 / 187,
  20542. bottom: 0.012
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(5 + 10 / 12, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(6 + 10 / 12, "feet"),
  20559. weight: math.unit(255, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/alexeev/front.svg",
  20563. extra: 213 / 200,
  20564. bottom: 0.05
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(6 + 10 / 12, "feet"),
  20572. default: true
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(2 + 8 / 12, "feet"),
  20581. weight: math.unit(22, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/evelyn/front.svg",
  20585. extra: 208 / 180
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(2 + 8 / 12, "feet"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(5 + 9 / 12, "feet"),
  20602. weight: math.unit(139, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/inca/front.svg",
  20606. extra: 294 / 291,
  20607. bottom: 0.03
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 9 / 12, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(6 + 3 / 12, "feet"),
  20624. weight: math.unit(185, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/mera/front.svg",
  20628. extra: 291 / 277,
  20629. bottom: 0.03
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(6 + 3 / 12, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(6 + 7 / 12, "feet"),
  20646. weight: math.unit(160, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/ceres/front.svg",
  20650. extra: 1023 / 950,
  20651. bottom: 0.027
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(6 + 7 / 12, "feet"),
  20656. weight: math.unit(160, "lb"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/ceres/back.svg",
  20660. extra: 1023 / 950
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(6 + 7 / 12, "feet"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(5 + 10 / 12, "feet"),
  20677. weight: math.unit(150, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/kris/front.svg",
  20681. extra: 885 / 803,
  20682. bottom: 0.03
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(5 + 10 / 12, "feet"),
  20690. default: true
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(7, "feet"),
  20699. weight: math.unit(120, "kg"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/taluthus/front.svg",
  20703. extra: 903 / 833,
  20704. bottom: 0.015
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(7, "feet"),
  20712. default: true
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(300, "feet")
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20722. {
  20723. front: {
  20724. height: math.unit(5 + 9 / 12, "feet"),
  20725. weight: math.unit(145, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/dawn/front.svg",
  20729. extra: 2094 / 2016,
  20730. bottom: 0.025
  20731. }
  20732. },
  20733. back: {
  20734. height: math.unit(5 + 9 / 12, "feet"),
  20735. weight: math.unit(160, "lb"),
  20736. name: "Back",
  20737. image: {
  20738. source: "./media/characters/dawn/back.svg",
  20739. extra: 2112 / 2080,
  20740. bottom: 0.005
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6 + 7 / 12, "feet"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20754. {
  20755. anthro: {
  20756. height: math.unit(8 + 3 / 12, "feet"),
  20757. weight: math.unit(450, "lb"),
  20758. name: "Anthro",
  20759. image: {
  20760. source: "./media/characters/arador/anthro.svg",
  20761. extra: 1835 / 1718,
  20762. bottom: 0.025
  20763. }
  20764. },
  20765. feral: {
  20766. height: math.unit(4, "feet"),
  20767. weight: math.unit(200, "lb"),
  20768. name: "Feral",
  20769. image: {
  20770. source: "./media/characters/arador/feral.svg",
  20771. extra: 1683 / 1514,
  20772. bottom: 0.07
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(8 + 3 / 12, "feet")
  20780. },
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(82.5, "feet"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(5 + 10 / 12, "feet"),
  20793. weight: math.unit(125, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/dharsi/front.svg",
  20797. extra: 716 / 630,
  20798. bottom: 0.035
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Nano",
  20805. height: math.unit(100, "nm")
  20806. },
  20807. {
  20808. name: "Micro",
  20809. height: math.unit(2, "inches")
  20810. },
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(5 + 10 / 12, "feet"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Macro",
  20818. height: math.unit(1000, "feet")
  20819. },
  20820. {
  20821. name: "Megamacro",
  20822. height: math.unit(10, "miles")
  20823. },
  20824. {
  20825. name: "Gigamacro",
  20826. height: math.unit(3000, "miles")
  20827. },
  20828. {
  20829. name: "Teramacro",
  20830. height: math.unit(500000, "miles")
  20831. },
  20832. {
  20833. name: "Teramacro+",
  20834. height: math.unit(30, "galaxies")
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(6, "feet"),
  20843. weight: math.unit(150, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/deathy/front.svg",
  20847. extra: 1552 / 1463,
  20848. bottom: 0.025
  20849. }
  20850. },
  20851. side: {
  20852. height: math.unit(6, "feet"),
  20853. weight: math.unit(150, "lb"),
  20854. name: "Side",
  20855. image: {
  20856. source: "./media/characters/deathy/side.svg",
  20857. extra: 1604 / 1455,
  20858. bottom: 0.025
  20859. }
  20860. },
  20861. back: {
  20862. height: math.unit(6, "feet"),
  20863. weight: math.unit(150, "lb"),
  20864. name: "Back",
  20865. image: {
  20866. source: "./media/characters/deathy/back.svg",
  20867. extra: 1580 / 1463,
  20868. bottom: 0.005
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Micro",
  20875. height: math.unit(5, "millimeters")
  20876. },
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(6 + 5 / 12, "feet"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20886. {
  20887. front: {
  20888. height: math.unit(16, "feet"),
  20889. weight: math.unit(4000, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/juniper/front.svg",
  20893. bottom: 0.04
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(16, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(6, "feet"),
  20910. weight: math.unit(150, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/hipster/front.svg",
  20914. extra: 1312 / 1209,
  20915. bottom: 0.025
  20916. }
  20917. },
  20918. back: {
  20919. height: math.unit(6, "feet"),
  20920. weight: math.unit(150, "lb"),
  20921. name: "Back",
  20922. image: {
  20923. source: "./media/characters/hipster/back.svg",
  20924. extra: 1281 / 1196,
  20925. bottom: 0.01
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Micro",
  20932. height: math.unit(1, "mm")
  20933. },
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(4, "inches"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(500, "feet")
  20942. },
  20943. {
  20944. name: "Megamacro",
  20945. height: math.unit(1000, "miles")
  20946. },
  20947. ]
  20948. ))
  20949. characterMakers.push(() => makeCharacter(
  20950. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20951. {
  20952. front: {
  20953. height: math.unit(6, "feet"),
  20954. weight: math.unit(150, "lb"),
  20955. name: "Front",
  20956. image: {
  20957. source: "./media/characters/tendirmuldr/front.svg",
  20958. extra: 1878 / 1772,
  20959. bottom: 0.015
  20960. }
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Megamacro",
  20966. height: math.unit(1500, "miles"),
  20967. default: true
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20973. {
  20974. front: {
  20975. height: math.unit(14, "feet"),
  20976. weight: math.unit(12000, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/mort/front.svg",
  20980. extra: 365 / 318,
  20981. bottom: 0.01
  20982. }
  20983. },
  20984. side: {
  20985. height: math.unit(14, "feet"),
  20986. weight: math.unit(12000, "lb"),
  20987. name: "Side",
  20988. image: {
  20989. source: "./media/characters/mort/side.svg",
  20990. extra: 365 / 318,
  20991. bottom: 0.052
  20992. },
  20993. default: true
  20994. },
  20995. back: {
  20996. height: math.unit(14, "feet"),
  20997. weight: math.unit(12000, "lb"),
  20998. name: "Back",
  20999. image: {
  21000. source: "./media/characters/mort/back.svg",
  21001. extra: 371 / 332,
  21002. bottom: 0.18
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(14, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21016. {
  21017. front: {
  21018. height: math.unit(8, "feet"),
  21019. weight: math.unit(1, "ton"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/lycoa/front.svg",
  21023. extra: 1836/1728,
  21024. bottom: 81/1917
  21025. }
  21026. },
  21027. back: {
  21028. height: math.unit(8, "feet"),
  21029. weight: math.unit(1, "ton"),
  21030. name: "Back",
  21031. image: {
  21032. source: "./media/characters/lycoa/back.svg",
  21033. extra: 1785/1720,
  21034. bottom: 91/1876
  21035. }
  21036. },
  21037. head: {
  21038. height: math.unit(1.6243, "feet"),
  21039. name: "Head",
  21040. image: {
  21041. source: "./media/characters/lycoa/head.svg",
  21042. extra: 1011/782,
  21043. bottom: 0/1011
  21044. }
  21045. },
  21046. tailmaw: {
  21047. height: math.unit(1.9, "feet"),
  21048. name: "Tailmaw",
  21049. image: {
  21050. source: "./media/characters/lycoa/tailmaw.svg"
  21051. }
  21052. },
  21053. tentacles: {
  21054. height: math.unit(2.1, "feet"),
  21055. name: "Tentacles",
  21056. image: {
  21057. source: "./media/characters/lycoa/tentacles.svg"
  21058. }
  21059. },
  21060. dick: {
  21061. height: math.unit(1.73, "feet"),
  21062. name: "Dick",
  21063. image: {
  21064. source: "./media/characters/lycoa/dick.svg"
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(8, "feet"),
  21072. default: true
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(30, "feet")
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21082. {
  21083. front: {
  21084. height: math.unit(4 + 2 / 12, "feet"),
  21085. weight: math.unit(70, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/naldara/front.svg",
  21089. extra: 1664/1387,
  21090. bottom: 81/1745
  21091. },
  21092. form: "anthro",
  21093. default: true
  21094. },
  21095. naga: {
  21096. height: math.unit(20, "feet"),
  21097. weight: math.unit(15000, "kg"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/naldara/naga.svg",
  21101. extra: 1590/1396,
  21102. bottom: 285/1875
  21103. },
  21104. form: "naga",
  21105. default: true
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(4 + 2 / 12, "feet"),
  21112. form: "anthro",
  21113. default: true
  21114. },
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(20, "feet"),
  21118. form: "naga",
  21119. default: true
  21120. },
  21121. ],
  21122. {
  21123. "anthro": {
  21124. name: "Anthro",
  21125. default: true
  21126. },
  21127. "naga": {
  21128. name: "Naga"
  21129. }
  21130. }
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(13 + 7 / 12, "feet"),
  21137. weight: math.unit(1500, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/briar/front.svg",
  21141. extra: 1223/1157,
  21142. bottom: 123/1346
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(13 + 7 / 12, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21156. {
  21157. side: {
  21158. height: math.unit(16, "feet"),
  21159. weight: math.unit(500, "lb"),
  21160. name: "Side",
  21161. image: {
  21162. source: "./media/characters/vanguard/side.svg",
  21163. extra: 1022/914,
  21164. bottom: 30/1052
  21165. }
  21166. },
  21167. sideAlt: {
  21168. height: math.unit(10, "feet"),
  21169. weight: math.unit(500, "lb"),
  21170. name: "Side (Alt)",
  21171. image: {
  21172. source: "./media/characters/vanguard/side-alt.svg",
  21173. extra: 502 / 425,
  21174. bottom: 0.087
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(17.71, "feet"),
  21182. default: true
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21188. {
  21189. front: {
  21190. height: math.unit(7.5, "feet"),
  21191. weight: math.unit(2, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/artemis/work-safe-front.svg",
  21195. extra: 1192 / 1075,
  21196. bottom: 0.07
  21197. },
  21198. form: "work-safe",
  21199. default: true
  21200. },
  21201. frontNsfw: {
  21202. height: math.unit(7.5, "feet"),
  21203. weight: math.unit(2, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/artemis/calibrating-front.svg",
  21207. extra: 1192 / 1075,
  21208. bottom: 0.07
  21209. },
  21210. form: "calibrating",
  21211. default: true
  21212. },
  21213. frontNsfwer: {
  21214. height: math.unit(7.5, "feet"),
  21215. weight: math.unit(2, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/artemis/oversize-load-front.svg",
  21219. extra: 1192 / 1075,
  21220. bottom: 0.07
  21221. },
  21222. form: "oversize-load",
  21223. default: true
  21224. },
  21225. side: {
  21226. height: math.unit(7.5, "feet"),
  21227. weight: math.unit(2, "lb"),
  21228. name: "Side",
  21229. image: {
  21230. source: "./media/characters/artemis/work-safe-side.svg",
  21231. extra: 1192 / 1075,
  21232. bottom: 0.07
  21233. },
  21234. form: "work-safe"
  21235. },
  21236. sideNsfw: {
  21237. height: math.unit(7.5, "feet"),
  21238. weight: math.unit(2, "lb"),
  21239. name: "Side",
  21240. image: {
  21241. source: "./media/characters/artemis/calibrating-side.svg",
  21242. extra: 1192 / 1075,
  21243. bottom: 0.07
  21244. },
  21245. form: "calibrating"
  21246. },
  21247. sideNsfwer: {
  21248. height: math.unit(7.5, "feet"),
  21249. weight: math.unit(2, "lb"),
  21250. name: "Side",
  21251. image: {
  21252. source: "./media/characters/artemis/oversize-load-side.svg",
  21253. extra: 1192 / 1075,
  21254. bottom: 0.07
  21255. },
  21256. form: "oversize-load"
  21257. },
  21258. maw: {
  21259. height: math.unit(1.1, "feet"),
  21260. name: "Maw",
  21261. image: {
  21262. source: "./media/characters/artemis/maw.svg"
  21263. },
  21264. form: "work-safe"
  21265. },
  21266. stomach: {
  21267. height: math.unit(0.95, "feet"),
  21268. name: "Stomach",
  21269. image: {
  21270. source: "./media/characters/artemis/stomach.svg"
  21271. },
  21272. form: "work-safe"
  21273. },
  21274. dickCanine: {
  21275. height: math.unit(1, "feet"),
  21276. name: "Dick (Canine)",
  21277. image: {
  21278. source: "./media/characters/artemis/dick-canine.svg"
  21279. },
  21280. form: "calibrating"
  21281. },
  21282. dickEquine: {
  21283. height: math.unit(0.85, "feet"),
  21284. name: "Dick (Equine)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-equine.svg"
  21287. },
  21288. form: "calibrating"
  21289. },
  21290. dickExotic: {
  21291. height: math.unit(0.85, "feet"),
  21292. name: "Dick (Exotic)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-exotic.svg"
  21295. },
  21296. form: "calibrating"
  21297. },
  21298. dickCanineBigger: {
  21299. height: math.unit(1 * 1.33, "feet"),
  21300. name: "Dick (Canine)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-canine.svg"
  21303. },
  21304. form: "oversize-load"
  21305. },
  21306. dickEquineBigger: {
  21307. height: math.unit(0.85 * 1.33, "feet"),
  21308. name: "Dick (Equine)",
  21309. image: {
  21310. source: "./media/characters/artemis/dick-equine.svg"
  21311. },
  21312. form: "oversize-load"
  21313. },
  21314. dickExoticBigger: {
  21315. height: math.unit(0.85 * 1.33, "feet"),
  21316. name: "Dick (Exotic)",
  21317. image: {
  21318. source: "./media/characters/artemis/dick-exotic.svg"
  21319. },
  21320. form: "oversize-load"
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(7.5, "feet"),
  21327. form: "work-safe",
  21328. default: true
  21329. },
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(7.5, "feet"),
  21333. form: "calibrating",
  21334. default: true
  21335. },
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(7.5, "feet"),
  21339. form: "oversize-load",
  21340. default: true
  21341. },
  21342. {
  21343. name: "Enlarged",
  21344. height: math.unit(12, "feet"),
  21345. form: "work-safe",
  21346. },
  21347. {
  21348. name: "Enlarged",
  21349. height: math.unit(12, "feet"),
  21350. form: "calibrating",
  21351. },
  21352. {
  21353. name: "Enlarged",
  21354. height: math.unit(12, "feet"),
  21355. form: "oversize-load",
  21356. },
  21357. ],
  21358. {
  21359. "work-safe": {
  21360. name: "Work-Safe",
  21361. default: true
  21362. },
  21363. "calibrating": {
  21364. name: "Calibrating"
  21365. },
  21366. "oversize-load": {
  21367. name: "Oversize Load"
  21368. }
  21369. }
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(5 + 3 / 12, "feet"),
  21376. weight: math.unit(160, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/kira/front.svg",
  21380. extra: 906 / 786,
  21381. bottom: 0.01
  21382. }
  21383. },
  21384. back: {
  21385. height: math.unit(5 + 3 / 12, "feet"),
  21386. weight: math.unit(160, "lb"),
  21387. name: "Back",
  21388. image: {
  21389. source: "./media/characters/kira/back.svg",
  21390. extra: 882 / 757,
  21391. bottom: 0.005
  21392. }
  21393. },
  21394. frontDressed: {
  21395. height: math.unit(5 + 3 / 12, "feet"),
  21396. weight: math.unit(160, "lb"),
  21397. name: "Front (Dressed)",
  21398. image: {
  21399. source: "./media/characters/kira/front-dressed.svg",
  21400. extra: 906 / 786,
  21401. bottom: 0.01
  21402. }
  21403. },
  21404. beans: {
  21405. height: math.unit(0.92, "feet"),
  21406. name: "Beans",
  21407. image: {
  21408. source: "./media/characters/kira/beans.svg"
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(5 + 3 / 12, "feet"),
  21416. default: true
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(5 + 4 / 12, "feet"),
  21425. weight: math.unit(145, "lb"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/scramble/front.svg",
  21429. extra: 763 / 727,
  21430. bottom: 0.05
  21431. }
  21432. },
  21433. back: {
  21434. height: math.unit(5 + 4 / 12, "feet"),
  21435. weight: math.unit(145, "lb"),
  21436. name: "Back",
  21437. image: {
  21438. source: "./media/characters/scramble/back.svg",
  21439. extra: 826 / 737,
  21440. bottom: 0.002
  21441. }
  21442. },
  21443. },
  21444. [
  21445. {
  21446. name: "Normal",
  21447. height: math.unit(5 + 4 / 12, "feet"),
  21448. default: true
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21454. {
  21455. side: {
  21456. height: math.unit(6 + 2 / 12, "feet"),
  21457. weight: math.unit(190, "lb"),
  21458. name: "Side",
  21459. image: {
  21460. source: "./media/characters/biscuit/side.svg",
  21461. extra: 858 / 791,
  21462. bottom: 0.044
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(6 + 2 / 12, "feet"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(5 + 2 / 12, "feet"),
  21479. weight: math.unit(120, "lb"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/poffin/front.svg",
  21483. extra: 786 / 680,
  21484. bottom: 0.005
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(5 + 2 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(6 + 3 / 12, "feet"),
  21501. weight: math.unit(519, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/dhari/front.svg",
  21505. extra: 1048 / 946,
  21506. bottom: 0.015
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(6 + 3 / 12, "feet"),
  21511. weight: math.unit(519, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/dhari/back.svg",
  21515. extra: 1048 / 931,
  21516. bottom: 0.005
  21517. }
  21518. },
  21519. frontDressed: {
  21520. height: math.unit(6 + 3 / 12, "feet"),
  21521. weight: math.unit(519, "lb"),
  21522. name: "Front (Dressed)",
  21523. image: {
  21524. source: "./media/characters/dhari/front-dressed.svg",
  21525. extra: 1713 / 1546,
  21526. bottom: 0.02
  21527. }
  21528. },
  21529. backDressed: {
  21530. height: math.unit(6 + 3 / 12, "feet"),
  21531. weight: math.unit(519, "lb"),
  21532. name: "Back (Dressed)",
  21533. image: {
  21534. source: "./media/characters/dhari/back-dressed.svg",
  21535. extra: 1699 / 1537,
  21536. bottom: 0.01
  21537. }
  21538. },
  21539. maw: {
  21540. height: math.unit(0.95, "feet"),
  21541. name: "Maw",
  21542. image: {
  21543. source: "./media/characters/dhari/maw.svg"
  21544. }
  21545. },
  21546. wereFront: {
  21547. height: math.unit(12 + 8 / 12, "feet"),
  21548. weight: math.unit(4000, "lb"),
  21549. name: "Front (Were)",
  21550. image: {
  21551. source: "./media/characters/dhari/were-front.svg",
  21552. extra: 1065 / 969,
  21553. bottom: 0.015
  21554. }
  21555. },
  21556. wereBack: {
  21557. height: math.unit(12 + 8 / 12, "feet"),
  21558. weight: math.unit(4000, "lb"),
  21559. name: "Back (Were)",
  21560. image: {
  21561. source: "./media/characters/dhari/were-back.svg",
  21562. extra: 1065 / 969,
  21563. bottom: 0.012
  21564. }
  21565. },
  21566. wereMaw: {
  21567. height: math.unit(0.625, "meters"),
  21568. name: "Maw (Were)",
  21569. image: {
  21570. source: "./media/characters/dhari/were-maw.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(6 + 3 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21584. {
  21585. anthro: {
  21586. height: math.unit(5 + 7 / 12, "feet"),
  21587. weight: math.unit(175, "lb"),
  21588. name: "Anthro",
  21589. image: {
  21590. source: "./media/characters/rena-dyne/anthro.svg",
  21591. extra: 1849 / 1785,
  21592. bottom: 0.005
  21593. }
  21594. },
  21595. taur: {
  21596. height: math.unit(15 + 6 / 12, "feet"),
  21597. weight: math.unit(8000, "lb"),
  21598. name: "Taur",
  21599. image: {
  21600. source: "./media/characters/rena-dyne/taur.svg",
  21601. extra: 2315 / 2234,
  21602. bottom: 0.033
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(5 + 7 / 12, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(8, "feet"),
  21619. weight: math.unit(600, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/weremeep/front.svg",
  21623. extra: 967 / 862,
  21624. bottom: 0.01
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(8, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Lorg",
  21636. height: math.unit(12, "feet")
  21637. },
  21638. {
  21639. name: "Oh Lawd She Comin'",
  21640. height: math.unit(20, "feet")
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21646. {
  21647. front: {
  21648. height: math.unit(4, "feet"),
  21649. weight: math.unit(90, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/reza/front.svg",
  21653. extra: 1183 / 1111,
  21654. bottom: 0.017
  21655. }
  21656. },
  21657. back: {
  21658. height: math.unit(4, "feet"),
  21659. weight: math.unit(90, "lb"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/reza/back.svg",
  21663. extra: 1183 / 1111,
  21664. bottom: 0.01
  21665. }
  21666. },
  21667. drake: {
  21668. height: math.unit(30, "feet"),
  21669. weight: math.unit(246960, "lb"),
  21670. name: "Drake",
  21671. image: {
  21672. source: "./media/characters/reza/drake.svg",
  21673. extra: 2350 / 2024,
  21674. bottom: 60.7 / 2403
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(4, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21688. {
  21689. side: {
  21690. height: math.unit(15, "feet"),
  21691. weight: math.unit(14, "tons"),
  21692. name: "Side",
  21693. image: {
  21694. source: "./media/characters/athea/side.svg",
  21695. extra: 960 / 540,
  21696. bottom: 0.003
  21697. }
  21698. },
  21699. sitting: {
  21700. height: math.unit(6 * 2.85, "feet"),
  21701. weight: math.unit(14, "tons"),
  21702. name: "Sitting",
  21703. image: {
  21704. source: "./media/characters/athea/sitting.svg",
  21705. extra: 621 / 581,
  21706. bottom: 0.075
  21707. }
  21708. },
  21709. maw: {
  21710. height: math.unit(7.59498031496063, "feet"),
  21711. name: "Maw",
  21712. image: {
  21713. source: "./media/characters/athea/maw.svg"
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Lap Cat",
  21720. height: math.unit(2.5, "feet")
  21721. },
  21722. {
  21723. name: "Minimacro",
  21724. height: math.unit(15, "feet"),
  21725. default: true
  21726. },
  21727. {
  21728. name: "Macro",
  21729. height: math.unit(120, "feet")
  21730. },
  21731. {
  21732. name: "Macro+",
  21733. height: math.unit(640, "feet")
  21734. },
  21735. {
  21736. name: "Colossus",
  21737. height: math.unit(2.2, "miles")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(8 + 8 / 12, "feet"),
  21746. weight: math.unit(130, "kg"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/seroko/front.svg",
  21750. extra: 1385 / 1280,
  21751. bottom: 0.025
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(8 + 8 / 12, "feet"),
  21756. weight: math.unit(130, "kg"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/seroko/back.svg",
  21760. extra: 1369 / 1238,
  21761. bottom: 0.018
  21762. }
  21763. },
  21764. frontDressed: {
  21765. height: math.unit(8 + 8 / 12, "feet"),
  21766. weight: math.unit(130, "kg"),
  21767. name: "Front (Dressed)",
  21768. image: {
  21769. source: "./media/characters/seroko/front-dressed.svg",
  21770. extra: 1366 / 1275,
  21771. bottom: 0.03
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(8 + 8 / 12, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(5.5, "feet"),
  21788. weight: math.unit(160, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/quatzi/front.svg",
  21792. extra: 2346 / 2242,
  21793. bottom: 0.015
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(5.5, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Big",
  21805. height: math.unit(7.7, "feet")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(5 + 11 / 12, "feet"),
  21814. weight: math.unit(180, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/sen/front.svg",
  21818. extra: 1321 / 1254,
  21819. bottom: 0.015
  21820. }
  21821. },
  21822. side: {
  21823. height: math.unit(5 + 11 / 12, "feet"),
  21824. weight: math.unit(180, "lb"),
  21825. name: "Side",
  21826. image: {
  21827. source: "./media/characters/sen/side.svg",
  21828. extra: 1321 / 1254,
  21829. bottom: 0.007
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(5 + 11 / 12, "feet"),
  21834. weight: math.unit(180, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/sen/back.svg",
  21838. extra: 1321 / 1254
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Normal",
  21845. height: math.unit(5 + 11 / 12, "feet"),
  21846. default: true
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(166.6, "cm"),
  21855. weight: math.unit(66.6, "kg"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/fruity/front.svg",
  21859. extra: 1510 / 1386,
  21860. bottom: 0.04
  21861. }
  21862. },
  21863. back: {
  21864. height: math.unit(166.6, "cm"),
  21865. weight: math.unit(66.6, "lb"),
  21866. name: "Back",
  21867. image: {
  21868. source: "./media/characters/fruity/back.svg",
  21869. extra: 1563 / 1435,
  21870. bottom: 0.005
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(166.6, "cm"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Demonic",
  21882. height: math.unit(166.6, "feet")
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21888. {
  21889. side: {
  21890. height: math.unit(10, "feet"),
  21891. weight: math.unit(500, "lb"),
  21892. name: "Side",
  21893. image: {
  21894. source: "./media/characters/zost/side.svg",
  21895. extra: 2870/2533,
  21896. bottom: 252/3122
  21897. }
  21898. },
  21899. mawFront: {
  21900. height: math.unit(1.08, "meters"),
  21901. name: "Maw (Front)",
  21902. image: {
  21903. source: "./media/characters/zost/maw-front.svg"
  21904. }
  21905. },
  21906. mawSide: {
  21907. height: math.unit(2.66, "feet"),
  21908. name: "Maw (Side)",
  21909. image: {
  21910. source: "./media/characters/zost/maw-side.svg"
  21911. }
  21912. },
  21913. wingspan: {
  21914. height: math.unit(7.4, "feet"),
  21915. name: "Wingspan",
  21916. image: {
  21917. source: "./media/characters/zost/wingspan.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(10, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5 + 4 / 12, "feet"),
  21934. weight: math.unit(120, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/luci/front.svg",
  21938. extra: 1985 / 1884,
  21939. bottom: 0.04
  21940. }
  21941. },
  21942. back: {
  21943. height: math.unit(5 + 4 / 12, "feet"),
  21944. weight: math.unit(120, "lb"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/luci/back.svg",
  21948. extra: 1892 / 1791,
  21949. bottom: 0.002
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(5 + 4 / 12, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(1500, "feet"),
  21966. weight: math.unit(3.8e6, "tons"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/2th/front.svg",
  21970. extra: 3489 / 3350,
  21971. bottom: 0.1
  21972. }
  21973. },
  21974. foot: {
  21975. height: math.unit(461, "feet"),
  21976. name: "Foot",
  21977. image: {
  21978. source: "./media/characters/2th/foot.svg"
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "\"Micro\"",
  21985. height: math.unit(15 + 7 / 12, "feet")
  21986. },
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(1500, "feet"),
  21990. default: true
  21991. },
  21992. {
  21993. name: "Macro",
  21994. height: math.unit(5000, "feet")
  21995. },
  21996. {
  21997. name: "Megamacro",
  21998. height: math.unit(15, "miles")
  21999. },
  22000. {
  22001. name: "Gigamacro",
  22002. height: math.unit(4000, "miles")
  22003. },
  22004. {
  22005. name: "Galactic",
  22006. height: math.unit(50, "AU")
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(5 + 6 / 12, "feet"),
  22015. weight: math.unit(220, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/amethyst/front.svg",
  22019. extra: 2078 / 2040,
  22020. bottom: 0.045
  22021. }
  22022. },
  22023. back: {
  22024. height: math.unit(5 + 6 / 12, "feet"),
  22025. weight: math.unit(220, "lb"),
  22026. name: "Back",
  22027. image: {
  22028. source: "./media/characters/amethyst/back.svg",
  22029. extra: 2021 / 1989,
  22030. bottom: 0.02
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(5 + 6 / 12, "feet"),
  22038. default: true
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(4 + 11 / 12, "feet"),
  22047. weight: math.unit(120, "lb"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/yumi-akiyama/front.svg",
  22051. extra: 1327 / 1235,
  22052. bottom: 0.02
  22053. }
  22054. },
  22055. back: {
  22056. height: math.unit(4 + 11 / 12, "feet"),
  22057. weight: math.unit(120, "lb"),
  22058. name: "Back",
  22059. image: {
  22060. source: "./media/characters/yumi-akiyama/back.svg",
  22061. extra: 1287 / 1245,
  22062. bottom: 0.002
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Galactic",
  22069. height: math.unit(50, "galaxies"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Universal",
  22074. height: math.unit(100, "universes")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(8, "feet"),
  22083. weight: math.unit(500, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/rifter-yrmori/front.svg",
  22087. extra: 1180 / 1125,
  22088. bottom: 0.02
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(8, "feet"),
  22093. weight: math.unit(500, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/rifter-yrmori/back.svg",
  22097. extra: 1190 / 1145,
  22098. bottom: 0.001
  22099. }
  22100. },
  22101. wings: {
  22102. height: math.unit(7.75, "feet"),
  22103. weight: math.unit(500, "lb"),
  22104. name: "Wings",
  22105. image: {
  22106. source: "./media/characters/rifter-yrmori/wings.svg",
  22107. extra: 1357 / 1285
  22108. }
  22109. },
  22110. maw: {
  22111. height: math.unit(0.8, "feet"),
  22112. name: "Maw",
  22113. image: {
  22114. source: "./media/characters/rifter-yrmori/maw.svg"
  22115. }
  22116. },
  22117. mawfront: {
  22118. height: math.unit(1.45, "feet"),
  22119. name: "Maw (Front)",
  22120. image: {
  22121. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(8, "feet"),
  22129. default: true
  22130. },
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(42, "meters")
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22139. {
  22140. were: {
  22141. height: math.unit(25 + 6 / 12, "feet"),
  22142. weight: math.unit(10000, "lb"),
  22143. name: "Were",
  22144. image: {
  22145. source: "./media/characters/tahajin/were.svg",
  22146. extra: 801 / 770,
  22147. bottom: 0.042
  22148. }
  22149. },
  22150. aquatic: {
  22151. height: math.unit(6 + 4 / 12, "feet"),
  22152. weight: math.unit(160, "lb"),
  22153. name: "Aquatic",
  22154. image: {
  22155. source: "./media/characters/tahajin/aquatic.svg",
  22156. extra: 572 / 542,
  22157. bottom: 0.04
  22158. }
  22159. },
  22160. chow: {
  22161. height: math.unit(8 + 11 / 12, "feet"),
  22162. weight: math.unit(450, "lb"),
  22163. name: "Chow",
  22164. image: {
  22165. source: "./media/characters/tahajin/chow.svg",
  22166. extra: 660 / 640,
  22167. bottom: 0.015
  22168. }
  22169. },
  22170. demiNaga: {
  22171. height: math.unit(6 + 8 / 12, "feet"),
  22172. weight: math.unit(300, "lb"),
  22173. name: "Demi Naga",
  22174. image: {
  22175. source: "./media/characters/tahajin/demi-naga.svg",
  22176. extra: 643 / 615,
  22177. bottom: 0.1
  22178. }
  22179. },
  22180. data: {
  22181. height: math.unit(5, "inches"),
  22182. weight: math.unit(0.1, "lb"),
  22183. name: "Data",
  22184. image: {
  22185. source: "./media/characters/tahajin/data.svg"
  22186. }
  22187. },
  22188. fluu: {
  22189. height: math.unit(5 + 7 / 12, "feet"),
  22190. weight: math.unit(140, "lb"),
  22191. name: "Fluu",
  22192. image: {
  22193. source: "./media/characters/tahajin/fluu.svg",
  22194. extra: 628 / 592,
  22195. bottom: 0.02
  22196. }
  22197. },
  22198. starWarrior: {
  22199. height: math.unit(4 + 5 / 12, "feet"),
  22200. weight: math.unit(50, "lb"),
  22201. name: "Star Warrior",
  22202. image: {
  22203. source: "./media/characters/tahajin/star-warrior.svg"
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(25 + 6 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(8, "feet"),
  22220. weight: math.unit(350, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/gabira/front.svg",
  22224. extra: 608 / 580,
  22225. bottom: 0.03
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(8, "feet"),
  22230. weight: math.unit(350, "lb"),
  22231. name: "Back",
  22232. image: {
  22233. source: "./media/characters/gabira/back.svg",
  22234. extra: 608 / 580,
  22235. bottom: 0.03
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(8, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(5 + 3 / 12, "feet"),
  22252. weight: math.unit(137, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/sasha-katraine/front.svg",
  22256. extra: 1745/1694,
  22257. bottom: 37/1782
  22258. }
  22259. },
  22260. back: {
  22261. height: math.unit(5 + 3 / 12, "feet"),
  22262. weight: math.unit(137, "lb"),
  22263. name: "Back",
  22264. image: {
  22265. source: "./media/characters/sasha-katraine/back.svg",
  22266. extra: 1776/1699,
  22267. bottom: 26/1802
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Micro",
  22274. height: math.unit(5, "inches")
  22275. },
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(5 + 3 / 12, "feet"),
  22279. default: true
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22285. {
  22286. side: {
  22287. height: math.unit(4, "inches"),
  22288. weight: math.unit(200, "grams"),
  22289. name: "Side",
  22290. image: {
  22291. source: "./media/characters/der/side.svg",
  22292. extra: 719 / 400,
  22293. bottom: 30.6 / 749.9187
  22294. }
  22295. },
  22296. },
  22297. [
  22298. {
  22299. name: "Micro",
  22300. height: math.unit(4, "inches"),
  22301. default: true
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22307. {
  22308. side: {
  22309. height: math.unit(30, "meters"),
  22310. weight: math.unit(700, "tonnes"),
  22311. name: "Side",
  22312. image: {
  22313. source: "./media/characters/fixerdragon/side.svg",
  22314. extra: (1293.0514 - 116.03) / 1106.86,
  22315. bottom: 116.03 / 1293.0514
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Planck",
  22322. height: math.unit(1.6e-35, "meters")
  22323. },
  22324. {
  22325. name: "Micro",
  22326. height: math.unit(0.4, "meters")
  22327. },
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(30, "meters"),
  22331. default: true
  22332. },
  22333. {
  22334. name: "Megamacro",
  22335. height: math.unit(1.2, "megameters")
  22336. },
  22337. {
  22338. name: "Teramacro",
  22339. height: math.unit(130, "terameters")
  22340. },
  22341. {
  22342. name: "Yottamacro",
  22343. height: math.unit(6200, "yottameters")
  22344. },
  22345. ]
  22346. ));
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22349. {
  22350. front: {
  22351. height: math.unit(8, "feet"),
  22352. weight: math.unit(250, "lb"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/kite/front.svg",
  22356. extra: 2796 / 2659,
  22357. bottom: 0.002
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(8, "feet"),
  22365. default: true
  22366. },
  22367. {
  22368. name: "Macro",
  22369. height: math.unit(360, "feet")
  22370. },
  22371. {
  22372. name: "Megamacro",
  22373. height: math.unit(1500, "feet")
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 11/12, "feet"),
  22382. weight: math.unit(170, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/poojawa-vynar/front.svg",
  22386. extra: 1735/1585,
  22387. bottom: 96/1831
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(5 + 11/12, "feet"),
  22392. weight: math.unit(170, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/poojawa-vynar/back.svg",
  22396. extra: 1749/1607,
  22397. bottom: 28/1777
  22398. }
  22399. },
  22400. male: {
  22401. height: math.unit(5 + 11/12, "feet"),
  22402. weight: math.unit(170, "lb"),
  22403. name: "Male",
  22404. image: {
  22405. source: "./media/characters/poojawa-vynar/male.svg",
  22406. extra: 1855/1713,
  22407. bottom: 63/1918
  22408. }
  22409. },
  22410. taur: {
  22411. height: math.unit(5 + 11/12, "feet"),
  22412. weight: math.unit(170, "lb"),
  22413. name: "Taur",
  22414. image: {
  22415. source: "./media/characters/poojawa-vynar/taur.svg",
  22416. extra: 1151/1059,
  22417. bottom: 356/1507
  22418. }
  22419. },
  22420. frontDressed: {
  22421. height: math.unit(5 + 11/12, "feet"),
  22422. weight: math.unit(170, "lb"),
  22423. name: "Front (Dressed)",
  22424. image: {
  22425. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22426. extra: 1735/1585,
  22427. bottom: 96/1831
  22428. }
  22429. },
  22430. backDressed: {
  22431. height: math.unit(5 + 11/12, "feet"),
  22432. weight: math.unit(170, "lb"),
  22433. name: "Back (Dressed)",
  22434. image: {
  22435. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22436. extra: 1749/1607,
  22437. bottom: 28/1777
  22438. }
  22439. },
  22440. maleDressed: {
  22441. height: math.unit(5 + 11/12, "feet"),
  22442. weight: math.unit(170, "lb"),
  22443. name: "Male (Dressed)",
  22444. image: {
  22445. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22446. extra: 1855/1713,
  22447. bottom: 63/1918
  22448. }
  22449. },
  22450. taurDressed: {
  22451. height: math.unit(5 + 11/12, "feet"),
  22452. weight: math.unit(170, "lb"),
  22453. name: "Taur (Dressed)",
  22454. image: {
  22455. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22456. extra: 1151/1059,
  22457. bottom: 356/1507
  22458. }
  22459. },
  22460. maw: {
  22461. height: math.unit(1.46, "feet"),
  22462. name: "Maw",
  22463. image: {
  22464. source: "./media/characters/poojawa-vynar/maw.svg"
  22465. }
  22466. },
  22467. head: {
  22468. height: math.unit(2.34, "feet"),
  22469. name: "Head",
  22470. image: {
  22471. source: "./media/characters/poojawa-vynar/head.svg"
  22472. }
  22473. },
  22474. paw: {
  22475. height: math.unit(1.61, "feet"),
  22476. name: "Paw",
  22477. image: {
  22478. source: "./media/characters/poojawa-vynar/paw.svg"
  22479. }
  22480. },
  22481. pawToering: {
  22482. height: math.unit(1.72, "feet"),
  22483. name: "Paw (Toering)",
  22484. image: {
  22485. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22486. }
  22487. },
  22488. toering: {
  22489. height: math.unit(2.9, "inches"),
  22490. name: "Toering",
  22491. image: {
  22492. source: "./media/characters/poojawa-vynar/toering.svg"
  22493. }
  22494. },
  22495. shaft: {
  22496. height: math.unit(0.625, "feet"),
  22497. name: "Shaft",
  22498. image: {
  22499. source: "./media/characters/poojawa-vynar/shaft.svg"
  22500. }
  22501. },
  22502. spade: {
  22503. height: math.unit(0.42, "feet"),
  22504. name: "Spade",
  22505. image: {
  22506. source: "./media/characters/poojawa-vynar/spade.svg"
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Shortstack",
  22513. height: math.unit(4, "feet")
  22514. },
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(5 + 11 / 12, "feet"),
  22518. default: true
  22519. },
  22520. {
  22521. name: "Tauric",
  22522. height: math.unit(4, "meters")
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(293, "meters"),
  22531. weight: math.unit(70400, "tons"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/violette/front.svg",
  22535. extra: 1227 / 1180,
  22536. bottom: 0.005
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(293, "meters"),
  22541. weight: math.unit(70400, "tons"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/violette/back.svg",
  22545. extra: 1227 / 1180,
  22546. bottom: 0.005
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Macro",
  22553. height: math.unit(293, "meters"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(1050, "feet"),
  22563. weight: math.unit(200000, "tons"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/alessandra/front.svg",
  22567. extra: 960 / 912,
  22568. bottom: 0.06
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Macro",
  22575. height: math.unit(1050, "feet")
  22576. },
  22577. {
  22578. name: "Macro+",
  22579. height: math.unit(900, "meters"),
  22580. default: true
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(5, "feet"),
  22589. weight: math.unit(187, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/person/front.svg",
  22593. extra: 3087 / 2945,
  22594. bottom: 91 / 3181
  22595. }
  22596. },
  22597. },
  22598. [
  22599. {
  22600. name: "Micro",
  22601. height: math.unit(3, "inches")
  22602. },
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(5, "feet"),
  22606. default: true
  22607. },
  22608. {
  22609. name: "Macro",
  22610. height: math.unit(90, "feet")
  22611. },
  22612. {
  22613. name: "Max Size",
  22614. height: math.unit(280, "feet")
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(4.5, "meters"),
  22623. weight: math.unit(3200, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/ty/front.svg",
  22627. extra: 1038 / 960,
  22628. bottom: 31.156 / 1068
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(4.5, "meters"),
  22633. weight: math.unit(3200, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/ty/back.svg",
  22637. extra: 1044 / 966,
  22638. bottom: 7.48 / 1049
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(4.5, "meters"),
  22646. default: true
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(5 + 4 / 12, "feet"),
  22655. weight: math.unit(115, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/rocky/front.svg",
  22659. extra: 1012 / 975,
  22660. bottom: 54 / 1066
  22661. }
  22662. },
  22663. },
  22664. [
  22665. {
  22666. name: "Normal",
  22667. height: math.unit(5 + 4 / 12, "feet"),
  22668. default: true
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22674. {
  22675. upright: {
  22676. height: math.unit(6, "meters"),
  22677. weight: math.unit(4000, "kg"),
  22678. name: "Upright",
  22679. image: {
  22680. source: "./media/characters/ruin/upright.svg",
  22681. extra: 668 / 661,
  22682. bottom: 42 / 799.8396
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(6, "meters"),
  22690. default: true
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(5, "feet"),
  22699. weight: math.unit(106, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/robin/front.svg",
  22703. extra: 862 / 799,
  22704. bottom: 42.4 / 914.8856
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(5, "feet"),
  22712. default: true
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22718. {
  22719. side: {
  22720. height: math.unit(3, "feet"),
  22721. weight: math.unit(225, "lb"),
  22722. name: "Side",
  22723. image: {
  22724. source: "./media/characters/saian/side.svg",
  22725. extra: 566 / 356,
  22726. bottom: 79.7 / 643
  22727. }
  22728. },
  22729. maw: {
  22730. height: math.unit(2.85, "feet"),
  22731. name: "Maw",
  22732. image: {
  22733. source: "./media/characters/saian/maw.svg"
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(3, "feet"),
  22741. default: true
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22747. {
  22748. side: {
  22749. height: math.unit(8, "feet"),
  22750. weight: math.unit(300, "lb"),
  22751. name: "Side",
  22752. image: {
  22753. source: "./media/characters/equus-silvermane/side.svg",
  22754. extra: 2176 / 2050,
  22755. bottom: 65.7 / 2245
  22756. }
  22757. },
  22758. front: {
  22759. height: math.unit(8, "feet"),
  22760. weight: math.unit(300, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/equus-silvermane/front.svg",
  22764. extra: 4633 / 4400,
  22765. bottom: 71.3 / 4706.915
  22766. }
  22767. },
  22768. sideStepping: {
  22769. height: math.unit(8, "feet"),
  22770. weight: math.unit(300, "lb"),
  22771. name: "Side (Stepping)",
  22772. image: {
  22773. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22774. extra: 1968 / 1860,
  22775. bottom: 16.4 / 1989
  22776. }
  22777. },
  22778. },
  22779. [
  22780. {
  22781. name: "Normal",
  22782. height: math.unit(8, "feet")
  22783. },
  22784. {
  22785. name: "Minimacro",
  22786. height: math.unit(75, "feet"),
  22787. default: true
  22788. },
  22789. {
  22790. name: "Macro",
  22791. height: math.unit(150, "feet")
  22792. },
  22793. {
  22794. name: "Macro+",
  22795. height: math.unit(1000, "feet")
  22796. },
  22797. {
  22798. name: "Megamacro",
  22799. height: math.unit(1, "mile")
  22800. },
  22801. ]
  22802. ))
  22803. characterMakers.push(() => makeCharacter(
  22804. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22805. {
  22806. side: {
  22807. height: math.unit(20, "feet"),
  22808. weight: math.unit(30000, "kg"),
  22809. name: "Side",
  22810. image: {
  22811. source: "./media/characters/windar/side.svg",
  22812. extra: 1491 / 1248,
  22813. bottom: 82.56 / 1568
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(20, "feet"),
  22821. default: true
  22822. },
  22823. ]
  22824. ))
  22825. characterMakers.push(() => makeCharacter(
  22826. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22827. {
  22828. side: {
  22829. height: math.unit(15.66, "feet"),
  22830. weight: math.unit(150, "lb"),
  22831. name: "Side",
  22832. image: {
  22833. source: "./media/characters/melody/side.svg",
  22834. extra: 1097 / 944,
  22835. bottom: 11.8 / 1109
  22836. }
  22837. },
  22838. sideOutfit: {
  22839. height: math.unit(15.66, "feet"),
  22840. weight: math.unit(150, "lb"),
  22841. name: "Side (Outfit)",
  22842. image: {
  22843. source: "./media/characters/melody/side-outfit.svg",
  22844. extra: 1097 / 944,
  22845. bottom: 11.8 / 1109
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Normal",
  22852. height: math.unit(15.66, "feet"),
  22853. default: true
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(8, "feet"),
  22862. weight: math.unit(325, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/windera/front.svg",
  22866. extra: 3180 / 2845,
  22867. bottom: 178 / 3365
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(8, "feet"),
  22875. default: true
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22881. {
  22882. front: {
  22883. height: math.unit(28.75, "feet"),
  22884. weight: math.unit(2000, "kg"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/sonear/front.svg",
  22888. extra: 1041.1 / 964.9,
  22889. bottom: 53.7 / 1096.6
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(28.75, "feet"),
  22897. default: true
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22903. {
  22904. side: {
  22905. height: math.unit(25.5, "feet"),
  22906. weight: math.unit(23000, "kg"),
  22907. name: "Side",
  22908. image: {
  22909. source: "./media/characters/kanara/side.svg"
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(25.5, "feet"),
  22917. default: true
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22923. {
  22924. side: {
  22925. height: math.unit(10, "feet"),
  22926. weight: math.unit(1000, "kg"),
  22927. name: "Side",
  22928. image: {
  22929. source: "./media/characters/ereus/side.svg",
  22930. extra: 1157 / 959,
  22931. bottom: 153 / 1312.5
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(10, "feet"),
  22939. default: true
  22940. },
  22941. ]
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22945. {
  22946. side: {
  22947. height: math.unit(4.5, "feet"),
  22948. weight: math.unit(500, "lb"),
  22949. name: "Side",
  22950. image: {
  22951. source: "./media/characters/e-ter/side.svg",
  22952. extra: 1550 / 1248,
  22953. bottom: 146 / 1694
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(4.5, "feet"),
  22961. default: true
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22967. {
  22968. side: {
  22969. height: math.unit(9.7, "feet"),
  22970. weight: math.unit(4000, "kg"),
  22971. name: "Side",
  22972. image: {
  22973. source: "./media/characters/yamie/side.svg"
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(9.7, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(50, "feet"),
  22990. weight: math.unit(50000, "kg"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/anders/front.svg",
  22994. extra: 570 / 539,
  22995. bottom: 14.7 / 586.7
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Large",
  23002. height: math.unit(50, "feet")
  23003. },
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(2000, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Megamacro",
  23011. height: math.unit(12, "miles")
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(7 + 2 / 12, "feet"),
  23020. weight: math.unit(300, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/reban/front.svg",
  23024. extra: 1287/1212,
  23025. bottom: 148/1435
  23026. }
  23027. },
  23028. head: {
  23029. height: math.unit(1.95, "feet"),
  23030. name: "Head",
  23031. image: {
  23032. source: "./media/characters/reban/head.svg"
  23033. }
  23034. },
  23035. maw: {
  23036. height: math.unit(0.95, "feet"),
  23037. name: "Maw",
  23038. image: {
  23039. source: "./media/characters/reban/maw.svg"
  23040. }
  23041. },
  23042. foot: {
  23043. height: math.unit(1.65, "feet"),
  23044. name: "Foot",
  23045. image: {
  23046. source: "./media/characters/reban/foot.svg"
  23047. }
  23048. },
  23049. dick: {
  23050. height: math.unit(7 / 5, "feet"),
  23051. name: "Dick",
  23052. image: {
  23053. source: "./media/characters/reban/dick.svg"
  23054. }
  23055. },
  23056. },
  23057. [
  23058. {
  23059. name: "Natural Height",
  23060. height: math.unit(7 + 2 / 12, "feet")
  23061. },
  23062. {
  23063. name: "Macro",
  23064. height: math.unit(500, "feet"),
  23065. default: true
  23066. },
  23067. {
  23068. name: "Canon Height",
  23069. height: math.unit(50, "AU")
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23075. {
  23076. front: {
  23077. height: math.unit(6, "feet"),
  23078. weight: math.unit(150, "lb"),
  23079. name: "Front",
  23080. image: {
  23081. source: "./media/characters/terrance-keayes/front.svg",
  23082. extra: 1.005,
  23083. bottom: 151 / 1615
  23084. }
  23085. },
  23086. side: {
  23087. height: math.unit(6, "feet"),
  23088. weight: math.unit(150, "lb"),
  23089. name: "Side",
  23090. image: {
  23091. source: "./media/characters/terrance-keayes/side.svg",
  23092. extra: 1.005,
  23093. bottom: 129.4 / 1544
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(6, "feet"),
  23098. weight: math.unit(150, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/terrance-keayes/back.svg",
  23102. extra: 1.005,
  23103. bottom: 58.4 / 1557.3
  23104. }
  23105. },
  23106. dick: {
  23107. height: math.unit(6 * 0.208, "feet"),
  23108. name: "Dick",
  23109. image: {
  23110. source: "./media/characters/terrance-keayes/dick.svg"
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Canon Height",
  23117. height: math.unit(35, "miles"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(6, "feet"),
  23127. weight: math.unit(150, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/ofelia/front.svg",
  23131. extra: 1130/1117,
  23132. bottom: 91/1221
  23133. }
  23134. },
  23135. back: {
  23136. height: math.unit(6, "feet"),
  23137. weight: math.unit(150, "lb"),
  23138. name: "Back",
  23139. image: {
  23140. source: "./media/characters/ofelia/back.svg",
  23141. extra: 1172/1159,
  23142. bottom: 28/1200
  23143. }
  23144. },
  23145. maw: {
  23146. height: math.unit(1, "feet"),
  23147. name: "Maw",
  23148. image: {
  23149. source: "./media/characters/ofelia/maw.svg"
  23150. }
  23151. },
  23152. foot: {
  23153. height: math.unit(1.949, "feet"),
  23154. name: "Foot",
  23155. image: {
  23156. source: "./media/characters/ofelia/foot.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Canon Height",
  23163. height: math.unit(2000, "miles"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(6, "feet"),
  23173. weight: math.unit(150, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/samuel/front.svg",
  23177. extra: 265 / 258,
  23178. bottom: 2 / 266.1566
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(100, "feet"),
  23186. default: true
  23187. },
  23188. {
  23189. name: "Full Size",
  23190. height: math.unit(1000, "miles")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(6, "feet"),
  23199. weight: math.unit(300, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/beishir-kiel/front.svg",
  23203. extra: 569 / 547,
  23204. bottom: 41.9 / 609
  23205. }
  23206. },
  23207. maw: {
  23208. height: math.unit(6 * 0.202, "feet"),
  23209. name: "Maw",
  23210. image: {
  23211. source: "./media/characters/beishir-kiel/maw.svg"
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(300, "feet"),
  23219. default: true
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(5 + 7/12, "feet"),
  23228. weight: math.unit(120, "lb"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/logan-grey/front.svg",
  23232. extra: 1836/1738,
  23233. bottom: 108/1944
  23234. }
  23235. },
  23236. back: {
  23237. height: math.unit(5 + 7/12, "feet"),
  23238. weight: math.unit(120, "lb"),
  23239. name: "Back",
  23240. image: {
  23241. source: "./media/characters/logan-grey/back.svg",
  23242. extra: 1880/1794,
  23243. bottom: 24/1904
  23244. }
  23245. },
  23246. frontSfw: {
  23247. height: math.unit(5 + 7/12, "feet"),
  23248. weight: math.unit(120, "lb"),
  23249. name: "Front (SFW)",
  23250. image: {
  23251. source: "./media/characters/logan-grey/front-sfw.svg",
  23252. extra: 1836/1738,
  23253. bottom: 108/1944
  23254. }
  23255. },
  23256. backSfw: {
  23257. height: math.unit(5 + 7/12, "feet"),
  23258. weight: math.unit(120, "lb"),
  23259. name: "Back (SFW)",
  23260. image: {
  23261. source: "./media/characters/logan-grey/back-sfw.svg",
  23262. extra: 1880/1794,
  23263. bottom: 24/1904
  23264. }
  23265. },
  23266. hands: {
  23267. height: math.unit(0.84, "feet"),
  23268. name: "Hands",
  23269. image: {
  23270. source: "./media/characters/logan-grey/hands.svg"
  23271. }
  23272. },
  23273. paws: {
  23274. height: math.unit(0.72, "feet"),
  23275. name: "Paws",
  23276. image: {
  23277. source: "./media/characters/logan-grey/paws.svg"
  23278. }
  23279. },
  23280. cock: {
  23281. height: math.unit(1.45, "feet"),
  23282. name: "Cock",
  23283. image: {
  23284. source: "./media/characters/logan-grey/cock.svg"
  23285. }
  23286. },
  23287. cockAlt: {
  23288. height: math.unit(1.437, "feet"),
  23289. name: "Cock (alt)",
  23290. image: {
  23291. source: "./media/characters/logan-grey/cock-alt.svg"
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(5 + 8 / 12, "feet")
  23299. },
  23300. {
  23301. name: "The 500 Foot Femboy",
  23302. height: math.unit(500, "feet"),
  23303. default: true
  23304. },
  23305. {
  23306. name: "Megmacro",
  23307. height: math.unit(20, "miles")
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(8 + 2 / 12, "feet"),
  23316. weight: math.unit(275, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/draganta/front.svg",
  23320. extra: 1177 / 1135,
  23321. bottom: 33.46 / 1212.1
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(8 + 6 / 12, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(150, "feet")
  23334. },
  23335. {
  23336. name: "Megamacro",
  23337. height: math.unit(1000, "miles")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(1.72, "m"),
  23346. weight: math.unit(80, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/voski/front.svg",
  23350. extra: 2076.22 / 2022.4,
  23351. bottom: 102.7 / 2177.3866
  23352. }
  23353. },
  23354. frontFlaccid: {
  23355. height: math.unit(1.72, "m"),
  23356. weight: math.unit(80, "lb"),
  23357. name: "Front (Flaccid)",
  23358. image: {
  23359. source: "./media/characters/voski/front-flaccid.svg",
  23360. extra: 2076.22 / 2022.4,
  23361. bottom: 102.7 / 2177.3866
  23362. }
  23363. },
  23364. frontErect: {
  23365. height: math.unit(1.72, "m"),
  23366. weight: math.unit(80, "lb"),
  23367. name: "Front (Erect)",
  23368. image: {
  23369. source: "./media/characters/voski/front-erect.svg",
  23370. extra: 2076.22 / 2022.4,
  23371. bottom: 102.7 / 2177.3866
  23372. }
  23373. },
  23374. back: {
  23375. height: math.unit(1.72, "m"),
  23376. weight: math.unit(80, "lb"),
  23377. name: "Back",
  23378. image: {
  23379. source: "./media/characters/voski/back.svg",
  23380. extra: 2104 / 2051,
  23381. bottom: 10.45 / 2113.63
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Normal",
  23388. height: math.unit(1.72, "m")
  23389. },
  23390. {
  23391. name: "Macro",
  23392. height: math.unit(55, "m"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Macro+",
  23397. height: math.unit(300, "m")
  23398. },
  23399. {
  23400. name: "Macro++",
  23401. height: math.unit(700, "m")
  23402. },
  23403. {
  23404. name: "Macro+++",
  23405. height: math.unit(4500, "m")
  23406. },
  23407. {
  23408. name: "Macro++++",
  23409. height: math.unit(45, "km")
  23410. },
  23411. {
  23412. name: "Macro+++++",
  23413. height: math.unit(1220, "km")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23419. {
  23420. front: {
  23421. height: math.unit(2.3, "m"),
  23422. weight: math.unit(304, "kg"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/icowom-lee/front.svg",
  23426. extra: 985 / 955,
  23427. bottom: 25.4 / 1012
  23428. }
  23429. },
  23430. fronttentacles: {
  23431. height: math.unit(2.3, "m"),
  23432. weight: math.unit(304, "kg"),
  23433. name: "Front-tentacles",
  23434. image: {
  23435. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23436. extra: 985 / 955,
  23437. bottom: 25.4 / 1012
  23438. }
  23439. },
  23440. back: {
  23441. height: math.unit(2.3, "m"),
  23442. weight: math.unit(304, "kg"),
  23443. name: "Back",
  23444. image: {
  23445. source: "./media/characters/icowom-lee/back.svg",
  23446. extra: 975 / 954,
  23447. bottom: 9.5 / 985
  23448. }
  23449. },
  23450. backtentacles: {
  23451. height: math.unit(2.3, "m"),
  23452. weight: math.unit(304, "kg"),
  23453. name: "Back-tentacles",
  23454. image: {
  23455. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23456. extra: 975 / 954,
  23457. bottom: 9.5 / 985
  23458. }
  23459. },
  23460. frontDressed: {
  23461. height: math.unit(2.3, "m"),
  23462. weight: math.unit(304, "kg"),
  23463. name: "Front (Dressed)",
  23464. image: {
  23465. source: "./media/characters/icowom-lee/front-dressed.svg",
  23466. extra: 3076 / 2933,
  23467. bottom: 51.4 / 3125.1889
  23468. }
  23469. },
  23470. rump: {
  23471. height: math.unit(0.776, "meters"),
  23472. name: "Rump",
  23473. image: {
  23474. source: "./media/characters/icowom-lee/rump.svg"
  23475. }
  23476. },
  23477. genitals: {
  23478. height: math.unit(0.78, "meters"),
  23479. name: "Genitals",
  23480. image: {
  23481. source: "./media/characters/icowom-lee/genitals.svg"
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(2.3, "meters"),
  23489. default: true
  23490. },
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(94, "meters"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(22, "meters"),
  23503. weight: math.unit(21000, "kg"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/shock-diamond/front.svg",
  23507. extra: 2204 / 2053,
  23508. bottom: 65 / 2239.47
  23509. }
  23510. },
  23511. frontNude: {
  23512. height: math.unit(22, "meters"),
  23513. weight: math.unit(21000, "kg"),
  23514. name: "Front (Nude)",
  23515. image: {
  23516. source: "./media/characters/shock-diamond/front-nude.svg",
  23517. extra: 2514 / 2285,
  23518. bottom: 13 / 2527.56
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Normal",
  23525. height: math.unit(3, "meters")
  23526. },
  23527. {
  23528. name: "Macro",
  23529. height: math.unit(22, "meters"),
  23530. default: true
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(5 + 4 / 12, "feet"),
  23539. weight: math.unit(120, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/rory/front.svg",
  23543. extra: 1318/1241,
  23544. bottom: 42/1360
  23545. }
  23546. },
  23547. back: {
  23548. height: math.unit(5 + 4 / 12, "feet"),
  23549. weight: math.unit(120, "lb"),
  23550. name: "Back",
  23551. image: {
  23552. source: "./media/characters/rory/back.svg",
  23553. extra: 1318/1241,
  23554. bottom: 42/1360
  23555. }
  23556. },
  23557. butt: {
  23558. height: math.unit(1.74, "feet"),
  23559. name: "Butt",
  23560. image: {
  23561. source: "./media/characters/rory/butt.svg"
  23562. }
  23563. },
  23564. dick: {
  23565. height: math.unit(1.02, "feet"),
  23566. name: "Dick",
  23567. image: {
  23568. source: "./media/characters/rory/dick.svg"
  23569. }
  23570. },
  23571. paws: {
  23572. height: math.unit(1, "feet"),
  23573. name: "Paws",
  23574. image: {
  23575. source: "./media/characters/rory/paws.svg"
  23576. }
  23577. },
  23578. frontAlt: {
  23579. height: math.unit(5 + 4 / 12, "feet"),
  23580. weight: math.unit(120, "lb"),
  23581. name: "Front (Alt)",
  23582. image: {
  23583. source: "./media/characters/rory/front-alt.svg",
  23584. extra: 589 / 556,
  23585. bottom: 45.7 / 635.76
  23586. }
  23587. },
  23588. frontAltNude: {
  23589. height: math.unit(5 + 4 / 12, "feet"),
  23590. weight: math.unit(120, "lb"),
  23591. name: "Front (Alt, Nude)",
  23592. image: {
  23593. source: "./media/characters/rory/front-alt-nude.svg",
  23594. extra: 589 / 556,
  23595. bottom: 45.7 / 635.76
  23596. }
  23597. },
  23598. side: {
  23599. height: math.unit(5 + 4 / 12, "feet"),
  23600. weight: math.unit(120, "lb"),
  23601. name: "Side",
  23602. image: {
  23603. source: "./media/characters/rory/side.svg",
  23604. extra: 597 / 564,
  23605. bottom: 55 / 653
  23606. }
  23607. },
  23608. backAlt: {
  23609. height: math.unit(5 + 4 / 12, "feet"),
  23610. weight: math.unit(120, "lb"),
  23611. name: "Back (Alt)",
  23612. image: {
  23613. source: "./media/characters/rory/back-alt.svg",
  23614. extra: 620 / 585,
  23615. bottom: 8.86 / 630.43
  23616. }
  23617. },
  23618. dickAlt: {
  23619. height: math.unit(0.86, "feet"),
  23620. name: "Dick (Alt)",
  23621. image: {
  23622. source: "./media/characters/rory/dick-alt.svg"
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(5 + 4 / 12, "feet"),
  23630. default: true
  23631. },
  23632. {
  23633. name: "Macro",
  23634. height: math.unit(100, "feet")
  23635. },
  23636. {
  23637. name: "Macro+",
  23638. height: math.unit(140, "feet")
  23639. },
  23640. {
  23641. name: "Macro++",
  23642. height: math.unit(300, "feet")
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23648. {
  23649. front: {
  23650. height: math.unit(5 + 9 / 12, "feet"),
  23651. weight: math.unit(190, "lb"),
  23652. name: "Front",
  23653. image: {
  23654. source: "./media/characters/sprisk/front.svg",
  23655. extra: 1225 / 1180,
  23656. bottom: 42.7 / 1266.4
  23657. }
  23658. },
  23659. frontNsfw: {
  23660. height: math.unit(5 + 9 / 12, "feet"),
  23661. weight: math.unit(190, "lb"),
  23662. name: "Front (NSFW)",
  23663. image: {
  23664. source: "./media/characters/sprisk/front-nsfw.svg",
  23665. extra: 1225 / 1180,
  23666. bottom: 42.7 / 1266.4
  23667. }
  23668. },
  23669. back: {
  23670. height: math.unit(5 + 9 / 12, "feet"),
  23671. weight: math.unit(190, "lb"),
  23672. name: "Back",
  23673. image: {
  23674. source: "./media/characters/sprisk/back.svg",
  23675. extra: 1247 / 1200,
  23676. bottom: 5.6 / 1253.04
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Tiny",
  23683. height: math.unit(2, "inches")
  23684. },
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(5 + 9 / 12, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Mini Macro",
  23692. height: math.unit(18, "feet")
  23693. },
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(100, "feet")
  23697. },
  23698. {
  23699. name: "MACRO",
  23700. height: math.unit(50, "miles")
  23701. },
  23702. {
  23703. name: "M A C R O",
  23704. height: math.unit(300, "miles")
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23710. {
  23711. side: {
  23712. height: math.unit(15.6, "meters"),
  23713. weight: math.unit(700000, "kg"),
  23714. name: "Side",
  23715. image: {
  23716. source: "./media/characters/bunsen/side.svg",
  23717. extra: 1644 / 358
  23718. }
  23719. },
  23720. foot: {
  23721. height: math.unit(1.611 * 1644 / 358, "meter"),
  23722. name: "Foot",
  23723. image: {
  23724. source: "./media/characters/bunsen/foot.svg"
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Small",
  23731. height: math.unit(10, "feet")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(15.6, "meters"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(4 + 11 / 12, "feet"),
  23745. weight: math.unit(140, "lb"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/sesh/front.svg",
  23749. extra: 3420 / 3231,
  23750. bottom: 72 / 3949.5
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Normal",
  23757. height: math.unit(4 + 11 / 12, "feet")
  23758. },
  23759. {
  23760. name: "Grown",
  23761. height: math.unit(15, "feet"),
  23762. default: true
  23763. },
  23764. {
  23765. name: "Macro",
  23766. height: math.unit(1500, "feet")
  23767. },
  23768. {
  23769. name: "Megamacro",
  23770. height: math.unit(30, "miles")
  23771. },
  23772. {
  23773. name: "Continental",
  23774. height: math.unit(3000, "miles")
  23775. },
  23776. {
  23777. name: "Gravity Mass",
  23778. height: math.unit(300000, "miles")
  23779. },
  23780. {
  23781. name: "Planet Buster",
  23782. height: math.unit(30000000, "miles")
  23783. },
  23784. {
  23785. name: "Big",
  23786. height: math.unit(3000000000, "miles")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(9, "feet"),
  23795. weight: math.unit(350, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/pepper/front.svg",
  23799. extra: 1448 / 1312,
  23800. bottom: 9.4 / 1457.88
  23801. }
  23802. },
  23803. back: {
  23804. height: math.unit(9, "feet"),
  23805. weight: math.unit(350, "lb"),
  23806. name: "Back",
  23807. image: {
  23808. source: "./media/characters/pepper/back.svg",
  23809. extra: 1423 / 1300,
  23810. bottom: 4.6 / 1429
  23811. }
  23812. },
  23813. maw: {
  23814. height: math.unit(0.932, "feet"),
  23815. name: "Maw",
  23816. image: {
  23817. source: "./media/characters/pepper/maw.svg"
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(9, "feet"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(6, "feet"),
  23834. weight: math.unit(150, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/maelstrom/front.svg",
  23838. extra: 2100 / 1883,
  23839. bottom: 94 / 2196.7
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Less Kaiju",
  23846. height: math.unit(200, "feet")
  23847. },
  23848. {
  23849. name: "Kaiju",
  23850. height: math.unit(400, "feet"),
  23851. default: true
  23852. },
  23853. {
  23854. name: "Kaiju-er",
  23855. height: math.unit(600, "feet")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(6 + 5 / 12, "feet"),
  23864. weight: math.unit(180, "lb"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/lexir/front.svg",
  23868. extra: 180 / 172,
  23869. bottom: 12 / 192
  23870. }
  23871. },
  23872. back: {
  23873. height: math.unit(6 + 5 / 12, "feet"),
  23874. weight: math.unit(180, "lb"),
  23875. name: "Back",
  23876. image: {
  23877. source: "./media/characters/lexir/back.svg",
  23878. extra: 1273/1201,
  23879. bottom: 39/1312
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Very Smal",
  23886. height: math.unit(1, "nm")
  23887. },
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(6 + 5 / 12, "feet"),
  23891. default: true
  23892. },
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(1, "mile")
  23896. },
  23897. {
  23898. name: "Megamacro",
  23899. height: math.unit(50, "miles")
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23905. {
  23906. front: {
  23907. height: math.unit(1.5, "meters"),
  23908. weight: math.unit(100, "lb"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/maksio/front.svg",
  23912. extra: 1549 / 1531,
  23913. bottom: 123.7 / 1674.5429
  23914. }
  23915. },
  23916. back: {
  23917. height: math.unit(1.5, "meters"),
  23918. weight: math.unit(100, "lb"),
  23919. name: "Back",
  23920. image: {
  23921. source: "./media/characters/maksio/back.svg",
  23922. extra: 1541 / 1509,
  23923. bottom: 97 / 1639
  23924. }
  23925. },
  23926. hand: {
  23927. height: math.unit(0.621, "feet"),
  23928. name: "Hand",
  23929. image: {
  23930. source: "./media/characters/maksio/hand.svg"
  23931. }
  23932. },
  23933. foot: {
  23934. height: math.unit(1.611, "feet"),
  23935. name: "Foot",
  23936. image: {
  23937. source: "./media/characters/maksio/foot.svg"
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Shrunken",
  23944. height: math.unit(10, "cm")
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(150, "cm"),
  23949. default: true
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23955. {
  23956. front: {
  23957. height: math.unit(100, "feet"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/erza-bear/front.svg",
  23961. extra: 2449 / 2390,
  23962. bottom: 46 / 2494
  23963. }
  23964. },
  23965. back: {
  23966. height: math.unit(100, "feet"),
  23967. name: "Back",
  23968. image: {
  23969. source: "./media/characters/erza-bear/back.svg",
  23970. extra: 2489 / 2430,
  23971. bottom: 85.4 / 2480
  23972. }
  23973. },
  23974. tail: {
  23975. height: math.unit(42, "feet"),
  23976. name: "Tail",
  23977. image: {
  23978. source: "./media/characters/erza-bear/tail.svg"
  23979. }
  23980. },
  23981. tongue: {
  23982. height: math.unit(8, "feet"),
  23983. name: "Tongue",
  23984. image: {
  23985. source: "./media/characters/erza-bear/tongue.svg"
  23986. }
  23987. },
  23988. dick: {
  23989. height: math.unit(10.5, "feet"),
  23990. name: "Dick",
  23991. image: {
  23992. source: "./media/characters/erza-bear/dick.svg"
  23993. }
  23994. },
  23995. dickVertical: {
  23996. height: math.unit(16.9, "feet"),
  23997. name: "Dick (Vertical)",
  23998. image: {
  23999. source: "./media/characters/erza-bear/dick-vertical.svg"
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Macro",
  24006. height: math.unit(100, "feet"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(172, "cm"),
  24016. weight: math.unit(73, "kg"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/violet-flor/front.svg",
  24020. extra: 1530 / 1442,
  24021. bottom: 61.9 / 1588.8
  24022. }
  24023. },
  24024. back: {
  24025. height: math.unit(180, "cm"),
  24026. weight: math.unit(73, "kg"),
  24027. name: "Back",
  24028. image: {
  24029. source: "./media/characters/violet-flor/back.svg",
  24030. extra: 1692 / 1630,
  24031. bottom: 20 / 1712
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(172, "cm"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(6, "feet"),
  24048. weight: math.unit(220, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/lynn-rhea/front.svg",
  24052. extra: 310 / 273
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(6, "feet"),
  24057. weight: math.unit(220, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/lynn-rhea/back.svg",
  24061. extra: 310 / 273
  24062. }
  24063. },
  24064. dicks: {
  24065. height: math.unit(0.9, "feet"),
  24066. name: "Dicks",
  24067. image: {
  24068. source: "./media/characters/lynn-rhea/dicks.svg"
  24069. }
  24070. },
  24071. slit: {
  24072. height: math.unit(0.4, "feet"),
  24073. name: "Slit",
  24074. image: {
  24075. source: "./media/characters/lynn-rhea/slit.svg"
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Micro",
  24082. height: math.unit(1, "inch")
  24083. },
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(60, "feet"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Megamacro",
  24091. height: math.unit(2, "miles")
  24092. },
  24093. {
  24094. name: "Gigamacro",
  24095. height: math.unit(3, "earths")
  24096. },
  24097. {
  24098. name: "Galactic",
  24099. height: math.unit(0.8, "galaxies")
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24105. {
  24106. front: {
  24107. height: math.unit(1600, "feet"),
  24108. weight: math.unit(85758785169, "kg"),
  24109. name: "Front",
  24110. image: {
  24111. source: "./media/characters/valathos/front.svg",
  24112. extra: 1451 / 1339
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Macro",
  24119. height: math.unit(1600, "feet"),
  24120. default: true
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24126. {
  24127. front: {
  24128. height: math.unit(7 + 5 / 12, "feet"),
  24129. weight: math.unit(300, "lb"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/azula/front.svg",
  24133. extra: 3208 / 2880,
  24134. bottom: 80.2 / 3277
  24135. }
  24136. },
  24137. back: {
  24138. height: math.unit(7 + 5 / 12, "feet"),
  24139. weight: math.unit(300, "lb"),
  24140. name: "Back",
  24141. image: {
  24142. source: "./media/characters/azula/back.svg",
  24143. extra: 3169 / 2822,
  24144. bottom: 150.6 / 3321
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Normal",
  24151. height: math.unit(7 + 5 / 12, "feet"),
  24152. default: true
  24153. },
  24154. {
  24155. name: "Big",
  24156. height: math.unit(20, "feet")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(5 + 1 / 12, "feet"),
  24165. weight: math.unit(110, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/rupert/front.svg",
  24169. extra: 1549 / 1495,
  24170. bottom: 54.2 / 1604.4
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(5 + 1 / 12, "feet"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24184. {
  24185. front: {
  24186. height: math.unit(8 + 4 / 12, "feet"),
  24187. weight: math.unit(350, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/sheera-castellar/front.svg",
  24191. extra: 1957 / 1894,
  24192. bottom: 26.97 / 1975.017
  24193. }
  24194. },
  24195. side: {
  24196. height: math.unit(8 + 4 / 12, "feet"),
  24197. weight: math.unit(350, "lb"),
  24198. name: "Side",
  24199. image: {
  24200. source: "./media/characters/sheera-castellar/side.svg",
  24201. extra: 1957 / 1894
  24202. }
  24203. },
  24204. back: {
  24205. height: math.unit(8 + 4 / 12, "feet"),
  24206. weight: math.unit(350, "lb"),
  24207. name: "Back",
  24208. image: {
  24209. source: "./media/characters/sheera-castellar/back.svg",
  24210. extra: 1957 / 1894
  24211. }
  24212. },
  24213. angled: {
  24214. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24215. weight: math.unit(350, "lb"),
  24216. name: "Angled",
  24217. image: {
  24218. source: "./media/characters/sheera-castellar/angled.svg",
  24219. extra: 1807 / 1707,
  24220. bottom: 68 / 1875
  24221. }
  24222. },
  24223. genitals: {
  24224. height: math.unit(2.2, "feet"),
  24225. name: "Genitals",
  24226. image: {
  24227. source: "./media/characters/sheera-castellar/genitals.svg"
  24228. }
  24229. },
  24230. taur: {
  24231. height: math.unit(10 + 6/12, "feet"),
  24232. name: "Taur",
  24233. image: {
  24234. source: "./media/characters/sheera-castellar/taur.svg",
  24235. extra: 2017/1909,
  24236. bottom: 185/2202
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(8 + 4 / 12, "feet")
  24244. },
  24245. {
  24246. name: "Macro",
  24247. height: math.unit(150, "feet"),
  24248. default: true
  24249. },
  24250. {
  24251. name: "Macro+",
  24252. height: math.unit(800, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(6, "feet"),
  24261. weight: math.unit(150, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/jaipur/front.svg",
  24265. extra: 3860 / 3731,
  24266. bottom: 287 / 4140
  24267. }
  24268. },
  24269. back: {
  24270. height: math.unit(6, "feet"),
  24271. weight: math.unit(150, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/jaipur/back.svg",
  24275. extra: 1637/1561,
  24276. bottom: 154/1791
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(1.85, "meters"),
  24284. default: true
  24285. },
  24286. {
  24287. name: "Macro",
  24288. height: math.unit(150, "meters")
  24289. },
  24290. {
  24291. name: "Macro+",
  24292. height: math.unit(0.5, "miles")
  24293. },
  24294. {
  24295. name: "Macro++",
  24296. height: math.unit(2.5, "miles")
  24297. },
  24298. {
  24299. name: "Macro+++",
  24300. height: math.unit(12, "miles")
  24301. },
  24302. {
  24303. name: "Macro++++",
  24304. height: math.unit(120, "miles")
  24305. },
  24306. {
  24307. name: "Macro+++++",
  24308. height: math.unit(1200, "miles")
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(6, "feet"),
  24317. weight: math.unit(150, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/sheila-wolf/front.svg",
  24321. extra: 1931 / 1808,
  24322. bottom: 29.5 / 1960
  24323. }
  24324. },
  24325. dick: {
  24326. height: math.unit(1.464, "feet"),
  24327. name: "Dick",
  24328. image: {
  24329. source: "./media/characters/sheila-wolf/dick.svg"
  24330. }
  24331. },
  24332. muzzle: {
  24333. height: math.unit(0.513, "feet"),
  24334. name: "Muzzle",
  24335. image: {
  24336. source: "./media/characters/sheila-wolf/muzzle.svg"
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Macro",
  24343. height: math.unit(70, "feet"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(32, "meters"),
  24353. weight: math.unit(300000, "kg"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/almor/front.svg",
  24357. extra: 1408 / 1322,
  24358. bottom: 94.6 / 1506.5
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(32, "meters"),
  24366. default: true
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24372. {
  24373. front: {
  24374. height: math.unit(7, "feet"),
  24375. weight: math.unit(200, "lb"),
  24376. name: "Front",
  24377. image: {
  24378. source: "./media/characters/silver/front.svg",
  24379. extra: 472.1 / 450.5,
  24380. bottom: 26.5 / 499.424
  24381. }
  24382. },
  24383. },
  24384. [
  24385. {
  24386. name: "Normal",
  24387. height: math.unit(7, "feet"),
  24388. default: true
  24389. },
  24390. {
  24391. name: "Macro",
  24392. height: math.unit(800, "feet")
  24393. },
  24394. {
  24395. name: "Megamacro",
  24396. height: math.unit(250, "miles")
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(6, "feet"),
  24405. weight: math.unit(150, "lb"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/pliskin/front.svg",
  24409. extra: 1469 / 1359,
  24410. bottom: 70 / 1540
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Micro",
  24417. height: math.unit(3, "inches")
  24418. },
  24419. {
  24420. name: "Normal",
  24421. height: math.unit(5 + 11 / 12, "feet"),
  24422. default: true
  24423. },
  24424. {
  24425. name: "Macro",
  24426. height: math.unit(120, "feet")
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(6, "feet"),
  24435. weight: math.unit(150, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/sammy/front.svg",
  24439. extra: 1193 / 1089,
  24440. bottom: 30.5 / 1226
  24441. }
  24442. },
  24443. },
  24444. [
  24445. {
  24446. name: "Macro",
  24447. height: math.unit(1700, "feet"),
  24448. default: true
  24449. },
  24450. {
  24451. name: "Examacro",
  24452. height: math.unit(2.5e9, "lightyears")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(21, "meters"),
  24461. weight: math.unit(12, "tonnes"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/kuru/front.svg",
  24465. extra: 4301 / 3785,
  24466. bottom: 371.3 / 4691
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Macro",
  24473. height: math.unit(21, "meters"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(23, "meters"),
  24483. weight: math.unit(12.2, "tonnes"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/rakka/front.svg",
  24487. extra: 4670 / 4169,
  24488. bottom: 301 / 4968.7
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Macro",
  24495. height: math.unit(23, "meters"),
  24496. default: true
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(6, "feet"),
  24505. weight: math.unit(150, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/rhys-feline/front.svg",
  24509. extra: 2488 / 2308,
  24510. bottom: 35.67 / 2519.19
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Really Small",
  24517. height: math.unit(1, "nm")
  24518. },
  24519. {
  24520. name: "Micro",
  24521. height: math.unit(4, "inches")
  24522. },
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(4 + 10 / 12, "feet"),
  24526. default: true
  24527. },
  24528. {
  24529. name: "Macro",
  24530. height: math.unit(100, "feet")
  24531. },
  24532. {
  24533. name: "Megamacto",
  24534. height: math.unit(50, "miles")
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24540. {
  24541. side: {
  24542. height: math.unit(30, "feet"),
  24543. weight: math.unit(35000, "kg"),
  24544. name: "Side",
  24545. image: {
  24546. source: "./media/characters/alydar/side.svg",
  24547. extra: 234 / 222,
  24548. bottom: 6.5 / 241
  24549. }
  24550. },
  24551. front: {
  24552. height: math.unit(30, "feet"),
  24553. weight: math.unit(35000, "kg"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/alydar/front.svg",
  24557. extra: 223.37 / 210.2,
  24558. bottom: 22.3 / 246.76
  24559. }
  24560. },
  24561. top: {
  24562. height: math.unit(64.54, "feet"),
  24563. weight: math.unit(35000, "kg"),
  24564. name: "Top",
  24565. image: {
  24566. source: "./media/characters/alydar/top.svg"
  24567. }
  24568. },
  24569. anthro: {
  24570. height: math.unit(30, "feet"),
  24571. weight: math.unit(9000, "kg"),
  24572. name: "Anthro",
  24573. image: {
  24574. source: "./media/characters/alydar/anthro.svg",
  24575. extra: 432 / 421,
  24576. bottom: 7.18 / 440
  24577. }
  24578. },
  24579. maw: {
  24580. height: math.unit(11.693, "feet"),
  24581. name: "Maw",
  24582. image: {
  24583. source: "./media/characters/alydar/maw.svg"
  24584. }
  24585. },
  24586. head: {
  24587. height: math.unit(11.693, "feet"),
  24588. name: "Head",
  24589. image: {
  24590. source: "./media/characters/alydar/head.svg"
  24591. }
  24592. },
  24593. headAlt: {
  24594. height: math.unit(12.861, "feet"),
  24595. name: "Head (Alt)",
  24596. image: {
  24597. source: "./media/characters/alydar/head-alt.svg"
  24598. }
  24599. },
  24600. wing: {
  24601. height: math.unit(20.712, "feet"),
  24602. name: "Wing",
  24603. image: {
  24604. source: "./media/characters/alydar/wing.svg"
  24605. }
  24606. },
  24607. wingFeather: {
  24608. height: math.unit(9.662, "feet"),
  24609. name: "Wing Feather",
  24610. image: {
  24611. source: "./media/characters/alydar/wing-feather.svg"
  24612. }
  24613. },
  24614. countourFeather: {
  24615. height: math.unit(4.154, "feet"),
  24616. name: "Contour Feather",
  24617. image: {
  24618. source: "./media/characters/alydar/contour-feather.svg"
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Diplomatic",
  24625. height: math.unit(13, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Small",
  24630. height: math.unit(30, "feet")
  24631. },
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(95, "feet"),
  24635. default: true
  24636. },
  24637. {
  24638. name: "Large",
  24639. height: math.unit(285, "feet")
  24640. },
  24641. {
  24642. name: "Incomprehensible",
  24643. height: math.unit(450, "megameters")
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24649. {
  24650. side: {
  24651. height: math.unit(11, "feet"),
  24652. weight: math.unit(1750, "kg"),
  24653. name: "Side",
  24654. image: {
  24655. source: "./media/characters/selicia/side.svg",
  24656. extra: 440 / 396,
  24657. bottom: 24.8 / 465.979
  24658. }
  24659. },
  24660. maw: {
  24661. height: math.unit(4.665, "feet"),
  24662. name: "Maw",
  24663. image: {
  24664. source: "./media/characters/selicia/maw.svg"
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(11, "feet"),
  24672. default: true
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24678. {
  24679. side: {
  24680. height: math.unit(2 + 6 / 12, "feet"),
  24681. weight: math.unit(30, "lb"),
  24682. name: "Side",
  24683. image: {
  24684. source: "./media/characters/layla/side.svg",
  24685. extra: 244 / 188,
  24686. bottom: 18.2 / 262.1
  24687. }
  24688. },
  24689. back: {
  24690. height: math.unit(2 + 6 / 12, "feet"),
  24691. weight: math.unit(30, "lb"),
  24692. name: "Back",
  24693. image: {
  24694. source: "./media/characters/layla/back.svg",
  24695. extra: 308 / 241.5,
  24696. bottom: 8.9 / 316.8
  24697. }
  24698. },
  24699. cumming: {
  24700. height: math.unit(2 + 6 / 12, "feet"),
  24701. weight: math.unit(30, "lb"),
  24702. name: "Cumming",
  24703. image: {
  24704. source: "./media/characters/layla/cumming.svg",
  24705. extra: 342 / 279,
  24706. bottom: 595 / 938
  24707. }
  24708. },
  24709. dickFlaccid: {
  24710. height: math.unit(2.595, "feet"),
  24711. name: "Flaccid Genitals",
  24712. image: {
  24713. source: "./media/characters/layla/dick-flaccid.svg"
  24714. }
  24715. },
  24716. dickErect: {
  24717. height: math.unit(2.359, "feet"),
  24718. name: "Erect Genitals",
  24719. image: {
  24720. source: "./media/characters/layla/dick-erect.svg"
  24721. }
  24722. },
  24723. dragon: {
  24724. height: math.unit(40, "feet"),
  24725. name: "Dragon",
  24726. image: {
  24727. source: "./media/characters/layla/dragon.svg",
  24728. extra: 610/535,
  24729. bottom: 367/977
  24730. }
  24731. },
  24732. taur: {
  24733. height: math.unit(30, "feet"),
  24734. name: "Taur",
  24735. image: {
  24736. source: "./media/characters/layla/taur.svg",
  24737. extra: 1268/1199,
  24738. bottom: 112/1380
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Micro",
  24745. height: math.unit(1, "inch")
  24746. },
  24747. {
  24748. name: "Small",
  24749. height: math.unit(1, "foot")
  24750. },
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(2 + 6 / 12, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Macro",
  24758. height: math.unit(200, "feet")
  24759. },
  24760. {
  24761. name: "Megamacro",
  24762. height: math.unit(1000, "miles")
  24763. },
  24764. {
  24765. name: "Planetary",
  24766. height: math.unit(8000, "miles")
  24767. },
  24768. {
  24769. name: "True Layla",
  24770. height: math.unit(200000 * 7, "multiverses")
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24776. {
  24777. back: {
  24778. height: math.unit(10.5, "feet"),
  24779. weight: math.unit(800, "lb"),
  24780. name: "Back",
  24781. image: {
  24782. source: "./media/characters/knox/back.svg",
  24783. extra: 1486 / 1089,
  24784. bottom: 107 / 1601.4
  24785. }
  24786. },
  24787. side: {
  24788. height: math.unit(10.5, "feet"),
  24789. weight: math.unit(800, "lb"),
  24790. name: "Side",
  24791. image: {
  24792. source: "./media/characters/knox/side.svg",
  24793. extra: 244 / 218,
  24794. bottom: 14 / 260
  24795. }
  24796. },
  24797. },
  24798. [
  24799. {
  24800. name: "Compact",
  24801. height: math.unit(10.5, "feet"),
  24802. default: true
  24803. },
  24804. {
  24805. name: "Dynamax",
  24806. height: math.unit(210, "feet")
  24807. },
  24808. {
  24809. name: "Full Macro",
  24810. height: math.unit(850, "feet")
  24811. },
  24812. ]
  24813. ))
  24814. characterMakers.push(() => makeCharacter(
  24815. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24816. {
  24817. front: {
  24818. height: math.unit(28, "feet"),
  24819. weight: math.unit(10500, "lb"),
  24820. name: "Front",
  24821. image: {
  24822. source: "./media/characters/kayda/front.svg",
  24823. extra: 1536 / 1428,
  24824. bottom: 68.7 / 1603
  24825. }
  24826. },
  24827. back: {
  24828. height: math.unit(28, "feet"),
  24829. weight: math.unit(10500, "lb"),
  24830. name: "Back",
  24831. image: {
  24832. source: "./media/characters/kayda/back.svg",
  24833. extra: 1557 / 1464,
  24834. bottom: 39.5 / 1597.49
  24835. }
  24836. },
  24837. dick: {
  24838. height: math.unit(3.858, "feet"),
  24839. name: "Dick",
  24840. image: {
  24841. source: "./media/characters/kayda/dick.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Macro",
  24848. height: math.unit(28, "feet"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(10 + 11 / 12, "feet"),
  24858. weight: math.unit(1400, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/brian/front.svg",
  24862. extra: 737 / 692,
  24863. bottom: 55.4 / 785
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(10 + 11 / 12, "feet"),
  24871. default: true
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(5 + 8 / 12, "feet"),
  24880. weight: math.unit(140, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/khemri/front.svg",
  24884. extra: 4780 / 4059,
  24885. bottom: 80.1 / 4859.25
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Micro",
  24892. height: math.unit(6, "inches")
  24893. },
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(5 + 8 / 12, "feet"),
  24897. default: true
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24903. {
  24904. front: {
  24905. height: math.unit(13, "feet"),
  24906. weight: math.unit(1700, "lb"),
  24907. name: "Front",
  24908. image: {
  24909. source: "./media/characters/felix-braveheart/front.svg",
  24910. extra: 1222 / 1157,
  24911. bottom: 53.2 / 1280
  24912. }
  24913. },
  24914. back: {
  24915. height: math.unit(13, "feet"),
  24916. weight: math.unit(1700, "lb"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/felix-braveheart/back.svg",
  24920. extra: 1277 / 1203,
  24921. bottom: 50.2 / 1327
  24922. }
  24923. },
  24924. feral: {
  24925. height: math.unit(6, "feet"),
  24926. weight: math.unit(400, "lb"),
  24927. name: "Feral",
  24928. image: {
  24929. source: "./media/characters/felix-braveheart/feral.svg",
  24930. extra: 682 / 625,
  24931. bottom: 6.9 / 688
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(13, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24945. {
  24946. side: {
  24947. height: math.unit(5 + 11 / 12, "feet"),
  24948. weight: math.unit(1400, "lb"),
  24949. name: "Side",
  24950. image: {
  24951. source: "./media/characters/shadow-blade/side.svg",
  24952. extra: 1726 / 1267,
  24953. bottom: 58.4 / 1785
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(5 + 11 / 12, "feet"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(1 + 6 / 12, "feet"),
  24970. weight: math.unit(25, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/karla-halldor/front.svg",
  24974. extra: 1459 / 1383,
  24975. bottom: 12 / 1472
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Normal",
  24982. height: math.unit(1 + 6 / 12, "feet"),
  24983. default: true
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(6 + 2 / 12, "feet"),
  24992. weight: math.unit(160, "lb"),
  24993. name: "Front",
  24994. image: {
  24995. source: "./media/characters/ariam/front.svg",
  24996. extra: 1073/976,
  24997. bottom: 52/1125
  24998. }
  24999. },
  25000. back: {
  25001. height: math.unit(6 + 2/12, "feet"),
  25002. weight: math.unit(160, "lb"),
  25003. name: "Back",
  25004. image: {
  25005. source: "./media/characters/ariam/back.svg",
  25006. extra: 1103/1023,
  25007. bottom: 9/1112
  25008. }
  25009. },
  25010. dressed: {
  25011. height: math.unit(6 + 2/12, "feet"),
  25012. weight: math.unit(160, "lb"),
  25013. name: "Dressed",
  25014. image: {
  25015. source: "./media/characters/ariam/dressed.svg",
  25016. extra: 1099/1009,
  25017. bottom: 25/1124
  25018. }
  25019. },
  25020. squatting: {
  25021. height: math.unit(4.1, "feet"),
  25022. weight: math.unit(160, "lb"),
  25023. name: "Squatting",
  25024. image: {
  25025. source: "./media/characters/ariam/squatting.svg",
  25026. extra: 2617 / 2112,
  25027. bottom: 61.2 / 2681,
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(6 + 2 / 12, "feet"),
  25035. default: true
  25036. },
  25037. {
  25038. name: "Normal+",
  25039. height: math.unit(4, "meters")
  25040. },
  25041. {
  25042. name: "Macro",
  25043. height: math.unit(50, "meters")
  25044. },
  25045. {
  25046. name: "Macro+",
  25047. height: math.unit(100, "meters")
  25048. },
  25049. {
  25050. name: "Megamacro",
  25051. height: math.unit(20, "km")
  25052. },
  25053. {
  25054. name: "Caretaker",
  25055. height: math.unit(444, "megameters")
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(1.67, "meters"),
  25064. weight: math.unit(140, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25068. extra: 438 / 410,
  25069. bottom: 0.75 / 439
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Shrunken",
  25076. height: math.unit(7.6, "cm")
  25077. },
  25078. {
  25079. name: "Human Scale",
  25080. height: math.unit(1.67, "meters")
  25081. },
  25082. {
  25083. name: "Wolxi Scale",
  25084. height: math.unit(36.7, "meters"),
  25085. default: true
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(1.73, "meters"),
  25094. weight: math.unit(240, "lb"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/izue-two-mothers/front.svg",
  25098. extra: 469 / 437,
  25099. bottom: 1.24 / 470.6
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Shrunken",
  25106. height: math.unit(7.86, "cm")
  25107. },
  25108. {
  25109. name: "Human Scale",
  25110. height: math.unit(1.73, "meters")
  25111. },
  25112. {
  25113. name: "Wolxi Scale",
  25114. height: math.unit(38, "meters"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(1.55, "meters"),
  25124. weight: math.unit(120, "lb"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/teeku-love-shack/front.svg",
  25128. extra: 387 / 362,
  25129. bottom: 1.51 / 388
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Shrunken",
  25136. height: math.unit(7, "cm")
  25137. },
  25138. {
  25139. name: "Human Scale",
  25140. height: math.unit(1.55, "meters")
  25141. },
  25142. {
  25143. name: "Wolxi Scale",
  25144. height: math.unit(34.1, "meters"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(1.83, "meters"),
  25154. weight: math.unit(135, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/dejma-the-red/front.svg",
  25158. extra: 480 / 458,
  25159. bottom: 1.8 / 482
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Shrunken",
  25166. height: math.unit(8.3, "cm")
  25167. },
  25168. {
  25169. name: "Human Scale",
  25170. height: math.unit(1.83, "meters")
  25171. },
  25172. {
  25173. name: "Wolxi Scale",
  25174. height: math.unit(40, "meters"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(1.78, "meters"),
  25184. weight: math.unit(65, "kg"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/aki/front.svg",
  25188. extra: 452 / 415
  25189. }
  25190. },
  25191. frontNsfw: {
  25192. height: math.unit(1.78, "meters"),
  25193. weight: math.unit(65, "kg"),
  25194. name: "Front (NSFW)",
  25195. image: {
  25196. source: "./media/characters/aki/front-nsfw.svg",
  25197. extra: 452 / 415
  25198. }
  25199. },
  25200. back: {
  25201. height: math.unit(1.78, "meters"),
  25202. weight: math.unit(65, "kg"),
  25203. name: "Back",
  25204. image: {
  25205. source: "./media/characters/aki/back.svg",
  25206. extra: 452 / 415
  25207. }
  25208. },
  25209. rump: {
  25210. height: math.unit(2.05, "feet"),
  25211. name: "Rump",
  25212. image: {
  25213. source: "./media/characters/aki/rump.svg"
  25214. }
  25215. },
  25216. dick: {
  25217. height: math.unit(0.95, "feet"),
  25218. name: "Dick",
  25219. image: {
  25220. source: "./media/characters/aki/dick.svg"
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Micro",
  25227. height: math.unit(15, "cm")
  25228. },
  25229. {
  25230. name: "Normal",
  25231. height: math.unit(178, "cm"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Macro",
  25236. height: math.unit(214, "m")
  25237. },
  25238. {
  25239. name: "Macro+",
  25240. height: math.unit(534, "m")
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(5 + 5 / 12, "feet"),
  25249. weight: math.unit(120, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/ari/front.svg",
  25253. extra: 1550/1471,
  25254. bottom: 39/1589
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(5 + 5 / 12, "feet")
  25262. },
  25263. {
  25264. name: "Macro",
  25265. height: math.unit(100, "feet"),
  25266. default: true
  25267. },
  25268. {
  25269. name: "Megamacro",
  25270. height: math.unit(100, "miles")
  25271. },
  25272. {
  25273. name: "Gigamacro",
  25274. height: math.unit(80000, "miles")
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25280. {
  25281. side: {
  25282. height: math.unit(9, "feet"),
  25283. weight: math.unit(400, "kg"),
  25284. name: "Side",
  25285. image: {
  25286. source: "./media/characters/bolt/side.svg",
  25287. extra: 1126 / 896,
  25288. bottom: 60 / 1187.3,
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Micro",
  25295. height: math.unit(5, "inches")
  25296. },
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(9, "feet"),
  25300. default: true
  25301. },
  25302. {
  25303. name: "Macro",
  25304. height: math.unit(700, "feet")
  25305. },
  25306. {
  25307. name: "Max Size",
  25308. height: math.unit(1.52e22, "yottameters")
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(4.3, "meters"),
  25317. weight: math.unit(3, "tons"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/draekon-sylviar/front.svg",
  25321. extra: 2072/1512,
  25322. bottom: 74/2146
  25323. }
  25324. },
  25325. back: {
  25326. height: math.unit(4.3, "meters"),
  25327. weight: math.unit(3, "tons"),
  25328. name: "Back",
  25329. image: {
  25330. source: "./media/characters/draekon-sylviar/back.svg",
  25331. extra: 1639/1483,
  25332. bottom: 41/1680
  25333. }
  25334. },
  25335. feral: {
  25336. height: math.unit(1.15, "meters"),
  25337. weight: math.unit(3, "tons"),
  25338. name: "Feral",
  25339. image: {
  25340. source: "./media/characters/draekon-sylviar/feral.svg",
  25341. extra: 1033/395,
  25342. bottom: 130/1163
  25343. }
  25344. },
  25345. maw: {
  25346. height: math.unit(1.3, "meters"),
  25347. name: "Maw",
  25348. image: {
  25349. source: "./media/characters/draekon-sylviar/maw.svg"
  25350. }
  25351. },
  25352. mawSeparated: {
  25353. height: math.unit(1.53, "meters"),
  25354. name: "Separated Maw",
  25355. image: {
  25356. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25357. }
  25358. },
  25359. tail: {
  25360. height: math.unit(1.15, "meters"),
  25361. name: "Tail",
  25362. image: {
  25363. source: "./media/characters/draekon-sylviar/tail.svg"
  25364. }
  25365. },
  25366. tailDick: {
  25367. height: math.unit(1.15, "meters"),
  25368. name: "Tail (Dick)",
  25369. image: {
  25370. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25371. }
  25372. },
  25373. tailDickSeparated: {
  25374. height: math.unit(1.19, "meters"),
  25375. name: "Tail (Separated Dick)",
  25376. image: {
  25377. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25378. }
  25379. },
  25380. slit: {
  25381. height: math.unit(1, "meters"),
  25382. name: "Slit",
  25383. image: {
  25384. source: "./media/characters/draekon-sylviar/slit.svg"
  25385. }
  25386. },
  25387. dick: {
  25388. height: math.unit(1.15, "meters"),
  25389. name: "Dick",
  25390. image: {
  25391. source: "./media/characters/draekon-sylviar/dick.svg"
  25392. }
  25393. },
  25394. dickSeparated: {
  25395. height: math.unit(1.1, "meters"),
  25396. name: "Separated Dick",
  25397. image: {
  25398. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25399. }
  25400. },
  25401. sheath: {
  25402. height: math.unit(1.15, "meters"),
  25403. name: "Sheath",
  25404. image: {
  25405. source: "./media/characters/draekon-sylviar/sheath.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Small",
  25412. height: math.unit(4.53 / 2, "meters"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(4.53, "meters"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Large",
  25422. height: math.unit(4.53 * 2, "meters"),
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(6 + 2 / 12, "feet"),
  25431. weight: math.unit(180, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/brawler/front.svg",
  25435. extra: 3301 / 3027,
  25436. bottom: 138 / 3439
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(6 + 2 / 12, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(11, "feet"),
  25453. weight: math.unit(1000, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/alex/front.svg",
  25457. bottom: 44.5 / 620
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Micro",
  25464. height: math.unit(5, "inches")
  25465. },
  25466. {
  25467. name: "Normal",
  25468. height: math.unit(11, "feet"),
  25469. default: true
  25470. },
  25471. {
  25472. name: "Macro",
  25473. height: math.unit(9.5e9, "feet")
  25474. },
  25475. {
  25476. name: "Max Size",
  25477. height: math.unit(1.4e283, "yottameters")
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25483. {
  25484. female: {
  25485. height: math.unit(29.9, "m"),
  25486. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25487. name: "Female",
  25488. image: {
  25489. source: "./media/characters/zenari/female.svg",
  25490. extra: 3281.6 / 3217,
  25491. bottom: 72.2 / 3353
  25492. }
  25493. },
  25494. male: {
  25495. height: math.unit(27.7, "m"),
  25496. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25497. name: "Male",
  25498. image: {
  25499. source: "./media/characters/zenari/male.svg",
  25500. extra: 3008 / 2991,
  25501. bottom: 54.6 / 3069
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Macro",
  25508. height: math.unit(29.7, "meters"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25515. {
  25516. female: {
  25517. height: math.unit(23.8, "m"),
  25518. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25519. name: "Female",
  25520. image: {
  25521. source: "./media/characters/mactarian/female.svg",
  25522. extra: 2662 / 2569,
  25523. bottom: 73 / 2736
  25524. }
  25525. },
  25526. male: {
  25527. height: math.unit(23.8, "m"),
  25528. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25529. name: "Male",
  25530. image: {
  25531. source: "./media/characters/mactarian/male.svg",
  25532. extra: 2673 / 2600,
  25533. bottom: 76 / 2750
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Macro",
  25540. height: math.unit(23.8, "meters"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25547. {
  25548. female: {
  25549. height: math.unit(19.3, "m"),
  25550. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25551. name: "Female",
  25552. image: {
  25553. source: "./media/characters/umok/female.svg",
  25554. extra: 2186 / 2078,
  25555. bottom: 87 / 2277
  25556. }
  25557. },
  25558. male: {
  25559. height: math.unit(19.5, "m"),
  25560. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25561. name: "Male",
  25562. image: {
  25563. source: "./media/characters/umok/male.svg",
  25564. extra: 2233 / 2140,
  25565. bottom: 24.4 / 2258
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Macro",
  25572. height: math.unit(19.3, "meters"),
  25573. default: true
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25579. {
  25580. female: {
  25581. height: math.unit(26.15, "m"),
  25582. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25583. name: "Female",
  25584. image: {
  25585. source: "./media/characters/joraxian/female.svg",
  25586. extra: 2912 / 2824,
  25587. bottom: 36 / 2956
  25588. }
  25589. },
  25590. male: {
  25591. height: math.unit(25.4, "m"),
  25592. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25593. name: "Male",
  25594. image: {
  25595. source: "./media/characters/joraxian/male.svg",
  25596. extra: 2877 / 2721,
  25597. bottom: 82 / 2967
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Macro",
  25604. height: math.unit(26.15, "meters"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25611. {
  25612. female: {
  25613. height: math.unit(21.6, "m"),
  25614. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25615. name: "Female",
  25616. image: {
  25617. source: "./media/characters/sthara/female.svg",
  25618. extra: 2516 / 2347,
  25619. bottom: 21.5 / 2537
  25620. }
  25621. },
  25622. male: {
  25623. height: math.unit(24, "m"),
  25624. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25625. name: "Male",
  25626. image: {
  25627. source: "./media/characters/sthara/male.svg",
  25628. extra: 2732 / 2607,
  25629. bottom: 23 / 2732
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Macro",
  25636. height: math.unit(21.6, "meters"),
  25637. default: true
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(6 + 4 / 12, "feet"),
  25646. weight: math.unit(175, "lb"),
  25647. name: "Front",
  25648. image: {
  25649. source: "./media/characters/luka-bryzant/front.svg",
  25650. extra: 311 / 289,
  25651. bottom: 4 / 315
  25652. }
  25653. },
  25654. back: {
  25655. height: math.unit(6 + 4 / 12, "feet"),
  25656. weight: math.unit(175, "lb"),
  25657. name: "Back",
  25658. image: {
  25659. source: "./media/characters/luka-bryzant/back.svg",
  25660. extra: 311 / 289,
  25661. bottom: 3.8 / 313.7
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Micro",
  25668. height: math.unit(10, "inches")
  25669. },
  25670. {
  25671. name: "Normal",
  25672. height: math.unit(6 + 4 / 12, "feet"),
  25673. default: true
  25674. },
  25675. {
  25676. name: "Large",
  25677. height: math.unit(12, "feet")
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(5 + 7 / 12, "feet"),
  25686. weight: math.unit(185, "lb"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/aman-aquila/front.svg",
  25690. extra: 1013 / 976,
  25691. bottom: 45.6 / 1057
  25692. }
  25693. },
  25694. side: {
  25695. height: math.unit(5 + 7 / 12, "feet"),
  25696. weight: math.unit(185, "lb"),
  25697. name: "Side",
  25698. image: {
  25699. source: "./media/characters/aman-aquila/side.svg",
  25700. extra: 1054 / 1011,
  25701. bottom: 15 / 1070
  25702. }
  25703. },
  25704. back: {
  25705. height: math.unit(5 + 7 / 12, "feet"),
  25706. weight: math.unit(185, "lb"),
  25707. name: "Back",
  25708. image: {
  25709. source: "./media/characters/aman-aquila/back.svg",
  25710. extra: 1026 / 970,
  25711. bottom: 12 / 1039
  25712. }
  25713. },
  25714. head: {
  25715. height: math.unit(1.211, "feet"),
  25716. name: "Head",
  25717. image: {
  25718. source: "./media/characters/aman-aquila/head.svg",
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Minimicro",
  25725. height: math.unit(0.057, "inches")
  25726. },
  25727. {
  25728. name: "Micro",
  25729. height: math.unit(7, "inches")
  25730. },
  25731. {
  25732. name: "Mini",
  25733. height: math.unit(3 + 7 / 12, "feet")
  25734. },
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(5 + 7 / 12, "feet"),
  25738. default: true
  25739. },
  25740. {
  25741. name: "Macro",
  25742. height: math.unit(157 + 7 / 12, "feet")
  25743. },
  25744. {
  25745. name: "Megamacro",
  25746. height: math.unit(1557 + 7 / 12, "feet")
  25747. },
  25748. {
  25749. name: "Gigamacro",
  25750. height: math.unit(15557 + 7 / 12, "feet")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(3 + 2 / 12, "inches"),
  25759. weight: math.unit(0.3, "ounces"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/hiphae/front.svg",
  25763. extra: 1931 / 1683,
  25764. bottom: 24 / 1955
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(3 + 1 / 2, "inches"),
  25772. default: true
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(5 + 10 / 12, "feet"),
  25781. weight: math.unit(165, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/nicky/front.svg",
  25785. extra: 3144 / 2886,
  25786. bottom: 45.6 / 3192
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(5 + 10 / 12, "feet"),
  25791. weight: math.unit(165, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/nicky/back.svg",
  25795. extra: 3055 / 2804,
  25796. bottom: 28.4 / 3087
  25797. }
  25798. },
  25799. frontclothed: {
  25800. height: math.unit(5 + 10 / 12, "feet"),
  25801. weight: math.unit(165, "lb"),
  25802. name: "Front-clothed",
  25803. image: {
  25804. source: "./media/characters/nicky/front-clothed.svg",
  25805. extra: 3184.9 / 2926.9,
  25806. bottom: 86.5 / 3239.9
  25807. }
  25808. },
  25809. foot: {
  25810. height: math.unit(1.16, "feet"),
  25811. name: "Foot",
  25812. image: {
  25813. source: "./media/characters/nicky/foot.svg"
  25814. }
  25815. },
  25816. feet: {
  25817. height: math.unit(1.34, "feet"),
  25818. name: "Feet",
  25819. image: {
  25820. source: "./media/characters/nicky/feet.svg"
  25821. }
  25822. },
  25823. maw: {
  25824. height: math.unit(0.9, "feet"),
  25825. name: "Maw",
  25826. image: {
  25827. source: "./media/characters/nicky/maw.svg"
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(5 + 10 / 12, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(60, "feet")
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(1, "mile")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25849. {
  25850. side: {
  25851. height: math.unit(10, "feet"),
  25852. weight: math.unit(600, "lb"),
  25853. name: "Side",
  25854. image: {
  25855. source: "./media/characters/blair/side.svg",
  25856. bottom: 16.6 / 475,
  25857. extra: 458 / 431
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Micro",
  25864. height: math.unit(8, "inches")
  25865. },
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(10, "feet"),
  25869. default: true
  25870. },
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(180, "feet")
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(5 + 4 / 12, "feet"),
  25882. weight: math.unit(125, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/fisher/front.svg",
  25886. extra: 444 / 390,
  25887. bottom: 2 / 444.8
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Micro",
  25894. height: math.unit(4, "inches")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(5 + 4 / 12, "feet"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Macro",
  25903. height: math.unit(100, "feet")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(6.71, "feet"),
  25912. weight: math.unit(200, "lb"),
  25913. capacity: math.unit(1000000, "people"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/gliss/front.svg",
  25917. extra: 2347 / 2231,
  25918. bottom: 113 / 2462
  25919. }
  25920. },
  25921. hammerspaceSize: {
  25922. height: math.unit(6.71 * 717, "feet"),
  25923. weight: math.unit(200, "lb"),
  25924. capacity: math.unit(1000000, "people"),
  25925. name: "Hammerspace Size",
  25926. image: {
  25927. source: "./media/characters/gliss/front.svg",
  25928. extra: 2347 / 2231,
  25929. bottom: 113 / 2462
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(6.71, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25943. {
  25944. side: {
  25945. height: math.unit(1.44, "m"),
  25946. weight: math.unit(80, "kg"),
  25947. name: "Side",
  25948. image: {
  25949. source: "./media/characters/dune-anderson/side.svg",
  25950. bottom: 49 / 1426
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Wolf-sized",
  25957. height: math.unit(1.44, "meters")
  25958. },
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(5.05, "meters"),
  25962. default: true
  25963. },
  25964. {
  25965. name: "Big",
  25966. height: math.unit(14.4, "meters")
  25967. },
  25968. {
  25969. name: "Huge",
  25970. height: math.unit(144, "meters")
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(7, "feet"),
  25979. weight: math.unit(425, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/hind/front.svg",
  25983. extra: 2091 / 1860,
  25984. bottom: 129 / 2220
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(7, "feet"),
  25989. weight: math.unit(425, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/hind/back.svg",
  25993. extra: 2091 / 1860,
  25994. bottom: 24.6 / 2309
  25995. }
  25996. },
  25997. tail: {
  25998. height: math.unit(2.8, "feet"),
  25999. name: "Tail",
  26000. image: {
  26001. source: "./media/characters/hind/tail.svg"
  26002. }
  26003. },
  26004. head: {
  26005. height: math.unit(2.55, "feet"),
  26006. name: "Head",
  26007. image: {
  26008. source: "./media/characters/hind/head.svg"
  26009. }
  26010. },
  26011. },
  26012. [
  26013. {
  26014. name: "XS",
  26015. height: math.unit(0.7, "feet")
  26016. },
  26017. {
  26018. name: "Normal",
  26019. height: math.unit(7, "feet"),
  26020. default: true
  26021. },
  26022. {
  26023. name: "XL",
  26024. height: math.unit(70, "feet")
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(2.1, "meters"),
  26033. weight: math.unit(150, "lb"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/tharquench-sizestealer/front.svg",
  26037. extra: 1605/1470,
  26038. bottom: 36/1641
  26039. }
  26040. },
  26041. frontAlt: {
  26042. height: math.unit(2.1, "meters"),
  26043. weight: math.unit(150, "lb"),
  26044. name: "Front (Alt)",
  26045. image: {
  26046. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26047. extra: 2318 / 2063,
  26048. bottom: 93.4 / 2410
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Nano",
  26055. height: math.unit(1, "mm")
  26056. },
  26057. {
  26058. name: "Micro",
  26059. height: math.unit(1, "cm")
  26060. },
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(2.1, "meters"),
  26064. default: true
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26070. {
  26071. front: {
  26072. height: math.unit(7 + 5 / 12, "feet"),
  26073. weight: math.unit(357, "lb"),
  26074. name: "Front",
  26075. image: {
  26076. source: "./media/characters/solex-draconov/front.svg",
  26077. extra: 1993 / 1865,
  26078. bottom: 117 / 2111
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Natural Height",
  26085. height: math.unit(7 + 5 / 12, "feet"),
  26086. default: true
  26087. },
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(350, "feet")
  26091. },
  26092. {
  26093. name: "Macro+",
  26094. height: math.unit(1000, "feet")
  26095. },
  26096. {
  26097. name: "Megamacro",
  26098. height: math.unit(20, "km")
  26099. },
  26100. {
  26101. name: "Megamacro+",
  26102. height: math.unit(1000, "km")
  26103. },
  26104. {
  26105. name: "Gigamacro",
  26106. height: math.unit(2.5, "Gm")
  26107. },
  26108. {
  26109. name: "Teramacro",
  26110. height: math.unit(15, "Tm")
  26111. },
  26112. {
  26113. name: "Galactic",
  26114. height: math.unit(30, "Zm")
  26115. },
  26116. {
  26117. name: "Universal",
  26118. height: math.unit(21000, "Ym")
  26119. },
  26120. {
  26121. name: "Omniversal",
  26122. height: math.unit(9.861e50, "Ym")
  26123. },
  26124. {
  26125. name: "Existential",
  26126. height: math.unit(1e300, "meters")
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26132. {
  26133. side: {
  26134. height: math.unit(25, "feet"),
  26135. weight: math.unit(90000, "lb"),
  26136. name: "Side",
  26137. image: {
  26138. source: "./media/characters/mandarax/side.svg",
  26139. extra: 614 / 332,
  26140. bottom: 55 / 630
  26141. }
  26142. },
  26143. lounging: {
  26144. height: math.unit(15.4, "feet"),
  26145. weight: math.unit(90000, "lb"),
  26146. name: "Lounging",
  26147. image: {
  26148. source: "./media/characters/mandarax/lounging.svg",
  26149. extra: 817/609,
  26150. bottom: 685/1502
  26151. }
  26152. },
  26153. head: {
  26154. height: math.unit(11.4, "feet"),
  26155. name: "Head",
  26156. image: {
  26157. source: "./media/characters/mandarax/head.svg"
  26158. }
  26159. },
  26160. belly: {
  26161. height: math.unit(33, "feet"),
  26162. name: "Belly",
  26163. capacity: math.unit(500, "people"),
  26164. image: {
  26165. source: "./media/characters/mandarax/belly.svg"
  26166. }
  26167. },
  26168. dick: {
  26169. height: math.unit(8.46, "feet"),
  26170. name: "Dick",
  26171. image: {
  26172. source: "./media/characters/mandarax/dick.svg"
  26173. }
  26174. },
  26175. top: {
  26176. height: math.unit(28, "meters"),
  26177. name: "Top",
  26178. image: {
  26179. source: "./media/characters/mandarax/top.svg"
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(25, "feet"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(5, "feet"),
  26196. weight: math.unit(90, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/pixil/front.svg",
  26200. extra: 2000 / 1618,
  26201. bottom: 12.3 / 2011
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(5, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Megamacro",
  26213. height: math.unit(10, "miles"),
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(7 + 2 / 12, "feet"),
  26222. weight: math.unit(200, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/angel/front.svg",
  26226. extra: 1830 / 1737,
  26227. bottom: 22.6 / 1854,
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(7 + 2 / 12, "feet"),
  26235. default: true
  26236. },
  26237. {
  26238. name: "Macro",
  26239. height: math.unit(1000, "feet")
  26240. },
  26241. {
  26242. name: "Megamacro",
  26243. height: math.unit(2, "miles")
  26244. },
  26245. {
  26246. name: "Gigamacro",
  26247. height: math.unit(20, "earths")
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(5, "feet"),
  26256. weight: math.unit(180, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/mekana/front.svg",
  26260. extra: 1671 / 1605,
  26261. bottom: 3.5 / 1691
  26262. }
  26263. },
  26264. side: {
  26265. height: math.unit(5, "feet"),
  26266. weight: math.unit(180, "lb"),
  26267. name: "Side",
  26268. image: {
  26269. source: "./media/characters/mekana/side.svg",
  26270. extra: 1671 / 1605,
  26271. bottom: 3.5 / 1691
  26272. }
  26273. },
  26274. back: {
  26275. height: math.unit(5, "feet"),
  26276. weight: math.unit(180, "lb"),
  26277. name: "Back",
  26278. image: {
  26279. source: "./media/characters/mekana/back.svg",
  26280. extra: 1671 / 1605,
  26281. bottom: 3.5 / 1691
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(5, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(4 + 6 / 12, "feet"),
  26298. weight: math.unit(80, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/pixie/front.svg",
  26302. extra: 1924 / 1825,
  26303. bottom: 22.4 / 1946
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(4 + 6 / 12, "feet"),
  26311. default: true
  26312. },
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(40, "feet")
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(2.1, "meters"),
  26324. weight: math.unit(200, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/the-lascivious/front.svg",
  26328. extra: 1 / 0.893,
  26329. bottom: 3.5 / 573.7
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Human Scale",
  26336. height: math.unit(2.1, "meters")
  26337. },
  26338. {
  26339. name: "Wolxi Scale",
  26340. height: math.unit(46.2, "m"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Boinker of Buildings",
  26345. height: math.unit(10, "km")
  26346. },
  26347. {
  26348. name: "Shagger of Skyscrapers",
  26349. height: math.unit(40, "km")
  26350. },
  26351. {
  26352. name: "Banger of Boroughs",
  26353. height: math.unit(4000, "km")
  26354. },
  26355. {
  26356. name: "Screwer of States",
  26357. height: math.unit(100000, "km")
  26358. },
  26359. {
  26360. name: "Pounder of Planets",
  26361. height: math.unit(2000000, "km")
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(6, "feet"),
  26370. weight: math.unit(150, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/aj/front.svg",
  26374. extra: 2039 / 1562,
  26375. bottom: 40 / 2079
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(11 + 6 / 12, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Megamacro",
  26387. height: math.unit(60, "megameters")
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26393. {
  26394. side: {
  26395. height: math.unit(31 + 8 / 12, "feet"),
  26396. weight: math.unit(75000, "kg"),
  26397. name: "Side",
  26398. image: {
  26399. source: "./media/characters/koros/side.svg",
  26400. extra: 1442 / 1297,
  26401. bottom: 122.7 / 1562
  26402. }
  26403. },
  26404. dicksKingsCrown: {
  26405. height: math.unit(6, "feet"),
  26406. name: "Dicks (King's Crown)",
  26407. image: {
  26408. source: "./media/characters/koros/dicks-kings-crown.svg"
  26409. }
  26410. },
  26411. dicksTailSet: {
  26412. height: math.unit(3, "feet"),
  26413. name: "Dicks (Tail Set)",
  26414. image: {
  26415. source: "./media/characters/koros/dicks-tail-set.svg"
  26416. }
  26417. },
  26418. dickCumming: {
  26419. height: math.unit(7.98, "feet"),
  26420. name: "Dick (Cumming)",
  26421. image: {
  26422. source: "./media/characters/koros/dick-cumming.svg"
  26423. }
  26424. },
  26425. dicksBack: {
  26426. height: math.unit(5.9, "feet"),
  26427. name: "Dicks (Back)",
  26428. image: {
  26429. source: "./media/characters/koros/dicks-back.svg"
  26430. }
  26431. },
  26432. dicksFront: {
  26433. height: math.unit(3.72, "feet"),
  26434. name: "Dicks (Front)",
  26435. image: {
  26436. source: "./media/characters/koros/dicks-front.svg"
  26437. }
  26438. },
  26439. dicksPeeking: {
  26440. height: math.unit(3.0, "feet"),
  26441. name: "Dicks (Peeking)",
  26442. image: {
  26443. source: "./media/characters/koros/dicks-peeking.svg"
  26444. }
  26445. },
  26446. eye: {
  26447. height: math.unit(1.7, "feet"),
  26448. name: "Eye",
  26449. image: {
  26450. source: "./media/characters/koros/eye.svg"
  26451. }
  26452. },
  26453. headFront: {
  26454. height: math.unit(11.69, "feet"),
  26455. name: "Head (Front)",
  26456. image: {
  26457. source: "./media/characters/koros/head-front.svg"
  26458. }
  26459. },
  26460. headSide: {
  26461. height: math.unit(14, "feet"),
  26462. name: "Head (Side)",
  26463. image: {
  26464. source: "./media/characters/koros/head-side.svg"
  26465. }
  26466. },
  26467. leg: {
  26468. height: math.unit(17, "feet"),
  26469. name: "Leg",
  26470. image: {
  26471. source: "./media/characters/koros/leg.svg"
  26472. }
  26473. },
  26474. mawSide: {
  26475. height: math.unit(12.8, "feet"),
  26476. name: "Maw (Side)",
  26477. image: {
  26478. source: "./media/characters/koros/maw-side.svg"
  26479. }
  26480. },
  26481. mawSpitting: {
  26482. height: math.unit(17, "feet"),
  26483. name: "Maw (Spitting)",
  26484. image: {
  26485. source: "./media/characters/koros/maw-spitting.svg"
  26486. }
  26487. },
  26488. slit: {
  26489. height: math.unit(2.8, "feet"),
  26490. name: "Slit",
  26491. image: {
  26492. source: "./media/characters/koros/slit.svg"
  26493. }
  26494. },
  26495. stomach: {
  26496. height: math.unit(6.8, "feet"),
  26497. capacity: math.unit(20, "people"),
  26498. name: "Stomach",
  26499. image: {
  26500. source: "./media/characters/koros/stomach.svg"
  26501. }
  26502. },
  26503. wingspanBottom: {
  26504. height: math.unit(114, "feet"),
  26505. name: "Wingspan (Bottom)",
  26506. image: {
  26507. source: "./media/characters/koros/wingspan-bottom.svg"
  26508. }
  26509. },
  26510. wingspanTop: {
  26511. height: math.unit(104, "feet"),
  26512. name: "Wingspan (Top)",
  26513. image: {
  26514. source: "./media/characters/koros/wingspan-top.svg"
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(31 + 8 / 12, "feet"),
  26522. default: true
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(18 + 5 / 12, "feet"),
  26531. weight: math.unit(3750, "kg"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/vexx/front.svg",
  26535. extra: 426 / 396,
  26536. bottom: 31.5 / 458
  26537. }
  26538. },
  26539. maw: {
  26540. height: math.unit(6, "feet"),
  26541. name: "Maw",
  26542. image: {
  26543. source: "./media/characters/vexx/maw.svg"
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(18 + 5 / 12, "feet"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(17 + 6 / 12, "feet"),
  26560. weight: math.unit(150, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/baadra/front.svg",
  26564. extra: 1694/1553,
  26565. bottom: 179/1873
  26566. }
  26567. },
  26568. frontAlt: {
  26569. height: math.unit(17 + 6 / 12, "feet"),
  26570. weight: math.unit(150, "lb"),
  26571. name: "Front (Alt)",
  26572. image: {
  26573. source: "./media/characters/baadra/front-alt.svg",
  26574. extra: 3137 / 2890,
  26575. bottom: 168.4 / 3305
  26576. }
  26577. },
  26578. back: {
  26579. height: math.unit(17 + 6 / 12, "feet"),
  26580. weight: math.unit(150, "lb"),
  26581. name: "Back",
  26582. image: {
  26583. source: "./media/characters/baadra/back.svg",
  26584. extra: 3142 / 2890,
  26585. bottom: 220 / 3371
  26586. }
  26587. },
  26588. head: {
  26589. height: math.unit(5.45, "feet"),
  26590. name: "Head",
  26591. image: {
  26592. source: "./media/characters/baadra/head.svg"
  26593. }
  26594. },
  26595. headAngry: {
  26596. height: math.unit(4.95, "feet"),
  26597. name: "Head (Angry)",
  26598. image: {
  26599. source: "./media/characters/baadra/head-angry.svg"
  26600. }
  26601. },
  26602. headOpen: {
  26603. height: math.unit(6, "feet"),
  26604. name: "Head (Open)",
  26605. image: {
  26606. source: "./media/characters/baadra/head-open.svg"
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(17 + 6 / 12, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(7 + 3 / 12, "feet"),
  26623. weight: math.unit(180, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/juri/front.svg",
  26627. extra: 1401 / 1237,
  26628. bottom: 18.5 / 1418
  26629. }
  26630. },
  26631. side: {
  26632. height: math.unit(7 + 3 / 12, "feet"),
  26633. weight: math.unit(180, "lb"),
  26634. name: "Side",
  26635. image: {
  26636. source: "./media/characters/juri/side.svg",
  26637. extra: 1424 / 1242,
  26638. bottom: 18.5 / 1447
  26639. }
  26640. },
  26641. sitting: {
  26642. height: math.unit(6, "feet"),
  26643. weight: math.unit(180, "lb"),
  26644. name: "Sitting",
  26645. image: {
  26646. source: "./media/characters/juri/sitting.svg",
  26647. extra: 1270 / 1143,
  26648. bottom: 100 / 1343
  26649. }
  26650. },
  26651. back: {
  26652. height: math.unit(7 + 3 / 12, "feet"),
  26653. weight: math.unit(180, "lb"),
  26654. name: "Back",
  26655. image: {
  26656. source: "./media/characters/juri/back.svg",
  26657. extra: 1377 / 1240,
  26658. bottom: 23.7 / 1405
  26659. }
  26660. },
  26661. maw: {
  26662. height: math.unit(2.8, "feet"),
  26663. name: "Maw",
  26664. image: {
  26665. source: "./media/characters/juri/maw.svg"
  26666. }
  26667. },
  26668. stomach: {
  26669. height: math.unit(0.89, "feet"),
  26670. capacity: math.unit(4, "liters"),
  26671. name: "Stomach",
  26672. image: {
  26673. source: "./media/characters/juri/stomach.svg"
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(7 + 3 / 12, "feet"),
  26681. default: true
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26687. {
  26688. fox: {
  26689. height: math.unit(5 + 6 / 12, "feet"),
  26690. weight: math.unit(140, "lb"),
  26691. name: "Fox",
  26692. image: {
  26693. source: "./media/characters/maxene-sita/fox.svg",
  26694. extra: 146 / 138,
  26695. bottom: 2.1 / 148.19
  26696. }
  26697. },
  26698. foxLaying: {
  26699. height: math.unit(1.70, "feet"),
  26700. weight: math.unit(140, "lb"),
  26701. name: "Fox (Laying)",
  26702. image: {
  26703. source: "./media/characters/maxene-sita/fox-laying.svg",
  26704. extra: 910 / 572,
  26705. bottom: 71 / 981
  26706. }
  26707. },
  26708. kitsune: {
  26709. height: math.unit(10, "feet"),
  26710. weight: math.unit(800, "lb"),
  26711. name: "Kitsune",
  26712. image: {
  26713. source: "./media/characters/maxene-sita/kitsune.svg",
  26714. extra: 185 / 176,
  26715. bottom: 4.7 / 189.9
  26716. }
  26717. },
  26718. hellhound: {
  26719. height: math.unit(10, "feet"),
  26720. weight: math.unit(700, "lb"),
  26721. name: "Hellhound",
  26722. image: {
  26723. source: "./media/characters/maxene-sita/hellhound.svg",
  26724. extra: 1600 / 1545,
  26725. bottom: 81 / 1681
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Normal",
  26732. height: math.unit(5 + 6 / 12, "feet"),
  26733. default: true
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26739. {
  26740. front: {
  26741. height: math.unit(3 + 4 / 12, "feet"),
  26742. weight: math.unit(70, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/maia/front.svg",
  26746. extra: 227 / 219.5,
  26747. bottom: 40 / 267
  26748. }
  26749. },
  26750. back: {
  26751. height: math.unit(3 + 4 / 12, "feet"),
  26752. weight: math.unit(70, "lb"),
  26753. name: "Back",
  26754. image: {
  26755. source: "./media/characters/maia/back.svg",
  26756. extra: 237 / 225
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(3 + 4 / 12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(5 + 10 / 12, "feet"),
  26773. weight: math.unit(197, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/jabaro/front.svg",
  26777. extra: 225 / 216,
  26778. bottom: 5.06 / 230
  26779. }
  26780. },
  26781. back: {
  26782. height: math.unit(5 + 10 / 12, "feet"),
  26783. weight: math.unit(197, "lb"),
  26784. name: "Back",
  26785. image: {
  26786. source: "./media/characters/jabaro/back.svg",
  26787. extra: 225 / 219,
  26788. bottom: 1.9 / 227
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(5 + 10 / 12, "feet"),
  26796. default: true
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(5 + 8 / 12, "feet"),
  26805. weight: math.unit(139, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/risa/front.svg",
  26809. extra: 270 / 260,
  26810. bottom: 11.2 / 282
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(5 + 8 / 12, "feet"),
  26815. weight: math.unit(139, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/risa/back.svg",
  26819. extra: 264 / 255,
  26820. bottom: 4 / 268
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Normal",
  26827. height: math.unit(5 + 8 / 12, "feet"),
  26828. default: true
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(2 + 11 / 12, "feet"),
  26837. weight: math.unit(30, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/weatley/front.svg",
  26841. bottom: 10.7 / 414,
  26842. extra: 403.5 / 362
  26843. }
  26844. },
  26845. back: {
  26846. height: math.unit(2 + 11 / 12, "feet"),
  26847. weight: math.unit(30, "lb"),
  26848. name: "Back",
  26849. image: {
  26850. source: "./media/characters/weatley/back.svg",
  26851. bottom: 10.7 / 414,
  26852. extra: 403.5 / 362
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(2 + 11 / 12, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(5 + 2 / 12, "feet"),
  26869. weight: math.unit(50, "kg"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/mercury-crescent/front.svg",
  26873. extra: 1088 / 1033,
  26874. bottom: 18.9 / 1109
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(5 + 2 / 12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(2, "feet"),
  26891. weight: math.unit(15, "kg"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/diamond-jones/front.svg",
  26895. extra: 727/723,
  26896. bottom: 46/773
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(2, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(3, "feet"),
  26913. weight: math.unit(30, "kg"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/sweet-bit/front.svg",
  26917. extra: 675 / 567,
  26918. bottom: 27.7 / 703
  26919. }
  26920. },
  26921. },
  26922. [
  26923. {
  26924. name: "Normal",
  26925. height: math.unit(3, "feet"),
  26926. default: true
  26927. },
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26932. {
  26933. side: {
  26934. height: math.unit(9.178, "feet"),
  26935. weight: math.unit(500, "lb"),
  26936. name: "Side",
  26937. image: {
  26938. source: "./media/characters/umbrazen/side.svg",
  26939. extra: 1730 / 1473,
  26940. bottom: 34.6 / 1765
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(9.178, "feet"),
  26948. default: true
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26954. {
  26955. front: {
  26956. height: math.unit(10, "feet"),
  26957. weight: math.unit(750, "lb"),
  26958. name: "Front",
  26959. image: {
  26960. source: "./media/characters/arlist/front.svg",
  26961. extra: 961 / 778,
  26962. bottom: 6.2 / 986
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(10, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(5 + 1 / 12, "feet"),
  26979. weight: math.unit(110, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/aradel/front.svg",
  26983. extra: 324 / 303,
  26984. bottom: 3.6 / 329.4
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(5 + 1 / 12, "feet"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26998. {
  26999. dressed: {
  27000. height: math.unit(3 + 8 / 12, "feet"),
  27001. weight: math.unit(50, "lb"),
  27002. name: "Dressed",
  27003. image: {
  27004. source: "./media/characters/serryn/dressed.svg",
  27005. extra: 1792 / 1656,
  27006. bottom: 43.5 / 1840
  27007. }
  27008. },
  27009. nude: {
  27010. height: math.unit(3 + 8 / 12, "feet"),
  27011. weight: math.unit(50, "lb"),
  27012. name: "Nude",
  27013. image: {
  27014. source: "./media/characters/serryn/nude.svg",
  27015. extra: 1792 / 1656,
  27016. bottom: 43.5 / 1840
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Normal",
  27023. height: math.unit(3 + 8 / 12, "feet"),
  27024. default: true
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27030. {
  27031. front: {
  27032. height: math.unit(7 + 10 / 12, "feet"),
  27033. weight: math.unit(255, "lb"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/xavier-thyme/front.svg",
  27037. extra: 3733 / 3642,
  27038. bottom: 131 / 3869
  27039. }
  27040. },
  27041. frontRaven: {
  27042. height: math.unit(7 + 10 / 12, "feet"),
  27043. weight: math.unit(255, "lb"),
  27044. name: "Front (Raven)",
  27045. image: {
  27046. source: "./media/characters/xavier-thyme/front-raven.svg",
  27047. extra: 4385 / 3642,
  27048. bottom: 131 / 4517
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(7 + 10 / 12, "feet"),
  27056. default: true
  27057. },
  27058. ]
  27059. ))
  27060. characterMakers.push(() => makeCharacter(
  27061. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27062. {
  27063. front: {
  27064. height: math.unit(1.6, "m"),
  27065. weight: math.unit(50, "kg"),
  27066. name: "Front",
  27067. image: {
  27068. source: "./media/characters/kiki/front.svg",
  27069. extra: 4682 / 3610,
  27070. bottom: 115 / 4777
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Normal",
  27077. height: math.unit(1.6, "meters"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(50, "m"),
  27087. weight: math.unit(500, "tonnes"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/ryoko/front.svg",
  27091. extra: 4632 / 3926,
  27092. bottom: 193 / 4823
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(50, "meters"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(30, "m"),
  27109. weight: math.unit(22, "tonnes"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/elio/front.svg",
  27113. extra: 4582 / 3720,
  27114. bottom: 236 / 4828
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(30, "meters"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(6 + 3 / 12, "feet"),
  27131. weight: math.unit(120, "lb"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/azura/front.svg",
  27135. extra: 1149 / 1135,
  27136. bottom: 45 / 1194
  27137. }
  27138. },
  27139. frontClothed: {
  27140. height: math.unit(6 + 3 / 12, "feet"),
  27141. weight: math.unit(120, "lb"),
  27142. name: "Front (Clothed)",
  27143. image: {
  27144. source: "./media/characters/azura/front-clothed.svg",
  27145. extra: 1149 / 1135,
  27146. bottom: 45 / 1194
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(6 + 3 / 12, "feet"),
  27154. default: true
  27155. },
  27156. {
  27157. name: "Macro",
  27158. height: math.unit(20 + 6 / 12, "feet")
  27159. },
  27160. {
  27161. name: "Megamacro",
  27162. height: math.unit(12, "miles")
  27163. },
  27164. {
  27165. name: "Gigamacro",
  27166. height: math.unit(10000, "miles")
  27167. },
  27168. {
  27169. name: "Teramacro",
  27170. height: math.unit(900000, "miles")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(12, "feet"),
  27179. weight: math.unit(1, "ton"),
  27180. capacity: math.unit(660000, "gallons"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/zeus/front.svg",
  27184. extra: 5005 / 4717,
  27185. bottom: 363 / 5388
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(12, "feet")
  27193. },
  27194. {
  27195. name: "Preferred Size",
  27196. height: math.unit(0.5, "miles"),
  27197. default: true
  27198. },
  27199. {
  27200. name: "Giga Horse",
  27201. height: math.unit(300, "miles")
  27202. },
  27203. {
  27204. name: "Riding Planets",
  27205. height: math.unit(30, "megameters")
  27206. },
  27207. {
  27208. name: "Cosmic Giant",
  27209. height: math.unit(3, "zettameters")
  27210. },
  27211. {
  27212. name: "Breeding God",
  27213. height: math.unit(9.92e22, "yottameters")
  27214. },
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27219. {
  27220. side: {
  27221. height: math.unit(9, "feet"),
  27222. weight: math.unit(1500, "kg"),
  27223. name: "Side",
  27224. image: {
  27225. source: "./media/characters/fang/side.svg",
  27226. extra: 924 / 866,
  27227. bottom: 47.5 / 972.3
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(9, "feet"),
  27235. default: true
  27236. },
  27237. {
  27238. name: "Macro",
  27239. height: math.unit(75 + 6 / 12, "feet")
  27240. },
  27241. {
  27242. name: "Teramacro",
  27243. height: math.unit(50000, "miles")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(10, "feet"),
  27252. weight: math.unit(2, "tons"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/rekhit/front.svg",
  27256. extra: 2796 / 2590,
  27257. bottom: 225 / 3022
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(10, "feet"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(500, "feet")
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(7 + 6.451 / 12, "feet"),
  27278. weight: math.unit(310, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/dahlia-verrick/front.svg",
  27282. extra: 1488 / 1365,
  27283. bottom: 6.2 / 1495
  27284. }
  27285. },
  27286. back: {
  27287. height: math.unit(7 + 6.451 / 12, "feet"),
  27288. weight: math.unit(310, "lb"),
  27289. name: "Back",
  27290. image: {
  27291. source: "./media/characters/dahlia-verrick/back.svg",
  27292. extra: 1472 / 1351,
  27293. bottom: 5.28 / 1477
  27294. }
  27295. },
  27296. frontBusiness: {
  27297. height: math.unit(7 + 6.451 / 12, "feet"),
  27298. weight: math.unit(200, "lb"),
  27299. name: "Front (Business)",
  27300. image: {
  27301. source: "./media/characters/dahlia-verrick/front-business.svg",
  27302. extra: 1478 / 1381,
  27303. bottom: 5.5 / 1484
  27304. }
  27305. },
  27306. frontCasual: {
  27307. height: math.unit(7 + 6.451 / 12, "feet"),
  27308. weight: math.unit(200, "lb"),
  27309. name: "Front (Casual)",
  27310. image: {
  27311. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27312. extra: 1478 / 1381,
  27313. bottom: 5.5 / 1484
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Travel-Sized",
  27320. height: math.unit(7.45, "inches")
  27321. },
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(7 + 6.451 / 12, "feet"),
  27325. default: true
  27326. },
  27327. {
  27328. name: "Hitting the Town",
  27329. height: math.unit(37 + 8 / 12, "feet")
  27330. },
  27331. {
  27332. name: "Stomp in the Suburbs",
  27333. height: math.unit(964 + 9.728 / 12, "feet")
  27334. },
  27335. {
  27336. name: "Sit on the City",
  27337. height: math.unit(61747 + 10.592 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Glomp the Globe",
  27341. height: math.unit(252919327 + 4.832 / 12, "feet")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(6 + 4 / 12, "feet"),
  27350. weight: math.unit(320, "lb"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/balina-mahigan/front.svg",
  27354. extra: 447 / 428,
  27355. bottom: 18 / 466
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(6 + 4 / 12, "feet"),
  27360. weight: math.unit(320, "lb"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/balina-mahigan/back.svg",
  27364. extra: 445 / 428,
  27365. bottom: 4.07 / 448
  27366. }
  27367. },
  27368. arm: {
  27369. height: math.unit(1.88, "feet"),
  27370. name: "Arm",
  27371. image: {
  27372. source: "./media/characters/balina-mahigan/arm.svg"
  27373. }
  27374. },
  27375. backPort: {
  27376. height: math.unit(0.685, "feet"),
  27377. name: "Back Port",
  27378. image: {
  27379. source: "./media/characters/balina-mahigan/back-port.svg"
  27380. }
  27381. },
  27382. hoofpaw: {
  27383. height: math.unit(1.41, "feet"),
  27384. name: "Hoofpaw",
  27385. image: {
  27386. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27387. }
  27388. },
  27389. leftHandBack: {
  27390. height: math.unit(0.938, "feet"),
  27391. name: "Left Hand (Back)",
  27392. image: {
  27393. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27394. }
  27395. },
  27396. leftHandFront: {
  27397. height: math.unit(0.938, "feet"),
  27398. name: "Left Hand (Front)",
  27399. image: {
  27400. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27401. }
  27402. },
  27403. rightHandBack: {
  27404. height: math.unit(0.95, "feet"),
  27405. name: "Right Hand (Back)",
  27406. image: {
  27407. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27408. }
  27409. },
  27410. rightHandFront: {
  27411. height: math.unit(0.95, "feet"),
  27412. name: "Right Hand (Front)",
  27413. image: {
  27414. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(6 + 4 / 12, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(6, "feet"),
  27431. weight: math.unit(320, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/balina-mejeri/front.svg",
  27435. extra: 517 / 488,
  27436. bottom: 44.2 / 561
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(6 + 4 / 12, "feet")
  27444. },
  27445. {
  27446. name: "Business",
  27447. height: math.unit(155, "feet"),
  27448. default: true
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27454. {
  27455. kneeling: {
  27456. height: math.unit(6 + 4 / 12, "feet"),
  27457. weight: math.unit(300 * 20, "lb"),
  27458. name: "Kneeling",
  27459. image: {
  27460. source: "./media/characters/balbarian/kneeling.svg",
  27461. extra: 922 / 862,
  27462. bottom: 42.4 / 965
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(6 + 4 / 12, "feet")
  27470. },
  27471. {
  27472. name: "Treasured",
  27473. height: math.unit(18 + 9 / 12, "feet"),
  27474. default: true
  27475. },
  27476. {
  27477. name: "Macro",
  27478. height: math.unit(900, "feet")
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27484. {
  27485. front: {
  27486. height: math.unit(6 + 4 / 12, "feet"),
  27487. weight: math.unit(325, "lb"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/balina-amarini/front.svg",
  27491. extra: 415 / 403,
  27492. bottom: 19 / 433.4
  27493. }
  27494. },
  27495. back: {
  27496. height: math.unit(6 + 4 / 12, "feet"),
  27497. weight: math.unit(325, "lb"),
  27498. name: "Back",
  27499. image: {
  27500. source: "./media/characters/balina-amarini/back.svg",
  27501. extra: 415 / 403,
  27502. bottom: 13.5 / 432
  27503. }
  27504. },
  27505. overdrive: {
  27506. height: math.unit(6 + 4 / 12, "feet"),
  27507. weight: math.unit(400, "lb"),
  27508. name: "Overdrive",
  27509. image: {
  27510. source: "./media/characters/balina-amarini/overdrive.svg",
  27511. extra: 269 / 259,
  27512. bottom: 12 / 282
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Boom",
  27519. height: math.unit(9 + 10 / 12, "feet"),
  27520. default: true
  27521. },
  27522. {
  27523. name: "Macro",
  27524. height: math.unit(280, "feet")
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27530. {
  27531. goddess: {
  27532. height: math.unit(600, "feet"),
  27533. weight: math.unit(2000000, "tons"),
  27534. name: "Goddess",
  27535. image: {
  27536. source: "./media/characters/lady-kubwa/goddess.svg",
  27537. extra: 1240.5 / 1223,
  27538. bottom: 22 / 1263
  27539. }
  27540. },
  27541. goddesser: {
  27542. height: math.unit(900, "feet"),
  27543. weight: math.unit(20000000, "lb"),
  27544. name: "Goddess-er",
  27545. image: {
  27546. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27547. extra: 899 / 888,
  27548. bottom: 12.6 / 912
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Macro",
  27555. height: math.unit(600, "feet"),
  27556. default: true
  27557. },
  27558. {
  27559. name: "Megamacro",
  27560. height: math.unit(250, "miles")
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(7 + 7 / 12, "feet"),
  27569. weight: math.unit(250, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/tala-grovehorn/front.svg",
  27573. extra: 2636 / 2525,
  27574. bottom: 147 / 2781
  27575. }
  27576. },
  27577. back: {
  27578. height: math.unit(7 + 7 / 12, "feet"),
  27579. weight: math.unit(250, "lb"),
  27580. name: "Back",
  27581. image: {
  27582. source: "./media/characters/tala-grovehorn/back.svg",
  27583. extra: 2635 / 2539,
  27584. bottom: 100 / 2732.8
  27585. }
  27586. },
  27587. mouth: {
  27588. height: math.unit(1.15, "feet"),
  27589. name: "Mouth",
  27590. image: {
  27591. source: "./media/characters/tala-grovehorn/mouth.svg"
  27592. }
  27593. },
  27594. dick: {
  27595. height: math.unit(2.36, "feet"),
  27596. name: "Dick",
  27597. image: {
  27598. source: "./media/characters/tala-grovehorn/dick.svg"
  27599. }
  27600. },
  27601. slit: {
  27602. height: math.unit(0.61, "feet"),
  27603. name: "Slit",
  27604. image: {
  27605. source: "./media/characters/tala-grovehorn/slit.svg"
  27606. }
  27607. },
  27608. },
  27609. [
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(7 + 7 / 12, "feet"),
  27617. weight: math.unit(225, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/epona/front.svg",
  27621. extra: 2445 / 2290,
  27622. bottom: 251 / 2696
  27623. }
  27624. },
  27625. back: {
  27626. height: math.unit(7 + 7 / 12, "feet"),
  27627. weight: math.unit(225, "lb"),
  27628. name: "Back",
  27629. image: {
  27630. source: "./media/characters/epona/back.svg",
  27631. extra: 2546 / 2408,
  27632. bottom: 44 / 2589
  27633. }
  27634. },
  27635. genitals: {
  27636. height: math.unit(1.5, "feet"),
  27637. name: "Genitals",
  27638. image: {
  27639. source: "./media/characters/epona/genitals.svg"
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(7 + 7 / 12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(7, "feet"),
  27656. weight: math.unit(518, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/avia-bloodbourn/front.svg",
  27660. extra: 1466 / 1350,
  27661. bottom: 65 / 1527
  27662. }
  27663. },
  27664. },
  27665. [
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(9.35, "feet"),
  27673. weight: math.unit(600, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/amera/front.svg",
  27677. extra: 891 / 818,
  27678. bottom: 30 / 922.7
  27679. }
  27680. },
  27681. back: {
  27682. height: math.unit(9.35, "feet"),
  27683. weight: math.unit(600, "lb"),
  27684. name: "Back",
  27685. image: {
  27686. source: "./media/characters/amera/back.svg",
  27687. extra: 876 / 824,
  27688. bottom: 6.8 / 884
  27689. }
  27690. },
  27691. dick: {
  27692. height: math.unit(2.14, "feet"),
  27693. name: "Dick",
  27694. image: {
  27695. source: "./media/characters/amera/dick.svg"
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Normal",
  27702. height: math.unit(9.35, "feet"),
  27703. default: true
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27709. {
  27710. kneeling: {
  27711. height: math.unit(3 + 4 / 12, "feet"),
  27712. weight: math.unit(90, "lb"),
  27713. name: "Kneeling",
  27714. image: {
  27715. source: "./media/characters/rosewen/kneeling.svg",
  27716. extra: 1835 / 1571,
  27717. bottom: 27.7 / 1862
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(3 + 4 / 12, "feet"),
  27725. default: true
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(5 + 10 / 12, "feet"),
  27734. weight: math.unit(200, "lb"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/sabah/front.svg",
  27738. extra: 849 / 763,
  27739. bottom: 33.9 / 881
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Normal",
  27746. height: math.unit(5 + 10 / 12, "feet"),
  27747. default: true
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27753. {
  27754. front: {
  27755. height: math.unit(3 + 5 / 12, "feet"),
  27756. weight: math.unit(40, "kg"),
  27757. name: "Front",
  27758. image: {
  27759. source: "./media/characters/purple-flame/front.svg",
  27760. extra: 1577 / 1412,
  27761. bottom: 97 / 1694
  27762. }
  27763. },
  27764. frontDressed: {
  27765. height: math.unit(3 + 5 / 12, "feet"),
  27766. weight: math.unit(40, "kg"),
  27767. name: "Front (Dressed)",
  27768. image: {
  27769. source: "./media/characters/purple-flame/front-dressed.svg",
  27770. extra: 1577 / 1412,
  27771. bottom: 97 / 1694
  27772. }
  27773. },
  27774. headphones: {
  27775. height: math.unit(0.85, "feet"),
  27776. name: "Headphones",
  27777. image: {
  27778. source: "./media/characters/purple-flame/headphones.svg"
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Really Small",
  27785. height: math.unit(5, "cm")
  27786. },
  27787. {
  27788. name: "Micro",
  27789. height: math.unit(1 + 5 / 12, "feet")
  27790. },
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(3 + 5 / 12, "feet"),
  27794. default: true
  27795. },
  27796. {
  27797. name: "Minimacro",
  27798. height: math.unit(125, "feet")
  27799. },
  27800. {
  27801. name: "Macro",
  27802. height: math.unit(0.5, "miles")
  27803. },
  27804. {
  27805. name: "Megamacro",
  27806. height: math.unit(50, "miles")
  27807. },
  27808. {
  27809. name: "Gigantic",
  27810. height: math.unit(750, "miles")
  27811. },
  27812. {
  27813. name: "Planetary",
  27814. height: math.unit(15000, "miles")
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(14, "feet"),
  27823. weight: math.unit(959, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/arsenal/front.svg",
  27827. extra: 2357 / 2157,
  27828. bottom: 93 / 2458
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(14, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(6, "feet"),
  27845. weight: math.unit(150, "lb"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/adira/front.svg",
  27849. extra: 1078 / 1029,
  27850. bottom: 87 / 1166
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Micro",
  27857. height: math.unit(4, "inches"),
  27858. default: true
  27859. },
  27860. {
  27861. name: "Macro",
  27862. height: math.unit(50, "feet")
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(16, "feet"),
  27871. weight: math.unit(1000, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/grim/front.svg",
  27875. extra: 622 / 614,
  27876. bottom: 18.1 / 642
  27877. }
  27878. },
  27879. back: {
  27880. height: math.unit(16, "feet"),
  27881. weight: math.unit(1000, "lb"),
  27882. name: "Back",
  27883. image: {
  27884. source: "./media/characters/grim/back.svg",
  27885. extra: 610.6 / 602,
  27886. bottom: 40.8 / 652
  27887. }
  27888. },
  27889. hunched: {
  27890. height: math.unit(9.75, "feet"),
  27891. weight: math.unit(1000, "lb"),
  27892. name: "Hunched",
  27893. image: {
  27894. source: "./media/characters/grim/hunched.svg",
  27895. extra: 304 / 297,
  27896. bottom: 35.4 / 394
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(16, "feet"),
  27904. default: true
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(2.3, "meters"),
  27913. weight: math.unit(300, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/sinja/front-sfw.svg",
  27917. extra: 1393 / 1294,
  27918. bottom: 70 / 1463
  27919. }
  27920. },
  27921. frontNsfw: {
  27922. height: math.unit(2.3, "meters"),
  27923. weight: math.unit(300, "lb"),
  27924. name: "Front (NSFW)",
  27925. image: {
  27926. source: "./media/characters/sinja/front-nsfw.svg",
  27927. extra: 1393 / 1294,
  27928. bottom: 70 / 1463
  27929. }
  27930. },
  27931. back: {
  27932. height: math.unit(2.3, "meters"),
  27933. weight: math.unit(300, "lb"),
  27934. name: "Back",
  27935. image: {
  27936. source: "./media/characters/sinja/back.svg",
  27937. extra: 1393 / 1294,
  27938. bottom: 70 / 1463
  27939. }
  27940. },
  27941. head: {
  27942. height: math.unit(1.771, "feet"),
  27943. name: "Head",
  27944. image: {
  27945. source: "./media/characters/sinja/head.svg"
  27946. }
  27947. },
  27948. slit: {
  27949. height: math.unit(0.8, "feet"),
  27950. name: "Slit",
  27951. image: {
  27952. source: "./media/characters/sinja/slit.svg"
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(2.3, "meters")
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(91, "meters"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Megamacro",
  27968. height: math.unit(91440, "meters")
  27969. },
  27970. {
  27971. name: "Gigamacro",
  27972. height: math.unit(60960000, "meters")
  27973. },
  27974. {
  27975. name: "Teramacro",
  27976. height: math.unit(9144000000, "meters")
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(1.7, "meters"),
  27985. weight: math.unit(130, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/kyu/front.svg",
  27989. extra: 415 / 395,
  27990. bottom: 5 / 420
  27991. }
  27992. },
  27993. head: {
  27994. height: math.unit(1.75, "feet"),
  27995. name: "Head",
  27996. image: {
  27997. source: "./media/characters/kyu/head.svg"
  27998. }
  27999. },
  28000. foot: {
  28001. height: math.unit(0.81, "feet"),
  28002. name: "Foot",
  28003. image: {
  28004. source: "./media/characters/kyu/foot.svg"
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(1.7, "meters")
  28012. },
  28013. {
  28014. name: "Macro",
  28015. height: math.unit(131, "feet"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Megamacro",
  28020. height: math.unit(91440, "meters")
  28021. },
  28022. {
  28023. name: "Gigamacro",
  28024. height: math.unit(60960000, "meters")
  28025. },
  28026. {
  28027. name: "Teramacro",
  28028. height: math.unit(9144000000, "meters")
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(7 + 1 / 12, "feet"),
  28037. weight: math.unit(250, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/joey/front.svg",
  28041. extra: 1791 / 1537,
  28042. bottom: 28 / 1816
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Micro",
  28049. height: math.unit(3, "inches")
  28050. },
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(7 + 1 / 12, "feet"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(165, "cm"),
  28063. weight: math.unit(140, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/sam-evans/front.svg",
  28067. extra: 3417 / 3230,
  28068. bottom: 41.3 / 3417
  28069. }
  28070. },
  28071. frontSixTails: {
  28072. height: math.unit(165, "cm"),
  28073. weight: math.unit(140, "lb"),
  28074. name: "Front-six-tails",
  28075. image: {
  28076. source: "./media/characters/sam-evans/front-six-tails.svg",
  28077. extra: 3417 / 3230,
  28078. bottom: 41.3 / 3417
  28079. }
  28080. },
  28081. back: {
  28082. height: math.unit(165, "cm"),
  28083. weight: math.unit(140, "lb"),
  28084. name: "Back",
  28085. image: {
  28086. source: "./media/characters/sam-evans/back.svg",
  28087. extra: 3227 / 3032,
  28088. bottom: 6.8 / 3234
  28089. }
  28090. },
  28091. face: {
  28092. height: math.unit(0.68, "feet"),
  28093. name: "Face",
  28094. image: {
  28095. source: "./media/characters/sam-evans/face.svg"
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(165, "cm"),
  28103. default: true
  28104. },
  28105. {
  28106. name: "Macro",
  28107. height: math.unit(100, "meters")
  28108. },
  28109. {
  28110. name: "Macro+",
  28111. height: math.unit(800, "meters")
  28112. },
  28113. {
  28114. name: "Macro++",
  28115. height: math.unit(3, "km")
  28116. },
  28117. {
  28118. name: "Macro+++",
  28119. height: math.unit(30, "km")
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28125. {
  28126. front: {
  28127. height: math.unit(10, "feet"),
  28128. weight: math.unit(750, "lb"),
  28129. name: "Front",
  28130. image: {
  28131. source: "./media/characters/juliet-a/front.svg",
  28132. extra: 1766 / 1720,
  28133. bottom: 43 / 1809
  28134. }
  28135. },
  28136. back: {
  28137. height: math.unit(10, "feet"),
  28138. weight: math.unit(750, "lb"),
  28139. name: "Back",
  28140. image: {
  28141. source: "./media/characters/juliet-a/back.svg",
  28142. extra: 1781 / 1734,
  28143. bottom: 35 / 1810,
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(10, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Dragon Form",
  28155. height: math.unit(250, "feet")
  28156. },
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(1000, "feet")
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(10000, "feet")
  28164. }
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28169. {
  28170. regular: {
  28171. height: math.unit(7 + 3 / 12, "feet"),
  28172. weight: math.unit(260, "lb"),
  28173. name: "Regular",
  28174. image: {
  28175. source: "./media/characters/wild/regular.svg",
  28176. extra: 97.45 / 92,
  28177. bottom: 6.8 / 104.3
  28178. }
  28179. },
  28180. biggums: {
  28181. height: math.unit(8 + 6 / 12, "feet"),
  28182. weight: math.unit(425, "lb"),
  28183. name: "Biggums",
  28184. image: {
  28185. source: "./media/characters/wild/biggums.svg",
  28186. extra: 97.45 / 92,
  28187. bottom: 7.5 / 132.34
  28188. }
  28189. },
  28190. mawRegular: {
  28191. height: math.unit(1.24, "feet"),
  28192. name: "Maw (Regular)",
  28193. image: {
  28194. source: "./media/characters/wild/maw.svg"
  28195. }
  28196. },
  28197. mawBiggums: {
  28198. height: math.unit(1.47, "feet"),
  28199. name: "Maw (Biggums)",
  28200. image: {
  28201. source: "./media/characters/wild/maw.svg"
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(7 + 3 / 12, "feet"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28215. {
  28216. front: {
  28217. height: math.unit(2.5, "meters"),
  28218. weight: math.unit(200, "kg"),
  28219. name: "Front",
  28220. image: {
  28221. source: "./media/characters/vidar/front.svg",
  28222. extra: 2994 / 2795,
  28223. bottom: 56 / 3061
  28224. }
  28225. },
  28226. back: {
  28227. height: math.unit(2.5, "meters"),
  28228. weight: math.unit(200, "kg"),
  28229. name: "Back",
  28230. image: {
  28231. source: "./media/characters/vidar/back.svg",
  28232. extra: 3131 / 2928,
  28233. bottom: 13.5 / 3141.5
  28234. }
  28235. },
  28236. feral: {
  28237. height: math.unit(2.5, "meters"),
  28238. weight: math.unit(2000, "kg"),
  28239. name: "Feral",
  28240. image: {
  28241. source: "./media/characters/vidar/feral.svg",
  28242. extra: 2790 / 1765,
  28243. bottom: 6 / 2796
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(2.5, "meters"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Macro",
  28255. height: math.unit(100, "meters")
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(5 + 9 / 12, "feet"),
  28264. weight: math.unit(120, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/ash/front.svg",
  28268. extra: 2189 / 1961,
  28269. bottom: 5.2 / 2194
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Normal",
  28276. height: math.unit(5 + 9 / 12, "feet"),
  28277. default: true
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(9, "feet"),
  28286. weight: math.unit(10000, "lb"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/gygabite/front.svg",
  28290. bottom: 31.7 / 537.8,
  28291. extra: 505 / 370
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Normal",
  28298. height: math.unit(9, "feet"),
  28299. default: true
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(12, "feet"),
  28308. weight: math.unit(35000, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/p0tat0/front.svg",
  28312. extra: 1065 / 921,
  28313. bottom: 55.7 / 1121.25
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28327. {
  28328. side: {
  28329. height: math.unit(6.5, "feet"),
  28330. weight: math.unit(800, "lb"),
  28331. name: "Side",
  28332. image: {
  28333. source: "./media/characters/dusk/side.svg",
  28334. extra: 615 / 373,
  28335. bottom: 53 / 664
  28336. }
  28337. },
  28338. sitting: {
  28339. height: math.unit(7, "feet"),
  28340. weight: math.unit(800, "lb"),
  28341. name: "Sitting",
  28342. image: {
  28343. source: "./media/characters/dusk/sitting.svg",
  28344. extra: 753 / 425,
  28345. bottom: 33 / 774
  28346. }
  28347. },
  28348. head: {
  28349. height: math.unit(6.1, "feet"),
  28350. name: "Head",
  28351. image: {
  28352. source: "./media/characters/dusk/head.svg"
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(7, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(15, "feet"),
  28369. weight: math.unit(7000, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/jay-direwolf/front.svg",
  28373. extra: 1810 / 1732,
  28374. bottom: 66 / 1892
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(15, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(4 + 9 / 12, "feet"),
  28391. weight: math.unit(130, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/anchovie/front.svg",
  28395. extra: 382 / 350,
  28396. bottom: 25 / 409
  28397. }
  28398. },
  28399. back: {
  28400. height: math.unit(4 + 9 / 12, "feet"),
  28401. weight: math.unit(130, "lb"),
  28402. name: "Back",
  28403. image: {
  28404. source: "./media/characters/anchovie/back.svg",
  28405. extra: 385 / 352,
  28406. bottom: 16.6 / 402
  28407. }
  28408. },
  28409. frontDressed: {
  28410. height: math.unit(4 + 9 / 12, "feet"),
  28411. weight: math.unit(130, "lb"),
  28412. name: "Front (Dressed)",
  28413. image: {
  28414. source: "./media/characters/anchovie/front-dressed.svg",
  28415. extra: 382 / 350,
  28416. bottom: 25 / 409
  28417. }
  28418. },
  28419. backDressed: {
  28420. height: math.unit(4 + 9 / 12, "feet"),
  28421. weight: math.unit(130, "lb"),
  28422. name: "Back (Dressed)",
  28423. image: {
  28424. source: "./media/characters/anchovie/back-dressed.svg",
  28425. extra: 385 / 352,
  28426. bottom: 16.6 / 402
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Micro",
  28433. height: math.unit(6.4, "inches")
  28434. },
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(4 + 9 / 12, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(2, "meters"),
  28447. weight: math.unit(180, "lb"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/acidrenamon/front.svg",
  28451. extra: 987 / 890,
  28452. bottom: 22.8 / 1009
  28453. }
  28454. },
  28455. back: {
  28456. height: math.unit(2, "meters"),
  28457. weight: math.unit(180, "lb"),
  28458. name: "Back",
  28459. image: {
  28460. source: "./media/characters/acidrenamon/back.svg",
  28461. extra: 983 / 891,
  28462. bottom: 8.4 / 992
  28463. }
  28464. },
  28465. head: {
  28466. height: math.unit(1.92, "feet"),
  28467. name: "Head",
  28468. image: {
  28469. source: "./media/characters/acidrenamon/head.svg"
  28470. }
  28471. },
  28472. rump: {
  28473. height: math.unit(1.72, "feet"),
  28474. name: "Rump",
  28475. image: {
  28476. source: "./media/characters/acidrenamon/rump.svg"
  28477. }
  28478. },
  28479. tail: {
  28480. height: math.unit(4.2, "feet"),
  28481. name: "Tail",
  28482. image: {
  28483. source: "./media/characters/acidrenamon/tail.svg"
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(2, "meters"),
  28491. default: true
  28492. },
  28493. {
  28494. name: "Minimacro",
  28495. height: math.unit(7, "meters")
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(200, "meters")
  28500. },
  28501. {
  28502. name: "Gigamacro",
  28503. height: math.unit(0.2, "earths")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(152, "feet"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/kenzie-lee/front.svg",
  28515. extra: 1869/1774,
  28516. bottom: 128/1997
  28517. }
  28518. },
  28519. side: {
  28520. height: math.unit(86, "feet"),
  28521. name: "Side",
  28522. image: {
  28523. source: "./media/characters/kenzie-lee/side.svg",
  28524. extra: 930/815,
  28525. bottom: 177/1107
  28526. }
  28527. },
  28528. paw: {
  28529. height: math.unit(15, "feet"),
  28530. name: "Paw",
  28531. image: {
  28532. source: "./media/characters/kenzie-lee/paw.svg"
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Kenzie Flea",
  28539. height: math.unit(2, "mm"),
  28540. default: true
  28541. },
  28542. {
  28543. name: "Micro",
  28544. height: math.unit(2, "inches")
  28545. },
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(152, "feet")
  28549. },
  28550. {
  28551. name: "Megamacro",
  28552. height: math.unit(7, "miles")
  28553. },
  28554. {
  28555. name: "Gigamacro",
  28556. height: math.unit(8000, "miles")
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(6, "feet"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/withers/front.svg",
  28568. extra: 1935/1760,
  28569. bottom: 72/2007
  28570. }
  28571. },
  28572. back: {
  28573. height: math.unit(6, "feet"),
  28574. name: "Back",
  28575. image: {
  28576. source: "./media/characters/withers/back.svg",
  28577. extra: 1944/1792,
  28578. bottom: 12/1956
  28579. }
  28580. },
  28581. dressed: {
  28582. height: math.unit(6, "feet"),
  28583. name: "Dressed",
  28584. image: {
  28585. source: "./media/characters/withers/dressed.svg",
  28586. extra: 1937/1765,
  28587. bottom: 73/2010
  28588. }
  28589. },
  28590. phase1: {
  28591. height: math.unit(1.1, "feet"),
  28592. name: "Phase 1",
  28593. image: {
  28594. source: "./media/characters/withers/phase-1.svg",
  28595. extra: 1885/1232,
  28596. bottom: 0/1885
  28597. }
  28598. },
  28599. phase2: {
  28600. height: math.unit(1.05, "feet"),
  28601. name: "Phase 2",
  28602. image: {
  28603. source: "./media/characters/withers/phase-2.svg",
  28604. extra: 1792/1090,
  28605. bottom: 0/1792
  28606. }
  28607. },
  28608. partyWipe: {
  28609. height: math.unit(1.1, "feet"),
  28610. name: "Party Wipe",
  28611. image: {
  28612. source: "./media/characters/withers/party-wipe.svg",
  28613. extra: 1864/1207,
  28614. bottom: 0/1864
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Macro",
  28621. height: math.unit(167, "feet"),
  28622. default: true
  28623. },
  28624. {
  28625. name: "Megamacro",
  28626. height: math.unit(15, "miles")
  28627. }
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(6 + 7 / 12, "feet"),
  28635. weight: math.unit(250, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/nemoskii/front.svg",
  28639. extra: 2270 / 1734,
  28640. bottom: 86 / 2354
  28641. }
  28642. },
  28643. back: {
  28644. height: math.unit(6 + 7 / 12, "feet"),
  28645. weight: math.unit(250, "lb"),
  28646. name: "Back",
  28647. image: {
  28648. source: "./media/characters/nemoskii/back.svg",
  28649. extra: 1845 / 1788,
  28650. bottom: 10.5 / 1852
  28651. }
  28652. },
  28653. head: {
  28654. height: math.unit(1.31, "feet"),
  28655. name: "Head",
  28656. image: {
  28657. source: "./media/characters/nemoskii/head.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Micro",
  28664. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28665. },
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(6 + 7 / 12, "feet"),
  28669. default: true
  28670. },
  28671. {
  28672. name: "Macro",
  28673. height: math.unit((6 + 7 / 12) * 150, "feet")
  28674. },
  28675. {
  28676. name: "Macro+",
  28677. height: math.unit((6 + 7 / 12) * 500, "feet")
  28678. },
  28679. {
  28680. name: "Megamacro",
  28681. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(1, "mile"),
  28690. weight: math.unit(265261.9, "lb"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/shui/front.svg",
  28694. extra: 1633 / 1564,
  28695. bottom: 91.5 / 1726
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Macro",
  28702. height: math.unit(1, "mile"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(12 + 6 / 12, "feet"),
  28712. weight: math.unit(1342, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/arokh-takakura/front.svg",
  28716. extra: 1089 / 1043,
  28717. bottom: 77.4 / 1176.7
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(12 + 6 / 12, "feet"),
  28722. weight: math.unit(1342, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/arokh-takakura/back.svg",
  28726. extra: 1046 / 1019,
  28727. bottom: 102 / 1150
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Big",
  28734. height: math.unit(12 + 6 / 12, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(5 + 6 / 12, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/theo/front.svg",
  28748. extra: 1184 / 1131,
  28749. bottom: 7.4 / 1191
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Micro",
  28756. height: math.unit(5, "inches")
  28757. },
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(5 + 6 / 12, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(5 + 9 / 12, "feet"),
  28770. weight: math.unit(130, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/cecelia-swift/front.svg",
  28774. extra: 502 / 484,
  28775. bottom: 23 / 523
  28776. }
  28777. },
  28778. back: {
  28779. height: math.unit(5 + 9 / 12, "feet"),
  28780. weight: math.unit(130, "lb"),
  28781. name: "Back",
  28782. image: {
  28783. source: "./media/characters/cecelia-swift/back.svg",
  28784. extra: 499 / 485,
  28785. bottom: 12 / 511
  28786. }
  28787. },
  28788. head: {
  28789. height: math.unit(0.90, "feet"),
  28790. name: "Head",
  28791. image: {
  28792. source: "./media/characters/cecelia-swift/head.svg"
  28793. }
  28794. },
  28795. rump: {
  28796. height: math.unit(1.75, "feet"),
  28797. name: "Rump",
  28798. image: {
  28799. source: "./media/characters/cecelia-swift/rump.svg"
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(5 + 9 / 12, "feet"),
  28807. default: true
  28808. },
  28809. {
  28810. name: "Big",
  28811. height: math.unit(50, "feet")
  28812. },
  28813. {
  28814. name: "Macro",
  28815. height: math.unit(100, "feet")
  28816. },
  28817. {
  28818. name: "Macro+",
  28819. height: math.unit(500, "feet")
  28820. },
  28821. {
  28822. name: "Macro++",
  28823. height: math.unit(1000, "feet")
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28829. {
  28830. front: {
  28831. height: math.unit(6, "feet"),
  28832. weight: math.unit(150, "lb"),
  28833. name: "Front",
  28834. image: {
  28835. source: "./media/characters/kaunan/front.svg",
  28836. extra: 2890 / 2523,
  28837. bottom: 49 / 2939
  28838. }
  28839. },
  28840. },
  28841. [
  28842. {
  28843. name: "Macro",
  28844. height: math.unit(150, "feet"),
  28845. default: true
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28851. {
  28852. front: {
  28853. height: math.unit(175, "cm"),
  28854. weight: math.unit(60, "kg"),
  28855. name: "Front",
  28856. image: {
  28857. source: "./media/characters/fei/front.svg",
  28858. extra: 1873/1723,
  28859. bottom: 53/1926
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Mortal",
  28866. height: math.unit(175, "cm")
  28867. },
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(3500, "m"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Stroll",
  28875. height: math.unit(17.5, "km")
  28876. },
  28877. {
  28878. name: "Showoff",
  28879. height: math.unit(175, "km")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(7, "feet"),
  28888. weight: math.unit(1000, "kg"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/edrax/front.svg",
  28892. extra: 2838 / 2550,
  28893. bottom: 130 / 2968
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Small",
  28900. height: math.unit(7, "feet")
  28901. },
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(1500, "meters")
  28905. },
  28906. {
  28907. name: "Mega",
  28908. height: math.unit(12000000, "km"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Megamacro",
  28913. height: math.unit(10600000, "lightyears")
  28914. },
  28915. {
  28916. name: "Hypermacro",
  28917. height: math.unit(256, "yottameters")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(10, "feet"),
  28926. weight: math.unit(750, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/clove/front.svg",
  28930. extra: 1918/1751,
  28931. bottom: 52/1970
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(10, "feet"),
  28936. weight: math.unit(750, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/clove/back.svg",
  28940. extra: 1912/1747,
  28941. bottom: 50/1962
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(10, "feet"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(4, "feet"),
  28958. weight: math.unit(50, "lb"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/alex-rabbit/front.svg",
  28962. extra: 507 / 458,
  28963. bottom: 18.5 / 527
  28964. }
  28965. },
  28966. back: {
  28967. height: math.unit(4, "feet"),
  28968. weight: math.unit(50, "lb"),
  28969. name: "Back",
  28970. image: {
  28971. source: "./media/characters/alex-rabbit/back.svg",
  28972. extra: 502 / 460,
  28973. bottom: 18.9 / 521
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(4, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(1 + 3 / 12, "feet"),
  28990. weight: math.unit(80, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/zander-rose/front.svg",
  28994. extra: 916 / 797,
  28995. bottom: 17 / 933
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(1 + 3 / 12, "feet"),
  29000. weight: math.unit(80, "lb"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/zander-rose/back.svg",
  29004. extra: 903 / 779,
  29005. bottom: 31 / 934
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(1 + 3 / 12, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29019. {
  29020. anthro: {
  29021. height: math.unit(6, "feet"),
  29022. weight: math.unit(150, "lb"),
  29023. name: "Anthro",
  29024. image: {
  29025. source: "./media/characters/razz/anthro.svg",
  29026. extra: 1437 / 1343,
  29027. bottom: 48 / 1485
  29028. }
  29029. },
  29030. feral: {
  29031. height: math.unit(6, "feet"),
  29032. weight: math.unit(150, "lb"),
  29033. name: "Feral",
  29034. image: {
  29035. source: "./media/characters/razz/feral.svg",
  29036. extra: 2569 / 1385,
  29037. bottom: 95 / 2664
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Normal",
  29044. height: math.unit(6, "feet"),
  29045. default: true
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29051. {
  29052. front: {
  29053. height: math.unit(9 + 4 / 12, "feet"),
  29054. weight: math.unit(500, "lb"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/morrigan/front.svg",
  29058. extra: 2707 / 2579,
  29059. bottom: 156 / 2863
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(9 + 4 / 12, "feet"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(5, "stories"),
  29076. weight: math.unit(4000, "lb"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/jenene/front.svg",
  29080. extra: 1780 / 1710,
  29081. bottom: 57 / 1837
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(5, "stories"),
  29089. default: true
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29095. {
  29096. taurSfw: {
  29097. height: math.unit(10, "meters"),
  29098. weight: math.unit(17500, "kg"),
  29099. name: "Taur",
  29100. image: {
  29101. source: "./media/characters/faey/taur-sfw.svg",
  29102. extra: 1200 / 968,
  29103. bottom: 41 / 1241
  29104. }
  29105. },
  29106. chestmaw: {
  29107. height: math.unit(2.01, "meters"),
  29108. name: "Chestmaw",
  29109. image: {
  29110. source: "./media/characters/faey/chestmaw.svg"
  29111. }
  29112. },
  29113. foot: {
  29114. height: math.unit(2.43, "meters"),
  29115. name: "Foot",
  29116. image: {
  29117. source: "./media/characters/faey/foot.svg"
  29118. }
  29119. },
  29120. jaws: {
  29121. height: math.unit(1.66, "meters"),
  29122. name: "Jaws",
  29123. image: {
  29124. source: "./media/characters/faey/jaws.svg"
  29125. }
  29126. },
  29127. tongues: {
  29128. height: math.unit(2.01, "meters"),
  29129. name: "Tongues",
  29130. image: {
  29131. source: "./media/characters/faey/tongues.svg"
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Small",
  29138. height: math.unit(10, "meters"),
  29139. default: true
  29140. },
  29141. {
  29142. name: "Big",
  29143. height: math.unit(500000, "km")
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(7, "feet"),
  29152. weight: math.unit(275, "lb"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/roku/front.svg",
  29156. extra: 903 / 878,
  29157. bottom: 37 / 940
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(7, "feet"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "Macro",
  29169. height: math.unit(500, "feet")
  29170. },
  29171. {
  29172. name: "Megamacro",
  29173. height: math.unit(200, "miles")
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(6 + 2 / 12, "feet"),
  29182. weight: math.unit(150, "lb"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/lira/front.svg",
  29186. extra: 1727 / 1605,
  29187. bottom: 26 / 1753
  29188. }
  29189. },
  29190. back: {
  29191. height: math.unit(6 + 2 / 12, "feet"),
  29192. weight: math.unit(150, "lb"),
  29193. name: "Back",
  29194. image: {
  29195. source: "./media/characters/lira/back.svg",
  29196. extra: 1713/1621,
  29197. bottom: 20/1733
  29198. }
  29199. },
  29200. hand: {
  29201. height: math.unit(0.75, "feet"),
  29202. name: "Hand",
  29203. image: {
  29204. source: "./media/characters/lira/hand.svg"
  29205. }
  29206. },
  29207. maw: {
  29208. height: math.unit(0.65, "feet"),
  29209. name: "Maw",
  29210. image: {
  29211. source: "./media/characters/lira/maw.svg"
  29212. }
  29213. },
  29214. pawDigi: {
  29215. height: math.unit(1.6, "feet"),
  29216. name: "Paw Digi",
  29217. image: {
  29218. source: "./media/characters/lira/paw-digi.svg"
  29219. }
  29220. },
  29221. pawPlanti: {
  29222. height: math.unit(1.4, "feet"),
  29223. name: "Paw Planti",
  29224. image: {
  29225. source: "./media/characters/lira/paw-planti.svg"
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(6 + 2 / 12, "feet"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(100, "feet")
  29238. },
  29239. {
  29240. name: "Macro²",
  29241. height: math.unit(1600, "feet")
  29242. },
  29243. {
  29244. name: "Planetary",
  29245. height: math.unit(20, "earths")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(6, "feet"),
  29254. weight: math.unit(150, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/hadjet/front.svg",
  29258. extra: 1480 / 1346,
  29259. bottom: 26 / 1506
  29260. }
  29261. },
  29262. frontNsfw: {
  29263. height: math.unit(6, "feet"),
  29264. weight: math.unit(150, "lb"),
  29265. name: "Front (NSFW)",
  29266. image: {
  29267. source: "./media/characters/hadjet/front-nsfw.svg",
  29268. extra: 1440 / 1358,
  29269. bottom: 52 / 1492
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Macro",
  29276. height: math.unit(10, "stories"),
  29277. default: true
  29278. },
  29279. {
  29280. name: "Megamacro",
  29281. height: math.unit(1.5, "miles")
  29282. },
  29283. {
  29284. name: "Megamacro+",
  29285. height: math.unit(5, "miles")
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29291. {
  29292. side: {
  29293. height: math.unit(106, "feet"),
  29294. weight: math.unit(500, "tonnes"),
  29295. name: "Side",
  29296. image: {
  29297. source: "./media/characters/kodran/side.svg",
  29298. extra: 553 / 480,
  29299. bottom: 33 / 586
  29300. }
  29301. },
  29302. front: {
  29303. height: math.unit(132, "feet"),
  29304. weight: math.unit(500, "tonnes"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/kodran/front.svg",
  29308. extra: 667 / 643,
  29309. bottom: 42 / 709
  29310. }
  29311. },
  29312. flying: {
  29313. height: math.unit(350, "feet"),
  29314. weight: math.unit(500, "tonnes"),
  29315. name: "Flying",
  29316. image: {
  29317. source: "./media/characters/kodran/flying.svg"
  29318. }
  29319. },
  29320. foot: {
  29321. height: math.unit(33, "feet"),
  29322. name: "Foot",
  29323. image: {
  29324. source: "./media/characters/kodran/foot.svg"
  29325. }
  29326. },
  29327. footFront: {
  29328. height: math.unit(19, "feet"),
  29329. name: "Foot (Front)",
  29330. image: {
  29331. source: "./media/characters/kodran/foot-front.svg",
  29332. extra: 261 / 261,
  29333. bottom: 91 / 352
  29334. }
  29335. },
  29336. headFront: {
  29337. height: math.unit(53, "feet"),
  29338. name: "Head (Front)",
  29339. image: {
  29340. source: "./media/characters/kodran/head-front.svg"
  29341. }
  29342. },
  29343. headSide: {
  29344. height: math.unit(65, "feet"),
  29345. name: "Head (Side)",
  29346. image: {
  29347. source: "./media/characters/kodran/head-side.svg"
  29348. }
  29349. },
  29350. throat: {
  29351. height: math.unit(79, "feet"),
  29352. name: "Throat",
  29353. image: {
  29354. source: "./media/characters/kodran/throat.svg"
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Large",
  29361. height: math.unit(106, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29368. {
  29369. side: {
  29370. height: math.unit(11, "feet"),
  29371. weight: math.unit(150, "lb"),
  29372. name: "Side",
  29373. image: {
  29374. source: "./media/characters/pyxaron/side.svg",
  29375. extra: 305 / 195,
  29376. bottom: 17 / 322
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Normal",
  29383. height: math.unit(11, "feet"),
  29384. default: true
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29390. {
  29391. front: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(150, "lb"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/meep/front.svg",
  29397. extra: 88 / 80,
  29398. bottom: 6 / 94
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Fun Sized",
  29405. height: math.unit(2, "inches"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Friend Sized",
  29410. height: math.unit(8, "inches")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(15, "feet"),
  29419. weight: math.unit(2500, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/holly-rabbit/front.svg",
  29423. extra: 1433 / 1233,
  29424. bottom: 125 / 1558
  29425. }
  29426. },
  29427. dick: {
  29428. height: math.unit(4.6, "feet"),
  29429. name: "Dick",
  29430. image: {
  29431. source: "./media/characters/holly-rabbit/dick.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(15, "feet"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Macro",
  29443. height: math.unit(250, "feet")
  29444. },
  29445. {
  29446. name: "Macro+",
  29447. height: math.unit(2500, "feet")
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29453. {
  29454. front: {
  29455. height: math.unit(3.02, "meters"),
  29456. weight: math.unit(500, "kg"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/drena/front.svg",
  29460. extra: 282 / 243,
  29461. bottom: 8 / 290
  29462. }
  29463. },
  29464. side: {
  29465. height: math.unit(3.02, "meters"),
  29466. weight: math.unit(500, "kg"),
  29467. name: "Side",
  29468. image: {
  29469. source: "./media/characters/drena/side.svg",
  29470. extra: 280 / 245,
  29471. bottom: 10 / 290
  29472. }
  29473. },
  29474. back: {
  29475. height: math.unit(3.02, "meters"),
  29476. weight: math.unit(500, "kg"),
  29477. name: "Back",
  29478. image: {
  29479. source: "./media/characters/drena/back.svg",
  29480. extra: 278 / 243,
  29481. bottom: 2 / 280
  29482. }
  29483. },
  29484. foot: {
  29485. height: math.unit(0.75, "meters"),
  29486. name: "Foot",
  29487. image: {
  29488. source: "./media/characters/drena/foot.svg"
  29489. }
  29490. },
  29491. maw: {
  29492. height: math.unit(0.82, "meters"),
  29493. name: "Maw",
  29494. image: {
  29495. source: "./media/characters/drena/maw.svg"
  29496. }
  29497. },
  29498. eating: {
  29499. height: math.unit(0.75, "meters"),
  29500. name: "Eating",
  29501. image: {
  29502. source: "./media/characters/drena/eating.svg"
  29503. }
  29504. },
  29505. rump: {
  29506. height: math.unit(0.93, "meters"),
  29507. name: "Rump",
  29508. image: {
  29509. source: "./media/characters/drena/rump.svg"
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Normal",
  29516. height: math.unit(3.02, "meters"),
  29517. default: true
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(6 + 4 / 12, "feet"),
  29526. weight: math.unit(250, "lb"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/remmyzilla/front.svg",
  29530. extra: 4033 / 3588,
  29531. bottom: 123 / 4156
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(6 + 4 / 12, "feet"),
  29536. weight: math.unit(250, "lb"),
  29537. name: "Back",
  29538. image: {
  29539. source: "./media/characters/remmyzilla/back.svg",
  29540. extra: 2687 / 2555,
  29541. bottom: 48 / 2735
  29542. }
  29543. },
  29544. paw: {
  29545. height: math.unit(1.73, "feet"),
  29546. name: "Paw",
  29547. image: {
  29548. source: "./media/characters/remmyzilla/paw.svg"
  29549. }
  29550. },
  29551. maw: {
  29552. height: math.unit(1.73, "feet"),
  29553. name: "Maw",
  29554. image: {
  29555. source: "./media/characters/remmyzilla/maw.svg"
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(6 + 4 / 12, "feet")
  29563. },
  29564. {
  29565. name: "Minimacro",
  29566. height: math.unit(12 + 8 / 12, "feet")
  29567. },
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(640, "feet"),
  29571. default: true
  29572. },
  29573. {
  29574. name: "Megamacro",
  29575. height: math.unit(6400, "feet")
  29576. },
  29577. {
  29578. name: "Gigamacro",
  29579. height: math.unit(64000, "miles")
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(2.5, "meters"),
  29588. weight: math.unit(300, "lb"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/lawrence/front.svg",
  29592. extra: 357 / 335,
  29593. bottom: 30 / 387
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(2.5, "meters"),
  29598. weight: math.unit(300, "lb"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/lawrence/back.svg",
  29602. extra: 357 / 338,
  29603. bottom: 16 / 373
  29604. }
  29605. },
  29606. head: {
  29607. height: math.unit(0.9, "meter"),
  29608. name: "Head",
  29609. image: {
  29610. source: "./media/characters/lawrence/head.svg"
  29611. }
  29612. },
  29613. maw: {
  29614. height: math.unit(0.7, "meter"),
  29615. name: "Maw",
  29616. image: {
  29617. source: "./media/characters/lawrence/maw.svg"
  29618. }
  29619. },
  29620. footBottom: {
  29621. height: math.unit(0.5, "meter"),
  29622. name: "Foot (Bottom)",
  29623. image: {
  29624. source: "./media/characters/lawrence/foot-bottom.svg"
  29625. }
  29626. },
  29627. footTop: {
  29628. height: math.unit(0.5, "meter"),
  29629. name: "Foot (Top)",
  29630. image: {
  29631. source: "./media/characters/lawrence/foot-top.svg"
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(2.5, "meters"),
  29639. default: true
  29640. },
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(95, "meters")
  29644. },
  29645. {
  29646. name: "Megamacro",
  29647. height: math.unit(150, "km")
  29648. },
  29649. ]
  29650. ))
  29651. characterMakers.push(() => makeCharacter(
  29652. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29653. {
  29654. front: {
  29655. height: math.unit(4.2, "meters"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/sydney/front.svg",
  29659. extra: 1323 / 1277,
  29660. bottom: 111 / 1434
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(4.2, "meters"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29674. {
  29675. back: {
  29676. height: math.unit(201, "feet"),
  29677. name: "Back",
  29678. image: {
  29679. source: "./media/characters/jessica/back.svg",
  29680. extra: 273 / 259,
  29681. bottom: 7 / 280
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(201, "feet"),
  29689. default: true
  29690. },
  29691. {
  29692. name: "Megamacro",
  29693. height: math.unit(8, "miles")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29699. {
  29700. side: {
  29701. height: math.unit(5.6, "m"),
  29702. weight: math.unit(8000, "kg"),
  29703. name: "Side",
  29704. image: {
  29705. source: "./media/characters/victoria/side.svg",
  29706. extra: 1542/1229,
  29707. bottom: 124/1666
  29708. }
  29709. },
  29710. maw: {
  29711. height: math.unit(7.14, "feet"),
  29712. name: "Maw",
  29713. image: {
  29714. source: "./media/characters/victoria/maw.svg"
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(5.6, "m"),
  29722. default: true
  29723. },
  29724. ]
  29725. ))
  29726. characterMakers.push(() => makeCharacter(
  29727. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29728. {
  29729. front: {
  29730. height: math.unit(5 + 6 / 12, "feet"),
  29731. name: "Front",
  29732. image: {
  29733. source: "./media/characters/cat/front.svg",
  29734. extra: 1449/1295,
  29735. bottom: 34/1483
  29736. },
  29737. form: "cat",
  29738. default: true
  29739. },
  29740. back: {
  29741. height: math.unit(5 + 6 / 12, "feet"),
  29742. name: "Back",
  29743. image: {
  29744. source: "./media/characters/cat/back.svg",
  29745. extra: 1466/1301,
  29746. bottom: 19/1485
  29747. },
  29748. form: "cat"
  29749. },
  29750. taur: {
  29751. height: math.unit(7, "feet"),
  29752. name: "Taur",
  29753. image: {
  29754. source: "./media/characters/cat/taur.svg",
  29755. extra: 1389/1233,
  29756. bottom: 83/1472
  29757. },
  29758. form: "taur",
  29759. default: true
  29760. },
  29761. lucarioFront: {
  29762. height: math.unit(4, "feet"),
  29763. name: "Lucario (Front)",
  29764. image: {
  29765. source: "./media/characters/cat/lucario-front.svg",
  29766. extra: 1149/1019,
  29767. bottom: 84/1233
  29768. },
  29769. form: "lucario",
  29770. default: true
  29771. },
  29772. lucarioBack: {
  29773. height: math.unit(4, "feet"),
  29774. name: "Lucario (Back)",
  29775. image: {
  29776. source: "./media/characters/cat/lucario-back.svg",
  29777. extra: 1190/1059,
  29778. bottom: 33/1223
  29779. },
  29780. form: "lucario"
  29781. },
  29782. megaLucario: {
  29783. height: math.unit(4, "feet"),
  29784. name: "Mega Lucario",
  29785. image: {
  29786. source: "./media/characters/cat/mega-lucario.svg",
  29787. extra: 1515 / 1319,
  29788. bottom: 63 / 1578
  29789. },
  29790. form: "lucario"
  29791. },
  29792. nickit: {
  29793. height: math.unit(2, "feet"),
  29794. name: "Nickit",
  29795. image: {
  29796. source: "./media/characters/cat/nickit.svg",
  29797. extra: 1980 / 1585,
  29798. bottom: 102 / 2082
  29799. },
  29800. form: "nickit",
  29801. default: true
  29802. },
  29803. lopunnyFront: {
  29804. height: math.unit(5, "feet"),
  29805. name: "Lopunny (Front)",
  29806. image: {
  29807. source: "./media/characters/cat/lopunny-front.svg",
  29808. extra: 1782 / 1469,
  29809. bottom: 38 / 1820
  29810. },
  29811. form: "lopunny",
  29812. default: true
  29813. },
  29814. lopunnyBack: {
  29815. height: math.unit(5, "feet"),
  29816. name: "Lopunny (Back)",
  29817. image: {
  29818. source: "./media/characters/cat/lopunny-back.svg",
  29819. extra: 1660 / 1490,
  29820. bottom: 25 / 1685
  29821. },
  29822. form: "lopunny"
  29823. },
  29824. },
  29825. [
  29826. {
  29827. name: "Really small",
  29828. height: math.unit(1, "nm")
  29829. },
  29830. {
  29831. name: "Micro",
  29832. height: math.unit(5, "inches")
  29833. },
  29834. {
  29835. name: "Normal",
  29836. height: math.unit(5 + 6 / 12, "feet"),
  29837. default: true
  29838. },
  29839. {
  29840. name: "Macro",
  29841. height: math.unit(50, "feet")
  29842. },
  29843. {
  29844. name: "Macro+",
  29845. height: math.unit(150, "feet")
  29846. },
  29847. {
  29848. name: "Megamacro",
  29849. height: math.unit(100, "miles")
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(63.4, "meters"),
  29858. weight: math.unit(3.28349e+6, "kilograms"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/kirina-violet/front.svg",
  29862. extra: 2812 / 2725,
  29863. bottom: 0 / 2812
  29864. }
  29865. },
  29866. back: {
  29867. height: math.unit(63.4, "meters"),
  29868. weight: math.unit(3.28349e+6, "kilograms"),
  29869. name: "Back",
  29870. image: {
  29871. source: "./media/characters/kirina-violet/back.svg",
  29872. extra: 2812 / 2725,
  29873. bottom: 0 / 2812
  29874. }
  29875. },
  29876. mouth: {
  29877. height: math.unit(4.35, "meters"),
  29878. name: "Mouth",
  29879. image: {
  29880. source: "./media/characters/kirina-violet/mouth.svg"
  29881. }
  29882. },
  29883. paw: {
  29884. height: math.unit(5.6, "meters"),
  29885. name: "Paw",
  29886. image: {
  29887. source: "./media/characters/kirina-violet/paw.svg"
  29888. }
  29889. },
  29890. tail: {
  29891. height: math.unit(18, "meters"),
  29892. name: "Tail",
  29893. image: {
  29894. source: "./media/characters/kirina-violet/tail.svg"
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Macro",
  29901. height: math.unit(63.4, "meters"),
  29902. default: true
  29903. },
  29904. ]
  29905. ))
  29906. characterMakers.push(() => makeCharacter(
  29907. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29908. {
  29909. front: {
  29910. height: math.unit(75, "feet"),
  29911. name: "Front",
  29912. image: {
  29913. source: "./media/characters/cat-gigachu/front.svg",
  29914. extra: 1239/1027,
  29915. bottom: 32/1271
  29916. }
  29917. },
  29918. back: {
  29919. height: math.unit(75, "feet"),
  29920. name: "Back",
  29921. image: {
  29922. source: "./media/characters/cat-gigachu/back.svg",
  29923. extra: 1229/1030,
  29924. bottom: 9/1238
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Dynamax",
  29931. height: math.unit(75, "feet"),
  29932. default: true
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(6, "feet"),
  29941. weight: math.unit(150, "lb"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/sfaiyan/front.svg",
  29945. extra: 999 / 978,
  29946. bottom: 5 / 1004
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(1.82, "meters")
  29954. },
  29955. {
  29956. name: "Giant",
  29957. height: math.unit(2.27, "km"),
  29958. default: true
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(179, "cm"),
  29967. weight: math.unit(100, "kg"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/raunehkeli/front.svg",
  29971. extra: 1934 / 1926,
  29972. bottom: 0 / 1934
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(179, "cm")
  29980. },
  29981. {
  29982. name: "Maximum",
  29983. height: math.unit(575, "meters"),
  29984. default: true
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6, "feet"),
  29993. weight: math.unit(150, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29997. extra: 2625 / 2518,
  29998. bottom: 60 / 2685
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(6 + 2 / 12, "feet")
  30006. },
  30007. {
  30008. name: "Macro",
  30009. height: math.unit(1180, "feet"),
  30010. default: true
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30016. {
  30017. front: {
  30018. height: math.unit(5 + 6 / 12, "feet"),
  30019. weight: math.unit(108, "lb"),
  30020. name: "Front",
  30021. image: {
  30022. source: "./media/characters/lilith-zott/front.svg",
  30023. extra: 2510 / 2238,
  30024. bottom: 100 / 2610
  30025. }
  30026. },
  30027. frontDressed: {
  30028. height: math.unit(5 + 6 / 12, "feet"),
  30029. weight: math.unit(108, "lb"),
  30030. name: "Front (Dressed)",
  30031. image: {
  30032. source: "./media/characters/lilith-zott/front-dressed.svg",
  30033. extra: 2510 / 2238,
  30034. bottom: 100 / 2610
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(5 + 6 / 12, "feet")
  30042. },
  30043. {
  30044. name: "Macro",
  30045. height: math.unit(1030, "feet"),
  30046. default: true
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30052. {
  30053. front: {
  30054. height: math.unit(6, "feet"),
  30055. weight: math.unit(150, "lb"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30059. extra: 2567 / 2435,
  30060. bottom: 39 / 2606
  30061. }
  30062. },
  30063. frontSuper: {
  30064. height: math.unit(6, "feet"),
  30065. name: "Front (Super)",
  30066. image: {
  30067. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30068. extra: 2567 / 2435,
  30069. bottom: 39 / 2606
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(5 + 10 / 12, "feet")
  30077. },
  30078. {
  30079. name: "Macro",
  30080. height: math.unit(1100, "feet"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(100, "miles"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/sona/front.svg",
  30093. extra: 2433 / 2201,
  30094. bottom: 53 / 2486
  30095. }
  30096. },
  30097. foot: {
  30098. height: math.unit(16.1, "miles"),
  30099. name: "Foot",
  30100. image: {
  30101. source: "./media/characters/sona/foot.svg"
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Macro",
  30108. height: math.unit(100, "miles"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(6, "feet"),
  30118. weight: math.unit(150, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/bailey/front.svg",
  30122. extra: 1778 / 1724,
  30123. bottom: 30 / 1808
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Micro",
  30130. height: math.unit(4, "inches")
  30131. },
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(5 + 5 / 12, "feet"),
  30135. default: true
  30136. },
  30137. {
  30138. name: "Macro",
  30139. height: math.unit(250, "feet")
  30140. },
  30141. {
  30142. name: "Megamacro",
  30143. height: math.unit(100, "miles")
  30144. },
  30145. ]
  30146. ))
  30147. characterMakers.push(() => makeCharacter(
  30148. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30149. {
  30150. front: {
  30151. height: math.unit(5 + 2 / 12, "feet"),
  30152. weight: math.unit(120, "lb"),
  30153. name: "Front",
  30154. image: {
  30155. source: "./media/characters/snaps/front.svg",
  30156. extra: 2370 / 2177,
  30157. bottom: 48 / 2418
  30158. }
  30159. },
  30160. back: {
  30161. height: math.unit(5 + 2 / 12, "feet"),
  30162. weight: math.unit(120, "lb"),
  30163. name: "Back",
  30164. image: {
  30165. source: "./media/characters/snaps/back.svg",
  30166. extra: 2408 / 2258,
  30167. bottom: 15 / 2423
  30168. }
  30169. },
  30170. },
  30171. [
  30172. {
  30173. name: "Micro",
  30174. height: math.unit(9, "inches")
  30175. },
  30176. {
  30177. name: "Normal",
  30178. height: math.unit(5 + 2 / 12, "feet"),
  30179. default: true
  30180. },
  30181. {
  30182. name: "Mini Macro",
  30183. height: math.unit(10, "feet")
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30189. {
  30190. front: {
  30191. height: math.unit(1.8, "meters"),
  30192. weight: math.unit(85, "kg"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/azteck/front.svg",
  30196. extra: 2815 / 2625,
  30197. bottom: 89 / 2904
  30198. }
  30199. },
  30200. back: {
  30201. height: math.unit(1.8, "meters"),
  30202. weight: math.unit(85, "kg"),
  30203. name: "Back",
  30204. image: {
  30205. source: "./media/characters/azteck/back.svg",
  30206. extra: 2856 / 2648,
  30207. bottom: 85 / 2941
  30208. }
  30209. },
  30210. frontDressed: {
  30211. height: math.unit(1.8, "meters"),
  30212. weight: math.unit(85, "kg"),
  30213. name: "Front (Dressed)",
  30214. image: {
  30215. source: "./media/characters/azteck/front-dressed.svg",
  30216. extra: 2147 / 2003,
  30217. bottom: 68 / 2215
  30218. }
  30219. },
  30220. head: {
  30221. height: math.unit(0.47, "meters"),
  30222. weight: math.unit(85, "kg"),
  30223. name: "Head",
  30224. image: {
  30225. source: "./media/characters/azteck/head.svg"
  30226. }
  30227. },
  30228. },
  30229. [
  30230. {
  30231. name: "Bite sized",
  30232. height: math.unit(16, "cm")
  30233. },
  30234. {
  30235. name: "Normal",
  30236. height: math.unit(1.8, "meters"),
  30237. default: true
  30238. },
  30239. ]
  30240. ))
  30241. characterMakers.push(() => makeCharacter(
  30242. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30243. {
  30244. front: {
  30245. height: math.unit(6, "feet"),
  30246. weight: math.unit(150, "lb"),
  30247. name: "Front",
  30248. image: {
  30249. source: "./media/characters/pidge/front.svg",
  30250. extra: 1936/1820,
  30251. bottom: 0/1936
  30252. }
  30253. },
  30254. back: {
  30255. height: math.unit(6, "feet"),
  30256. weight: math.unit(150, "lb"),
  30257. name: "Back",
  30258. image: {
  30259. source: "./media/characters/pidge/back.svg",
  30260. extra: 1938/1843,
  30261. bottom: 0/1938
  30262. }
  30263. },
  30264. casual: {
  30265. height: math.unit(6, "feet"),
  30266. weight: math.unit(150, "lb"),
  30267. name: "Casual",
  30268. image: {
  30269. source: "./media/characters/pidge/casual.svg",
  30270. extra: 1936/1820,
  30271. bottom: 0/1936
  30272. }
  30273. },
  30274. tech: {
  30275. height: math.unit(6, "feet"),
  30276. weight: math.unit(150, "lb"),
  30277. name: "Tech",
  30278. image: {
  30279. source: "./media/characters/pidge/tech.svg",
  30280. extra: 1802/1682,
  30281. bottom: 0/1802
  30282. }
  30283. },
  30284. head: {
  30285. height: math.unit(1.61, "feet"),
  30286. name: "Head",
  30287. image: {
  30288. source: "./media/characters/pidge/head.svg"
  30289. }
  30290. },
  30291. collar: {
  30292. height: math.unit(0.82, "feet"),
  30293. name: "Collar",
  30294. image: {
  30295. source: "./media/characters/pidge/collar.svg"
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Macro",
  30302. height: math.unit(2, "mile"),
  30303. default: true
  30304. },
  30305. {
  30306. name: "PUPPY",
  30307. height: math.unit(20, "miles")
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(6, "feet"),
  30316. weight: math.unit(150, "lb"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/en/front.svg",
  30320. extra: 1697 / 1563,
  30321. bottom: 103 / 1800
  30322. }
  30323. },
  30324. back: {
  30325. height: math.unit(6, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Back",
  30328. image: {
  30329. source: "./media/characters/en/back.svg",
  30330. extra: 1700 / 1570,
  30331. bottom: 51 / 1751
  30332. }
  30333. },
  30334. frontDressed: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Front (Dressed)",
  30338. image: {
  30339. source: "./media/characters/en/front-dressed.svg",
  30340. extra: 1697 / 1563,
  30341. bottom: 103 / 1800
  30342. }
  30343. },
  30344. backDressed: {
  30345. height: math.unit(6, "feet"),
  30346. weight: math.unit(150, "lb"),
  30347. name: "Back (Dressed)",
  30348. image: {
  30349. source: "./media/characters/en/back-dressed.svg",
  30350. extra: 1700 / 1570,
  30351. bottom: 51 / 1751
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Macro",
  30358. height: math.unit(210, "feet"),
  30359. default: true
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(6, "feet"),
  30368. weight: math.unit(150, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/haze-orris/front.svg",
  30372. extra: 3975 / 3525,
  30373. bottom: 137 / 4112
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Micro",
  30380. height: math.unit(150, "mm"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(150, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/casselene-yaro/front.svg",
  30394. extra: 4721 / 4541,
  30395. bottom: 82 / 4803
  30396. }
  30397. },
  30398. back: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(150, "lb"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/casselene-yaro/back.svg",
  30404. extra: 4569 / 4377,
  30405. bottom: 69 / 4638
  30406. }
  30407. },
  30408. dressed: {
  30409. height: math.unit(6, "feet"),
  30410. weight: math.unit(150, "lb"),
  30411. name: "Dressed",
  30412. image: {
  30413. source: "./media/characters/casselene-yaro/dressed.svg",
  30414. extra: 4721 / 4541,
  30415. bottom: 82 / 4803
  30416. }
  30417. },
  30418. maw: {
  30419. height: math.unit(1, "feet"),
  30420. name: "Maw",
  30421. image: {
  30422. source: "./media/characters/casselene-yaro/maw.svg"
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Macro",
  30429. height: math.unit(190, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(10, "feet"),
  30439. weight: math.unit(15015, "lb"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/platine/front.svg",
  30443. extra: 1428/1353,
  30444. bottom: 31/1459
  30445. }
  30446. },
  30447. },
  30448. [
  30449. {
  30450. name: "Normal",
  30451. height: math.unit(10, "feet"),
  30452. default: true
  30453. },
  30454. {
  30455. name: "Macro",
  30456. height: math.unit(100, "feet")
  30457. },
  30458. {
  30459. name: "Megamacro",
  30460. height: math.unit(1000, "feet")
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30466. {
  30467. front: {
  30468. height: math.unit(15 + 5 / 12, "feet"),
  30469. weight: math.unit(4600, "lb"),
  30470. name: "Front",
  30471. image: {
  30472. source: "./media/characters/neapolitan-ananassa/front.svg",
  30473. extra: 2903 / 2736,
  30474. bottom: 0 / 2903
  30475. }
  30476. },
  30477. side: {
  30478. height: math.unit(15 + 5 / 12, "feet"),
  30479. weight: math.unit(4600, "lb"),
  30480. name: "Side",
  30481. image: {
  30482. source: "./media/characters/neapolitan-ananassa/side.svg",
  30483. extra: 2925 / 2719,
  30484. bottom: 0 / 2925
  30485. }
  30486. },
  30487. back: {
  30488. height: math.unit(15 + 5 / 12, "feet"),
  30489. weight: math.unit(4600, "lb"),
  30490. name: "Back",
  30491. image: {
  30492. source: "./media/characters/neapolitan-ananassa/back.svg",
  30493. extra: 2903 / 2736,
  30494. bottom: 0 / 2903
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Normal",
  30501. height: math.unit(15 + 5 / 12, "feet"),
  30502. default: true
  30503. },
  30504. {
  30505. name: "Post-Millenium",
  30506. height: math.unit(35 + 5 / 12, "feet")
  30507. },
  30508. {
  30509. name: "Post-Era",
  30510. height: math.unit(450 + 5 / 12, "feet")
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30516. {
  30517. front: {
  30518. height: math.unit(300, "meters"),
  30519. weight: math.unit(125000, "tonnes"),
  30520. name: "Front",
  30521. image: {
  30522. source: "./media/characters/pazuzu/front.svg",
  30523. extra: 877 / 794,
  30524. bottom: 47 / 924
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Macro",
  30531. height: math.unit(300, "meters"),
  30532. default: true
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30538. {
  30539. side: {
  30540. height: math.unit(10 + 7 / 12, "feet"),
  30541. weight: math.unit(2.5, "tons"),
  30542. name: "Side",
  30543. image: {
  30544. source: "./media/characters/aasha/side.svg",
  30545. extra: 1345 / 1245,
  30546. bottom: 111 / 1456
  30547. }
  30548. },
  30549. back: {
  30550. height: math.unit(10 + 7 / 12, "feet"),
  30551. weight: math.unit(2.5, "tons"),
  30552. name: "Back",
  30553. image: {
  30554. source: "./media/characters/aasha/back.svg",
  30555. extra: 1133 / 1057,
  30556. bottom: 257 / 1390
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(10 + 7 / 12, "feet"),
  30564. default: true
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30570. {
  30571. front: {
  30572. height: math.unit(6 + 3 / 12, "feet"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/nevan/front.svg",
  30576. extra: 704 / 704,
  30577. bottom: 28 / 732
  30578. }
  30579. },
  30580. back: {
  30581. height: math.unit(6 + 3 / 12, "feet"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/nevan/back.svg",
  30585. extra: 714 / 714,
  30586. bottom: 21 / 735
  30587. }
  30588. },
  30589. frontFlaccid: {
  30590. height: math.unit(6 + 3 / 12, "feet"),
  30591. name: "Front (Flaccid)",
  30592. image: {
  30593. source: "./media/characters/nevan/front-flaccid.svg",
  30594. extra: 704 / 704,
  30595. bottom: 28 / 732
  30596. }
  30597. },
  30598. frontErect: {
  30599. height: math.unit(6 + 3 / 12, "feet"),
  30600. name: "Front (Erect)",
  30601. image: {
  30602. source: "./media/characters/nevan/front-erect.svg",
  30603. extra: 704 / 704,
  30604. bottom: 28 / 732
  30605. }
  30606. },
  30607. backFlaccid: {
  30608. height: math.unit(6 + 3 / 12, "feet"),
  30609. name: "Back (Flaccid)",
  30610. image: {
  30611. source: "./media/characters/nevan/back-flaccid.svg",
  30612. extra: 714 / 714,
  30613. bottom: 21 / 735
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Normal",
  30620. height: math.unit(6 + 3 / 12, "feet"),
  30621. default: true
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(4, "feet"),
  30630. name: "Front",
  30631. image: {
  30632. source: "./media/characters/arhan/front.svg",
  30633. extra: 3368 / 3133,
  30634. bottom: 0 / 3368
  30635. }
  30636. },
  30637. side: {
  30638. height: math.unit(4, "feet"),
  30639. name: "Side",
  30640. image: {
  30641. source: "./media/characters/arhan/side.svg",
  30642. extra: 3347 / 3105,
  30643. bottom: 0 / 3347
  30644. }
  30645. },
  30646. tongue: {
  30647. height: math.unit(1.42, "feet"),
  30648. name: "Tongue",
  30649. image: {
  30650. source: "./media/characters/arhan/tongue.svg"
  30651. }
  30652. },
  30653. head: {
  30654. height: math.unit(0.85, "feet"),
  30655. name: "Head",
  30656. image: {
  30657. source: "./media/characters/arhan/head.svg"
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Normal",
  30664. height: math.unit(4, "feet"),
  30665. default: true
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30671. {
  30672. front: {
  30673. height: math.unit(5 + 7.5 / 12, "feet"),
  30674. weight: math.unit(120, "lb"),
  30675. name: "Front",
  30676. image: {
  30677. source: "./media/characters/digi-duncan/front.svg",
  30678. extra: 330 / 326,
  30679. bottom: 16 / 346
  30680. }
  30681. },
  30682. side: {
  30683. height: math.unit(5 + 7.5 / 12, "feet"),
  30684. weight: math.unit(120, "lb"),
  30685. name: "Side",
  30686. image: {
  30687. source: "./media/characters/digi-duncan/side.svg",
  30688. extra: 341 / 337,
  30689. bottom: 1 / 342
  30690. }
  30691. },
  30692. back: {
  30693. height: math.unit(5 + 7.5 / 12, "feet"),
  30694. weight: math.unit(120, "lb"),
  30695. name: "Back",
  30696. image: {
  30697. source: "./media/characters/digi-duncan/back.svg",
  30698. extra: 330 / 326,
  30699. bottom: 12 / 342
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Speck",
  30706. height: math.unit(0.25, "mm")
  30707. },
  30708. {
  30709. name: "Micro",
  30710. height: math.unit(5, "mm")
  30711. },
  30712. {
  30713. name: "Tiny",
  30714. height: math.unit(0.5, "inches"),
  30715. default: true
  30716. },
  30717. {
  30718. name: "Human",
  30719. height: math.unit(5 + 7.5 / 12, "feet")
  30720. },
  30721. {
  30722. name: "Minigiant",
  30723. height: math.unit(8 + 5.25, "feet")
  30724. },
  30725. {
  30726. name: "Giant",
  30727. height: math.unit(2000, "feet")
  30728. },
  30729. {
  30730. name: "Mega",
  30731. height: math.unit(371.1, "miles")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(2, "meters"),
  30740. weight: math.unit(350, "kg"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30744. extra: 898 / 838,
  30745. bottom: 9 / 907
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Micro",
  30752. height: math.unit(8, "meters")
  30753. },
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(50, "meters"),
  30757. default: true
  30758. },
  30759. {
  30760. name: "Macro",
  30761. height: math.unit(500, "meters")
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30767. {
  30768. front: {
  30769. height: math.unit(6 + 6 / 12, "feet"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/khardesh/front.svg",
  30773. extra: 1788/1596,
  30774. bottom: 66/1854
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(6 + 6 / 12, "feet"),
  30779. name: "Back",
  30780. image: {
  30781. source: "./media/characters/khardesh/back.svg",
  30782. extra: 1781/1584,
  30783. bottom: 68/1849
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Normal",
  30790. height: math.unit(6 + 6 / 12, "feet"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Normal+",
  30795. height: math.unit(4, "meters")
  30796. },
  30797. {
  30798. name: "Macro",
  30799. height: math.unit(50, "meters")
  30800. },
  30801. {
  30802. name: "Macro+",
  30803. height: math.unit(100, "meters")
  30804. },
  30805. {
  30806. name: "Megamacro",
  30807. height: math.unit(20, "km")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(6, "feet"),
  30816. weight: math.unit(150, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/kosho/front.svg",
  30820. extra: 1847 / 1847,
  30821. bottom: 86 / 1933
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Second-stage micro",
  30828. height: math.unit(0.5, "inches")
  30829. },
  30830. {
  30831. name: "First-stage micro",
  30832. height: math.unit(6, "inches")
  30833. },
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(6, "feet"),
  30837. default: true
  30838. },
  30839. {
  30840. name: "First-stage macro",
  30841. height: math.unit(72, "feet")
  30842. },
  30843. {
  30844. name: "Second-stage macro",
  30845. height: math.unit(864, "feet")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30851. {
  30852. normal: {
  30853. height: math.unit(4 + 6 / 12, "feet"),
  30854. name: "Normal",
  30855. image: {
  30856. source: "./media/characters/hydra/normal.svg",
  30857. extra: 2833 / 2634,
  30858. bottom: 68 / 2901
  30859. }
  30860. },
  30861. smol: {
  30862. height: math.unit(0.705, "inches"),
  30863. name: "Smol",
  30864. image: {
  30865. source: "./media/characters/hydra/smol.svg",
  30866. extra: 2715 / 2540,
  30867. bottom: 0 / 2715
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(4 + 6 / 12, "feet"),
  30875. default: true
  30876. }
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(0.6, "cm"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/daz/front.svg",
  30887. extra: 1682 / 1164,
  30888. bottom: 42 / 1724
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(0.6, "cm"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(235, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/theo-pangolin/front.svg",
  30909. extra: 1996 / 1969,
  30910. bottom: 115 / 2111
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(6, "feet"),
  30915. weight: math.unit(235, "lb"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/theo-pangolin/back.svg",
  30919. extra: 1979 / 1979,
  30920. bottom: 40 / 2019
  30921. }
  30922. },
  30923. feral: {
  30924. height: math.unit(2, "feet"),
  30925. weight: math.unit(30, "lb"),
  30926. name: "Feral",
  30927. image: {
  30928. source: "./media/characters/theo-pangolin/feral.svg",
  30929. extra: 803 / 791,
  30930. bottom: 181 / 984
  30931. }
  30932. },
  30933. footFive: {
  30934. height: math.unit(1.43, "feet"),
  30935. name: "Foot (Five Toes)",
  30936. image: {
  30937. source: "./media/characters/theo-pangolin/foot-five.svg"
  30938. }
  30939. },
  30940. footFour: {
  30941. height: math.unit(1.43, "feet"),
  30942. name: "Foot (Four Toes)",
  30943. image: {
  30944. source: "./media/characters/theo-pangolin/foot-four.svg"
  30945. }
  30946. },
  30947. handFour: {
  30948. height: math.unit(0.81, "feet"),
  30949. name: "Hand (Four Fingers)",
  30950. image: {
  30951. source: "./media/characters/theo-pangolin/hand-four.svg"
  30952. }
  30953. },
  30954. handThree: {
  30955. height: math.unit(0.81, "feet"),
  30956. name: "Hand (Three Fingers)",
  30957. image: {
  30958. source: "./media/characters/theo-pangolin/hand-three.svg"
  30959. }
  30960. },
  30961. headFront: {
  30962. height: math.unit(1.37, "feet"),
  30963. name: "Head (Front)",
  30964. image: {
  30965. source: "./media/characters/theo-pangolin/head-front.svg"
  30966. }
  30967. },
  30968. headSide: {
  30969. height: math.unit(1.43, "feet"),
  30970. name: "Head (Side)",
  30971. image: {
  30972. source: "./media/characters/theo-pangolin/head-side.svg"
  30973. }
  30974. },
  30975. tongue: {
  30976. height: math.unit(2.29, "feet"),
  30977. name: "Tongue",
  30978. image: {
  30979. source: "./media/characters/theo-pangolin/tongue.svg"
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(6, "feet")
  30987. },
  30988. {
  30989. name: "Macro",
  30990. height: math.unit(400, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(6, "inches"),
  31000. weight: math.unit(0.036, "kg"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/renée/front.svg",
  31004. extra: 900 / 886,
  31005. bottom: 8 / 908
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Nano",
  31012. height: math.unit(1, "nm")
  31013. },
  31014. {
  31015. name: "Micro",
  31016. height: math.unit(1, "mm")
  31017. },
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(6, "inches")
  31021. },
  31022. {
  31023. name: "Macro",
  31024. height: math.unit(2000, "feet"),
  31025. default: true
  31026. },
  31027. {
  31028. name: "Megamacro",
  31029. height: math.unit(2, "km")
  31030. },
  31031. {
  31032. name: "Gigamacro",
  31033. height: math.unit(2000, "km")
  31034. },
  31035. {
  31036. name: "Teramacro",
  31037. height: math.unit(250000, "km")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(4, "meters"),
  31046. weight: math.unit(150, "kg"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/caledvwlch/front.svg",
  31050. extra: 1760 / 1551,
  31051. bottom: 28 / 1788
  31052. }
  31053. },
  31054. side: {
  31055. height: math.unit(4, "meters"),
  31056. weight: math.unit(150, "kg"),
  31057. name: "Side",
  31058. image: {
  31059. source: "./media/characters/caledvwlch/side.svg",
  31060. extra: 1605 / 1536,
  31061. bottom: 31 / 1636
  31062. }
  31063. },
  31064. back: {
  31065. height: math.unit(4, "meters"),
  31066. weight: math.unit(150, "kg"),
  31067. name: "Back",
  31068. image: {
  31069. source: "./media/characters/caledvwlch/back.svg",
  31070. extra: 1635 / 1565,
  31071. bottom: 27 / 1662
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "\"Incognito\"",
  31078. height: math.unit(4, "meters")
  31079. },
  31080. {
  31081. name: "Small rampage",
  31082. height: math.unit(600, "meters")
  31083. },
  31084. {
  31085. name: "Mega",
  31086. height: math.unit(30, "km")
  31087. },
  31088. {
  31089. name: "Home-size",
  31090. height: math.unit(50, "km"),
  31091. default: true
  31092. },
  31093. {
  31094. name: "Giga",
  31095. height: math.unit(300, "km")
  31096. },
  31097. {
  31098. name: "Lounging",
  31099. height: math.unit(11000, "km")
  31100. },
  31101. {
  31102. name: "Planet snacking",
  31103. height: math.unit(2000000, "km")
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(6, "feet"),
  31112. weight: math.unit(215, "lb"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/sapphire-svell/front.svg",
  31116. extra: 495 / 455,
  31117. bottom: 20 / 515
  31118. }
  31119. },
  31120. back: {
  31121. height: math.unit(6, "feet"),
  31122. weight: math.unit(216, "lb"),
  31123. name: "Back",
  31124. image: {
  31125. source: "./media/characters/sapphire-svell/back.svg",
  31126. extra: 497 / 477,
  31127. bottom: 7 / 504
  31128. }
  31129. },
  31130. maw: {
  31131. height: math.unit(1.57, "feet"),
  31132. name: "Maw",
  31133. image: {
  31134. source: "./media/characters/sapphire-svell/maw.svg"
  31135. }
  31136. },
  31137. foot: {
  31138. height: math.unit(1.07, "feet"),
  31139. name: "Foot",
  31140. image: {
  31141. source: "./media/characters/sapphire-svell/foot.svg"
  31142. }
  31143. },
  31144. toering: {
  31145. height: math.unit(1.7, "inch"),
  31146. name: "Toering",
  31147. image: {
  31148. source: "./media/characters/sapphire-svell/toering.svg"
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(300, "feet"),
  31156. default: true
  31157. },
  31158. {
  31159. name: "Augmented",
  31160. height: math.unit(1250, "feet")
  31161. },
  31162. {
  31163. name: "Unleashed",
  31164. height: math.unit(3000, "feet")
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31170. {
  31171. side: {
  31172. height: math.unit(2 + 3 / 12, "feet"),
  31173. weight: math.unit(110, "lb"),
  31174. name: "Side",
  31175. image: {
  31176. source: "./media/characters/glitch-flux/side.svg",
  31177. extra: 997 / 805,
  31178. bottom: 20 / 1017
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(2 + 3 / 12, "feet"),
  31186. default: true
  31187. },
  31188. ]
  31189. ))
  31190. characterMakers.push(() => makeCharacter(
  31191. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31192. {
  31193. front: {
  31194. height: math.unit(4, "meters"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/mid/front.svg",
  31198. extra: 507 / 476,
  31199. bottom: 17 / 524
  31200. }
  31201. },
  31202. back: {
  31203. height: math.unit(4, "meters"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/mid/back.svg",
  31207. extra: 519 / 487,
  31208. bottom: 7 / 526
  31209. }
  31210. },
  31211. stuck: {
  31212. height: math.unit(2.2, "meters"),
  31213. name: "Stuck",
  31214. image: {
  31215. source: "./media/characters/mid/stuck.svg",
  31216. extra: 1951 / 1869,
  31217. bottom: 88 / 2039
  31218. }
  31219. }
  31220. },
  31221. [
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(4, "meters"),
  31225. default: true
  31226. },
  31227. {
  31228. name: "Big",
  31229. height: math.unit(10, "meters")
  31230. },
  31231. {
  31232. name: "Macro",
  31233. height: math.unit(800, "meters")
  31234. },
  31235. {
  31236. name: "Megamacro",
  31237. height: math.unit(100, "km")
  31238. },
  31239. {
  31240. name: "Overgrown",
  31241. height: math.unit(1, "parsec")
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(2.5, "meters"),
  31250. weight: math.unit(225, "kg"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/iris/front.svg",
  31254. extra: 3348 / 3251,
  31255. bottom: 205 / 3553
  31256. }
  31257. },
  31258. maw: {
  31259. height: math.unit(0.56, "meter"),
  31260. name: "Maw",
  31261. image: {
  31262. source: "./media/characters/iris/maw.svg"
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Mewter cat",
  31269. height: math.unit(1.2, "meters")
  31270. },
  31271. {
  31272. name: "Minimacro",
  31273. height: math.unit(2.5, "meters"),
  31274. default: true
  31275. },
  31276. {
  31277. name: "Macro",
  31278. height: math.unit(180, "meters")
  31279. },
  31280. {
  31281. name: "Megamacro",
  31282. height: math.unit(2746, "meters")
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31288. {
  31289. front: {
  31290. height: math.unit(6, "feet"),
  31291. weight: math.unit(135, "lb"),
  31292. name: "Front",
  31293. image: {
  31294. source: "./media/characters/axel/front.svg",
  31295. extra: 908 / 908,
  31296. bottom: 58 / 966
  31297. }
  31298. },
  31299. side: {
  31300. height: math.unit(6, "feet"),
  31301. weight: math.unit(135, "lb"),
  31302. name: "Side",
  31303. image: {
  31304. source: "./media/characters/axel/side.svg",
  31305. extra: 958 / 958,
  31306. bottom: 11 / 969
  31307. }
  31308. },
  31309. back: {
  31310. height: math.unit(6, "feet"),
  31311. weight: math.unit(135, "lb"),
  31312. name: "Back",
  31313. image: {
  31314. source: "./media/characters/axel/back.svg",
  31315. extra: 887 / 887,
  31316. bottom: 34 / 921
  31317. }
  31318. },
  31319. head: {
  31320. height: math.unit(1.07, "feet"),
  31321. name: "Head",
  31322. image: {
  31323. source: "./media/characters/axel/head.svg"
  31324. }
  31325. },
  31326. beak: {
  31327. height: math.unit(1.4, "feet"),
  31328. name: "Beak",
  31329. image: {
  31330. source: "./media/characters/axel/beak.svg"
  31331. }
  31332. },
  31333. beakSide: {
  31334. height: math.unit(1.4, "feet"),
  31335. name: "Beak Side",
  31336. image: {
  31337. source: "./media/characters/axel/beak-side.svg"
  31338. }
  31339. },
  31340. sheath: {
  31341. height: math.unit(0.5, "feet"),
  31342. name: "Sheath",
  31343. image: {
  31344. source: "./media/characters/axel/sheath.svg"
  31345. }
  31346. },
  31347. dick: {
  31348. height: math.unit(0.98, "feet"),
  31349. name: "Dick",
  31350. image: {
  31351. source: "./media/characters/axel/dick.svg"
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Macro",
  31358. height: math.unit(68, "meters"),
  31359. default: true
  31360. },
  31361. ]
  31362. ))
  31363. characterMakers.push(() => makeCharacter(
  31364. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31365. {
  31366. front: {
  31367. height: math.unit(3.5, "meters"),
  31368. weight: math.unit(1200, "kg"),
  31369. name: "Front",
  31370. image: {
  31371. source: "./media/characters/joanna/front.svg",
  31372. extra: 1596 / 1488,
  31373. bottom: 29 / 1625
  31374. }
  31375. },
  31376. back: {
  31377. height: math.unit(3.5, "meters"),
  31378. weight: math.unit(1200, "kg"),
  31379. name: "Back",
  31380. image: {
  31381. source: "./media/characters/joanna/back.svg",
  31382. extra: 1594 / 1495,
  31383. bottom: 26 / 1620
  31384. }
  31385. },
  31386. frontShorts: {
  31387. height: math.unit(3.5, "meters"),
  31388. weight: math.unit(1200, "kg"),
  31389. name: "Front (Shorts)",
  31390. image: {
  31391. source: "./media/characters/joanna/front-shorts.svg",
  31392. extra: 1596 / 1488,
  31393. bottom: 29 / 1625
  31394. }
  31395. },
  31396. frontBiker: {
  31397. height: math.unit(3.5, "meters"),
  31398. weight: math.unit(1200, "kg"),
  31399. name: "Front (Biker)",
  31400. image: {
  31401. source: "./media/characters/joanna/front-biker.svg",
  31402. extra: 1596 / 1488,
  31403. bottom: 29 / 1625
  31404. }
  31405. },
  31406. backBiker: {
  31407. height: math.unit(3.5, "meters"),
  31408. weight: math.unit(1200, "kg"),
  31409. name: "Back (Biker)",
  31410. image: {
  31411. source: "./media/characters/joanna/back-biker.svg",
  31412. extra: 1594 / 1495,
  31413. bottom: 88 / 1682
  31414. }
  31415. },
  31416. bikeLeft: {
  31417. height: math.unit(2.4, "meters"),
  31418. weight: math.unit(1600, "kg"),
  31419. name: "Bike (Left)",
  31420. image: {
  31421. source: "./media/characters/joanna/bike-left.svg",
  31422. extra: 720 / 720,
  31423. bottom: 8 / 728
  31424. }
  31425. },
  31426. bikeRight: {
  31427. height: math.unit(2.4, "meters"),
  31428. weight: math.unit(1600, "kg"),
  31429. name: "Bike (Right)",
  31430. image: {
  31431. source: "./media/characters/joanna/bike-right.svg",
  31432. extra: 720 / 720,
  31433. bottom: 8 / 728
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Incognito",
  31440. height: math.unit(3.5, "meters")
  31441. },
  31442. {
  31443. name: "Casual Big",
  31444. height: math.unit(200, "meters")
  31445. },
  31446. {
  31447. name: "Macro",
  31448. height: math.unit(600, "meters")
  31449. },
  31450. {
  31451. name: "Original",
  31452. height: math.unit(20, "km"),
  31453. default: true
  31454. },
  31455. {
  31456. name: "Giga",
  31457. height: math.unit(400, "km")
  31458. },
  31459. {
  31460. name: "Lounging",
  31461. height: math.unit(1500, "km")
  31462. },
  31463. {
  31464. name: "Planetary",
  31465. height: math.unit(200000, "km")
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(6, "feet"),
  31474. weight: math.unit(150, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/hugo-sigil/front.svg",
  31478. extra: 522 / 500,
  31479. bottom: 2 / 524
  31480. }
  31481. },
  31482. back: {
  31483. height: math.unit(6, "feet"),
  31484. weight: math.unit(150, "lb"),
  31485. name: "Back",
  31486. image: {
  31487. source: "./media/characters/hugo-sigil/back.svg",
  31488. extra: 519 / 495,
  31489. bottom: 5 / 524
  31490. }
  31491. },
  31492. maw: {
  31493. height: math.unit(1.4, "feet"),
  31494. weight: math.unit(150, "lb"),
  31495. name: "Maw",
  31496. image: {
  31497. source: "./media/characters/hugo-sigil/maw.svg"
  31498. }
  31499. },
  31500. feet: {
  31501. height: math.unit(1.56, "feet"),
  31502. weight: math.unit(150, "lb"),
  31503. name: "Feet",
  31504. image: {
  31505. source: "./media/characters/hugo-sigil/feet.svg",
  31506. extra: 177 / 177,
  31507. bottom: 12 / 189
  31508. }
  31509. },
  31510. },
  31511. [
  31512. {
  31513. name: "Normal",
  31514. height: math.unit(6, "feet")
  31515. },
  31516. {
  31517. name: "Macro",
  31518. height: math.unit(200, "feet"),
  31519. default: true
  31520. },
  31521. ]
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31525. {
  31526. front: {
  31527. height: math.unit(6, "feet"),
  31528. weight: math.unit(150, "lb"),
  31529. name: "Front",
  31530. image: {
  31531. source: "./media/characters/peri/front.svg",
  31532. extra: 2354 / 2233,
  31533. bottom: 49 / 2403
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Really Small",
  31540. height: math.unit(1, "nm")
  31541. },
  31542. {
  31543. name: "Micro",
  31544. height: math.unit(4, "inches")
  31545. },
  31546. {
  31547. name: "Normal",
  31548. height: math.unit(7, "inches"),
  31549. default: true
  31550. },
  31551. {
  31552. name: "Macro",
  31553. height: math.unit(400, "feet")
  31554. },
  31555. {
  31556. name: "Megamacro",
  31557. height: math.unit(100, "miles")
  31558. },
  31559. ]
  31560. ))
  31561. characterMakers.push(() => makeCharacter(
  31562. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31563. {
  31564. frontSlim: {
  31565. height: math.unit(7, "feet"),
  31566. name: "Front (Slim)",
  31567. image: {
  31568. source: "./media/characters/issilora/front-slim.svg",
  31569. extra: 529 / 449,
  31570. bottom: 53 / 582
  31571. }
  31572. },
  31573. sideSlim: {
  31574. height: math.unit(7, "feet"),
  31575. name: "Side (Slim)",
  31576. image: {
  31577. source: "./media/characters/issilora/side-slim.svg",
  31578. extra: 570 / 480,
  31579. bottom: 30 / 600
  31580. }
  31581. },
  31582. backSlim: {
  31583. height: math.unit(7, "feet"),
  31584. name: "Back (Slim)",
  31585. image: {
  31586. source: "./media/characters/issilora/back-slim.svg",
  31587. extra: 537 / 455,
  31588. bottom: 46 / 583
  31589. }
  31590. },
  31591. frontBuff: {
  31592. height: math.unit(7, "feet"),
  31593. name: "Front (Buff)",
  31594. image: {
  31595. source: "./media/characters/issilora/front-buff.svg",
  31596. extra: 2310 / 2035,
  31597. bottom: 335 / 2645
  31598. }
  31599. },
  31600. head: {
  31601. height: math.unit(1.94, "feet"),
  31602. name: "Head",
  31603. image: {
  31604. source: "./media/characters/issilora/head.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Minimum",
  31611. height: math.unit(7, "feet")
  31612. },
  31613. {
  31614. name: "Comfortable",
  31615. height: math.unit(17, "feet")
  31616. },
  31617. {
  31618. name: "Fun Size",
  31619. height: math.unit(47, "feet")
  31620. },
  31621. {
  31622. name: "Natural Macro",
  31623. height: math.unit(137, "feet"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Maximum Kaiju",
  31628. height: math.unit(397, "feet")
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31634. {
  31635. front: {
  31636. height: math.unit(50 + 9/12, "feet"),
  31637. weight: math.unit(32.8, "tons"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/irb'iiritaahn/front.svg",
  31641. extra: 1878/1826,
  31642. bottom: 326/2204
  31643. }
  31644. },
  31645. back: {
  31646. height: math.unit(50 + 9/12, "feet"),
  31647. weight: math.unit(32.8, "tons"),
  31648. name: "Back",
  31649. image: {
  31650. source: "./media/characters/irb'iiritaahn/back.svg",
  31651. extra: 2052/2018,
  31652. bottom: 152/2204
  31653. }
  31654. },
  31655. head: {
  31656. height: math.unit(12.86, "feet"),
  31657. name: "Head",
  31658. image: {
  31659. source: "./media/characters/irb'iiritaahn/head.svg"
  31660. }
  31661. },
  31662. maw: {
  31663. height: math.unit(9.66, "feet"),
  31664. name: "Maw",
  31665. image: {
  31666. source: "./media/characters/irb'iiritaahn/maw.svg"
  31667. }
  31668. },
  31669. frontDick: {
  31670. height: math.unit(8.78461, "feet"),
  31671. name: "Front Dick",
  31672. image: {
  31673. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31674. }
  31675. },
  31676. rearDick: {
  31677. height: math.unit(8.78461, "feet"),
  31678. name: "Rear Dick",
  31679. image: {
  31680. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31681. }
  31682. },
  31683. rearDickUnfolded: {
  31684. height: math.unit(8.78, "feet"),
  31685. name: "Rear Dick (Unfolded)",
  31686. image: {
  31687. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31688. }
  31689. },
  31690. wings: {
  31691. height: math.unit(43, "feet"),
  31692. name: "Wings",
  31693. image: {
  31694. source: "./media/characters/irb'iiritaahn/wings.svg"
  31695. }
  31696. },
  31697. },
  31698. [
  31699. {
  31700. name: "Macro",
  31701. height: math.unit(50 + 9/12, "feet"),
  31702. default: true
  31703. },
  31704. ]
  31705. ))
  31706. characterMakers.push(() => makeCharacter(
  31707. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31708. {
  31709. front: {
  31710. height: math.unit(205, "cm"),
  31711. weight: math.unit(102, "kg"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/irbisgreif/front.svg",
  31715. extra: 785/706,
  31716. bottom: 13/798
  31717. }
  31718. },
  31719. back: {
  31720. height: math.unit(205, "cm"),
  31721. weight: math.unit(102, "kg"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/irbisgreif/back.svg",
  31725. extra: 713/701,
  31726. bottom: 26/739
  31727. }
  31728. },
  31729. frontDressed: {
  31730. height: math.unit(216, "cm"),
  31731. weight: math.unit(102, "kg"),
  31732. name: "Front-dressed",
  31733. image: {
  31734. source: "./media/characters/irbisgreif/front-dressed.svg",
  31735. extra: 902/776,
  31736. bottom: 14/916
  31737. }
  31738. },
  31739. sideDressed: {
  31740. height: math.unit(195, "cm"),
  31741. weight: math.unit(102, "kg"),
  31742. name: "Side-dressed",
  31743. image: {
  31744. source: "./media/characters/irbisgreif/side-dressed.svg",
  31745. extra: 788/688,
  31746. bottom: 21/809
  31747. }
  31748. },
  31749. backDressed: {
  31750. height: math.unit(216, "cm"),
  31751. weight: math.unit(102, "kg"),
  31752. name: "Back-dressed",
  31753. image: {
  31754. source: "./media/characters/irbisgreif/back-dressed.svg",
  31755. extra: 901/783,
  31756. bottom: 10/911
  31757. }
  31758. },
  31759. dick: {
  31760. height: math.unit(0.49, "feet"),
  31761. name: "Dick",
  31762. image: {
  31763. source: "./media/characters/irbisgreif/dick.svg"
  31764. }
  31765. },
  31766. wingTop: {
  31767. height: math.unit(1.93 , "feet"),
  31768. name: "Wing-top",
  31769. image: {
  31770. source: "./media/characters/irbisgreif/wing-top.svg"
  31771. }
  31772. },
  31773. wingBottom: {
  31774. height: math.unit(1.93 , "feet"),
  31775. name: "Wing-bottom",
  31776. image: {
  31777. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31778. }
  31779. },
  31780. },
  31781. [
  31782. {
  31783. name: "Normal",
  31784. height: math.unit(216, "cm"),
  31785. default: true
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31791. {
  31792. front: {
  31793. height: math.unit(6, "feet"),
  31794. weight: math.unit(150, "lb"),
  31795. name: "Front",
  31796. image: {
  31797. source: "./media/characters/pride/front.svg",
  31798. extra: 1299/1230,
  31799. bottom: 18/1317
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(7, "feet")
  31807. },
  31808. {
  31809. name: "Mini-macro",
  31810. height: math.unit(11, "feet")
  31811. },
  31812. {
  31813. name: "Macro",
  31814. height: math.unit(15, "meters"),
  31815. default: true
  31816. },
  31817. {
  31818. name: "Macro+",
  31819. height: math.unit(40, "meters")
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31825. {
  31826. front: {
  31827. height: math.unit(4 + 2 / 12, "feet"),
  31828. weight: math.unit(95, "lb"),
  31829. name: "Front",
  31830. image: {
  31831. source: "./media/characters/vaelophis-nyx/front.svg",
  31832. extra: 2532/2330,
  31833. bottom: 0/2532
  31834. }
  31835. },
  31836. back: {
  31837. height: math.unit(4 + 2 / 12, "feet"),
  31838. weight: math.unit(95, "lb"),
  31839. name: "Back",
  31840. image: {
  31841. source: "./media/characters/vaelophis-nyx/back.svg",
  31842. extra: 2484/2361,
  31843. bottom: 0/2484
  31844. }
  31845. },
  31846. feralSide: {
  31847. height: math.unit(2 + 1/12, "feet"),
  31848. weight: math.unit(20, "lb"),
  31849. name: "Feral (Side)",
  31850. image: {
  31851. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31852. extra: 1721/1581,
  31853. bottom: 70/1791
  31854. }
  31855. },
  31856. feralLazing: {
  31857. height: math.unit(1.08, "feet"),
  31858. weight: math.unit(20, "lb"),
  31859. name: "Feral (Lazing)",
  31860. image: {
  31861. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31862. extra: 822/822,
  31863. bottom: 248/1070
  31864. }
  31865. },
  31866. ear: {
  31867. height: math.unit(0.416, "feet"),
  31868. name: "Ear",
  31869. image: {
  31870. source: "./media/characters/vaelophis-nyx/ear.svg"
  31871. }
  31872. },
  31873. eye: {
  31874. height: math.unit(0.0748, "feet"),
  31875. name: "Eye",
  31876. image: {
  31877. source: "./media/characters/vaelophis-nyx/eye.svg"
  31878. }
  31879. },
  31880. mouth: {
  31881. height: math.unit(0.378, "feet"),
  31882. name: "Mouth",
  31883. image: {
  31884. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31885. }
  31886. },
  31887. spade: {
  31888. height: math.unit(0.55, "feet"),
  31889. name: "Spade",
  31890. image: {
  31891. source: "./media/characters/vaelophis-nyx/spade.svg"
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(4 + 2/12, "feet"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31905. {
  31906. front: {
  31907. height: math.unit(7, "feet"),
  31908. weight: math.unit(231, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/flux/front.svg",
  31912. extra: 919/871,
  31913. bottom: 0/919
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(7, "feet"),
  31918. weight: math.unit(231, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/flux/back.svg",
  31922. extra: 1040/992,
  31923. bottom: 0/1040
  31924. }
  31925. },
  31926. frontDressed: {
  31927. height: math.unit(7, "feet"),
  31928. weight: math.unit(231, "lb"),
  31929. name: "Front (Dressed)",
  31930. image: {
  31931. source: "./media/characters/flux/front-dressed.svg",
  31932. extra: 919/871,
  31933. bottom: 0/919
  31934. }
  31935. },
  31936. feralSide: {
  31937. height: math.unit(5, "feet"),
  31938. weight: math.unit(150, "lb"),
  31939. name: "Feral (Side)",
  31940. image: {
  31941. source: "./media/characters/flux/feral-side.svg",
  31942. extra: 598/528,
  31943. bottom: 28/626
  31944. }
  31945. },
  31946. head: {
  31947. height: math.unit(1.585, "feet"),
  31948. name: "Head",
  31949. image: {
  31950. source: "./media/characters/flux/head.svg"
  31951. }
  31952. },
  31953. headSide: {
  31954. height: math.unit(1.74, "feet"),
  31955. name: "Head (Side)",
  31956. image: {
  31957. source: "./media/characters/flux/head-side.svg"
  31958. }
  31959. },
  31960. headSideFire: {
  31961. height: math.unit(1.76, "feet"),
  31962. name: "Head (Side, Fire)",
  31963. image: {
  31964. source: "./media/characters/flux/head-side-fire.svg"
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Normal",
  31971. height: math.unit(7, "feet"),
  31972. default: true
  31973. },
  31974. ]
  31975. ))
  31976. characterMakers.push(() => makeCharacter(
  31977. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31978. {
  31979. front: {
  31980. height: math.unit(9, "feet"),
  31981. weight: math.unit(1012, "lb"),
  31982. name: "Front",
  31983. image: {
  31984. source: "./media/characters/ulfra-lupae/front.svg",
  31985. extra: 1083/1011,
  31986. bottom: 67/1150
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Micro",
  31993. height: math.unit(6, "inches")
  31994. },
  31995. {
  31996. name: "Socializing",
  31997. height: math.unit(6 + 5/12, "feet")
  31998. },
  31999. {
  32000. name: "Normal",
  32001. height: math.unit(9, "feet"),
  32002. default: true
  32003. },
  32004. {
  32005. name: "Macro",
  32006. height: math.unit(150, "feet")
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(5 + 2/12, "feet"),
  32015. weight: math.unit(120, "lb"),
  32016. name: "Front",
  32017. image: {
  32018. source: "./media/characters/timber/front.svg",
  32019. extra: 2814/2705,
  32020. bottom: 181/2995
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(5 + 2/12, "feet"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(9, "feet"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/nicki/front.svg",
  32040. extra: 1240/990,
  32041. bottom: 45/1285
  32042. },
  32043. form: "anthro",
  32044. default: true
  32045. },
  32046. side: {
  32047. height: math.unit(9, "feet"),
  32048. name: "Side",
  32049. image: {
  32050. source: "./media/characters/nicki/side.svg",
  32051. extra: 1047/973,
  32052. bottom: 61/1108
  32053. },
  32054. form: "anthro"
  32055. },
  32056. back: {
  32057. height: math.unit(9, "feet"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/nicki/back.svg",
  32061. extra: 1006/965,
  32062. bottom: 39/1045
  32063. },
  32064. form: "anthro"
  32065. },
  32066. taur: {
  32067. height: math.unit(15, "feet"),
  32068. name: "Taur",
  32069. image: {
  32070. source: "./media/characters/nicki/taur.svg",
  32071. extra: 1592/1347,
  32072. bottom: 0/1592
  32073. },
  32074. form: "taur",
  32075. default: true
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Normal",
  32081. height: math.unit(9, "feet"),
  32082. form: "anthro",
  32083. default: true
  32084. },
  32085. {
  32086. name: "Normal",
  32087. height: math.unit(15, "feet"),
  32088. form: "taur",
  32089. default: true
  32090. }
  32091. ],
  32092. {
  32093. "anthro": {
  32094. name: "Anthro",
  32095. default: true
  32096. },
  32097. "taur": {
  32098. name: "Taur"
  32099. }
  32100. }
  32101. ))
  32102. characterMakers.push(() => makeCharacter(
  32103. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32104. {
  32105. front: {
  32106. height: math.unit(7 + 10/12, "feet"),
  32107. weight: math.unit(3.5, "tons"),
  32108. name: "Front",
  32109. image: {
  32110. source: "./media/characters/lee/front.svg",
  32111. extra: 1773/1615,
  32112. bottom: 86/1859
  32113. }
  32114. },
  32115. hand: {
  32116. height: math.unit(1.78, "feet"),
  32117. name: "Hand",
  32118. image: {
  32119. source: "./media/characters/lee/hand.svg"
  32120. }
  32121. },
  32122. maw: {
  32123. height: math.unit(1.18, "feet"),
  32124. name: "Maw",
  32125. image: {
  32126. source: "./media/characters/lee/maw.svg"
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Normal",
  32133. height: math.unit(7 + 10/12, "feet"),
  32134. default: true
  32135. },
  32136. ]
  32137. ))
  32138. characterMakers.push(() => makeCharacter(
  32139. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32140. {
  32141. front: {
  32142. height: math.unit(9, "feet"),
  32143. name: "Front",
  32144. image: {
  32145. source: "./media/characters/guti/front.svg",
  32146. extra: 4551/4355,
  32147. bottom: 123/4674
  32148. }
  32149. },
  32150. tongue: {
  32151. height: math.unit(1, "feet"),
  32152. name: "Tongue",
  32153. image: {
  32154. source: "./media/characters/guti/tongue.svg"
  32155. }
  32156. },
  32157. paw: {
  32158. height: math.unit(1.18, "feet"),
  32159. name: "Paw",
  32160. image: {
  32161. source: "./media/characters/guti/paw.svg"
  32162. }
  32163. },
  32164. },
  32165. [
  32166. {
  32167. name: "Normal",
  32168. height: math.unit(9, "feet"),
  32169. default: true
  32170. },
  32171. ]
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32175. {
  32176. side: {
  32177. height: math.unit(5, "meters"),
  32178. name: "Side",
  32179. image: {
  32180. source: "./media/characters/vesper/side.svg",
  32181. extra: 1605/1518,
  32182. bottom: 0/1605
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Small",
  32189. height: math.unit(5, "meters")
  32190. },
  32191. {
  32192. name: "Sage",
  32193. height: math.unit(100, "meters"),
  32194. default: true
  32195. },
  32196. {
  32197. name: "Fun Size",
  32198. height: math.unit(600, "meters")
  32199. },
  32200. {
  32201. name: "Goddess",
  32202. height: math.unit(20000, "km")
  32203. },
  32204. {
  32205. name: "Maximum",
  32206. height: math.unit(5, "galaxies")
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(6 + 3/12, "feet"),
  32215. weight: math.unit(190, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/gawain/front.svg",
  32219. extra: 2222/2139,
  32220. bottom: 90/2312
  32221. }
  32222. },
  32223. back: {
  32224. height: math.unit(6 + 3/12, "feet"),
  32225. weight: math.unit(190, "lb"),
  32226. name: "Back",
  32227. image: {
  32228. source: "./media/characters/gawain/back.svg",
  32229. extra: 2199/2111,
  32230. bottom: 73/2272
  32231. }
  32232. },
  32233. },
  32234. [
  32235. {
  32236. name: "Normal",
  32237. height: math.unit(6 + 3/12, "feet"),
  32238. default: true
  32239. },
  32240. ]
  32241. ))
  32242. characterMakers.push(() => makeCharacter(
  32243. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32244. {
  32245. side: {
  32246. height: math.unit(3.5, "meters"),
  32247. weight: math.unit(16000, "lb"),
  32248. name: "Side",
  32249. image: {
  32250. source: "./media/characters/dascalti/side.svg",
  32251. extra: 392/273,
  32252. bottom: 47/439
  32253. }
  32254. },
  32255. breath: {
  32256. height: math.unit(7.4, "feet"),
  32257. name: "Breath",
  32258. image: {
  32259. source: "./media/characters/dascalti/breath.svg"
  32260. }
  32261. },
  32262. fed: {
  32263. height: math.unit(3.6, "meters"),
  32264. weight: math.unit(16000, "lb"),
  32265. name: "Fed",
  32266. image: {
  32267. source: "./media/characters/dascalti/fed.svg",
  32268. extra: 1419/820,
  32269. bottom: 95/1514
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(3.5, "meters"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(3 + 5/12, "feet"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/mauve/front.svg",
  32289. extra: 1126/1033,
  32290. bottom: 65/1191
  32291. }
  32292. },
  32293. side: {
  32294. height: math.unit(3 + 5/12, "feet"),
  32295. name: "Side",
  32296. image: {
  32297. source: "./media/characters/mauve/side.svg",
  32298. extra: 1089/1001,
  32299. bottom: 29/1118
  32300. }
  32301. },
  32302. back: {
  32303. height: math.unit(3 + 5/12, "feet"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/mauve/back.svg",
  32307. extra: 1173/1053,
  32308. bottom: 109/1282
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(3 + 5/12, "feet"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(6 + 3/12, "feet"),
  32325. weight: math.unit(430, "lb"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/carlos/front.svg",
  32329. extra: 1964/1913,
  32330. bottom: 70/2034
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(6 + 3/12, "feet"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32344. {
  32345. back: {
  32346. height: math.unit(5 + 10/12, "feet"),
  32347. weight: math.unit(200, "lb"),
  32348. name: "Back",
  32349. image: {
  32350. source: "./media/characters/jax/back.svg",
  32351. extra: 764/739,
  32352. bottom: 25/789
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(5 + 10/12, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(8, "feet"),
  32369. weight: math.unit(250, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/eikthynir/front.svg",
  32373. extra: 1332/1166,
  32374. bottom: 82/1414
  32375. }
  32376. },
  32377. back: {
  32378. height: math.unit(8, "feet"),
  32379. weight: math.unit(250, "lb"),
  32380. name: "Back",
  32381. image: {
  32382. source: "./media/characters/eikthynir/back.svg",
  32383. extra: 1342/1190,
  32384. bottom: 19/1361
  32385. }
  32386. },
  32387. dick: {
  32388. height: math.unit(2.35, "feet"),
  32389. name: "Dick",
  32390. image: {
  32391. source: "./media/characters/eikthynir/dick.svg"
  32392. }
  32393. },
  32394. },
  32395. [
  32396. {
  32397. name: "Normal",
  32398. height: math.unit(8, "feet"),
  32399. default: true
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32405. {
  32406. front: {
  32407. height: math.unit(99, "meters"),
  32408. weight: math.unit(13000, "tons"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/zlmos/front.svg",
  32412. extra: 2202/1992,
  32413. bottom: 315/2517
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Macro",
  32420. height: math.unit(99, "meters"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(6 + 5/12, "feet"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/purri/front.svg",
  32433. extra: 1698/1610,
  32434. bottom: 32/1730
  32435. }
  32436. },
  32437. frontAlt: {
  32438. height: math.unit(6 + 5/12, "feet"),
  32439. name: "Front (Alt)",
  32440. image: {
  32441. source: "./media/characters/purri/front-alt.svg",
  32442. extra: 450/420,
  32443. bottom: 26/476
  32444. }
  32445. },
  32446. boots: {
  32447. height: math.unit(5.5, "feet"),
  32448. name: "Boots",
  32449. image: {
  32450. source: "./media/characters/purri/boots.svg",
  32451. extra: 905/853,
  32452. bottom: 18/923
  32453. }
  32454. },
  32455. lying: {
  32456. height: math.unit(2, "feet"),
  32457. name: "Lying",
  32458. image: {
  32459. source: "./media/characters/purri/lying.svg",
  32460. extra: 940/843,
  32461. bottom: 146/1086
  32462. }
  32463. },
  32464. devious: {
  32465. height: math.unit(1.77, "feet"),
  32466. name: "Devious",
  32467. image: {
  32468. source: "./media/characters/purri/devious.svg",
  32469. extra: 1440/1155,
  32470. bottom: 147/1587
  32471. }
  32472. },
  32473. bean: {
  32474. height: math.unit(1.94, "feet"),
  32475. name: "Bean",
  32476. image: {
  32477. source: "./media/characters/purri/bean.svg"
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Micro",
  32484. height: math.unit(1, "mm")
  32485. },
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(6 + 5/12, "feet"),
  32489. default: true
  32490. },
  32491. {
  32492. name: "Macro :3c",
  32493. height: math.unit(2, "miles")
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(6 + 2/12, "feet"),
  32502. weight: math.unit(250, "lb"),
  32503. name: "Front",
  32504. image: {
  32505. source: "./media/characters/moonlight/front.svg",
  32506. extra: 1044/908,
  32507. bottom: 56/1100
  32508. }
  32509. },
  32510. feral: {
  32511. height: math.unit(3 + 1/12, "feet"),
  32512. weight: math.unit(50, "kg"),
  32513. name: "Feral",
  32514. image: {
  32515. source: "./media/characters/moonlight/feral.svg",
  32516. extra: 3705/2791,
  32517. bottom: 145/3850
  32518. }
  32519. },
  32520. paw: {
  32521. height: math.unit(1, "feet"),
  32522. name: "Paw",
  32523. image: {
  32524. source: "./media/characters/moonlight/paw.svg"
  32525. }
  32526. },
  32527. paws: {
  32528. height: math.unit(0.98, "feet"),
  32529. name: "Paws",
  32530. image: {
  32531. source: "./media/characters/moonlight/paws.svg",
  32532. extra: 939/939,
  32533. bottom: 50/989
  32534. }
  32535. },
  32536. mouth: {
  32537. height: math.unit(0.48, "feet"),
  32538. name: "Mouth",
  32539. image: {
  32540. source: "./media/characters/moonlight/mouth.svg"
  32541. }
  32542. },
  32543. dick: {
  32544. height: math.unit(1.46, "feet"),
  32545. name: "Dick",
  32546. image: {
  32547. source: "./media/characters/moonlight/dick.svg"
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(6 + 2/12, "feet"),
  32555. default: true
  32556. },
  32557. {
  32558. name: "Macro",
  32559. height: math.unit(300, "feet")
  32560. },
  32561. {
  32562. name: "Macro+",
  32563. height: math.unit(1, "mile")
  32564. },
  32565. {
  32566. name: "Mt. Moon",
  32567. height: math.unit(5, "miles")
  32568. },
  32569. {
  32570. name: "Megamacro",
  32571. height: math.unit(15, "miles")
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32577. {
  32578. back: {
  32579. height: math.unit(6, "feet"),
  32580. weight: math.unit(150, "lb"),
  32581. name: "Back",
  32582. image: {
  32583. source: "./media/characters/sylen/back.svg",
  32584. extra: 1335/1273,
  32585. bottom: 107/1442
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Normal",
  32592. height: math.unit(5 + 5/12, "feet")
  32593. },
  32594. {
  32595. name: "Megamacro",
  32596. height: math.unit(3, "miles"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(6, "feet"),
  32606. weight: math.unit(190, "lb"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/huttser/front.svg",
  32610. extra: 1152/1058,
  32611. bottom: 23/1175
  32612. }
  32613. },
  32614. side: {
  32615. height: math.unit(6, "feet"),
  32616. weight: math.unit(190, "lb"),
  32617. name: "Side",
  32618. image: {
  32619. source: "./media/characters/huttser/side.svg",
  32620. extra: 1174/1065,
  32621. bottom: 18/1192
  32622. }
  32623. },
  32624. back: {
  32625. height: math.unit(6, "feet"),
  32626. weight: math.unit(190, "lb"),
  32627. name: "Back",
  32628. image: {
  32629. source: "./media/characters/huttser/back.svg",
  32630. extra: 1158/1056,
  32631. bottom: 12/1170
  32632. }
  32633. },
  32634. },
  32635. [
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32640. {
  32641. side: {
  32642. height: math.unit(12 + 9/12, "feet"),
  32643. weight: math.unit(15000, "lb"),
  32644. name: "Side",
  32645. image: {
  32646. source: "./media/characters/faan/side.svg",
  32647. extra: 2747/2697,
  32648. bottom: 0/2747
  32649. }
  32650. },
  32651. front: {
  32652. height: math.unit(12 + 9/12, "feet"),
  32653. weight: math.unit(15000, "lb"),
  32654. name: "Front",
  32655. image: {
  32656. source: "./media/characters/faan/front.svg",
  32657. extra: 607/571,
  32658. bottom: 24/631
  32659. }
  32660. },
  32661. head: {
  32662. height: math.unit(2.85, "feet"),
  32663. name: "Head",
  32664. image: {
  32665. source: "./media/characters/faan/head.svg"
  32666. }
  32667. },
  32668. headAlt: {
  32669. height: math.unit(3.13, "feet"),
  32670. name: "Head-alt",
  32671. image: {
  32672. source: "./media/characters/faan/head-alt.svg"
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(12 + 9/12, "feet"),
  32680. default: true
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32686. {
  32687. front: {
  32688. height: math.unit(6, "feet"),
  32689. weight: math.unit(300, "lb"),
  32690. name: "Front",
  32691. image: {
  32692. source: "./media/characters/tanio/front.svg",
  32693. extra: 711/673,
  32694. bottom: 25/736
  32695. }
  32696. },
  32697. },
  32698. [
  32699. {
  32700. name: "Normal",
  32701. height: math.unit(6, "feet"),
  32702. default: true
  32703. },
  32704. ]
  32705. ))
  32706. characterMakers.push(() => makeCharacter(
  32707. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32708. {
  32709. front: {
  32710. height: math.unit(3, "inches"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/noboru/front.svg",
  32714. extra: 1039/932,
  32715. bottom: 18/1057
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Micro",
  32722. height: math.unit(3, "inches"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(1.85, "meters"),
  32732. weight: math.unit(80, "kg"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/daniel-barrett/front.svg",
  32736. extra: 355/337,
  32737. bottom: 9/364
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Pico",
  32744. height: math.unit(0.0433, "mm")
  32745. },
  32746. {
  32747. name: "Nano",
  32748. height: math.unit(1.5, "mm")
  32749. },
  32750. {
  32751. name: "Micro",
  32752. height: math.unit(5.3, "cm"),
  32753. default: true
  32754. },
  32755. {
  32756. name: "Normal",
  32757. height: math.unit(1.85, "meters")
  32758. },
  32759. {
  32760. name: "Macro",
  32761. height: math.unit(64.7, "meters")
  32762. },
  32763. {
  32764. name: "Megamacro",
  32765. height: math.unit(2.26, "km")
  32766. },
  32767. {
  32768. name: "Gigamacro",
  32769. height: math.unit(79, "km")
  32770. },
  32771. {
  32772. name: "Teramacro",
  32773. height: math.unit(2765, "km")
  32774. },
  32775. {
  32776. name: "Petamacro",
  32777. height: math.unit(96678, "km")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(30, "meters"),
  32786. weight: math.unit(400, "tons"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/zeel/front.svg",
  32790. extra: 2599/2599,
  32791. bottom: 226/2825
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Macro",
  32798. height: math.unit(30, "meters"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(6 + 7/12, "feet"),
  32808. weight: math.unit(210, "lb"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/tarn/front.svg",
  32812. extra: 3517/3220,
  32813. bottom: 91/3608
  32814. }
  32815. },
  32816. back: {
  32817. height: math.unit(6 + 7/12, "feet"),
  32818. weight: math.unit(210, "lb"),
  32819. name: "Back",
  32820. image: {
  32821. source: "./media/characters/tarn/back.svg",
  32822. extra: 3566/3241,
  32823. bottom: 34/3600
  32824. }
  32825. },
  32826. dick: {
  32827. height: math.unit(1.65, "feet"),
  32828. name: "Dick",
  32829. image: {
  32830. source: "./media/characters/tarn/dick.svg"
  32831. }
  32832. },
  32833. paw: {
  32834. height: math.unit(1.80, "feet"),
  32835. name: "Paw",
  32836. image: {
  32837. source: "./media/characters/tarn/paw.svg"
  32838. }
  32839. },
  32840. tongue: {
  32841. height: math.unit(0.97, "feet"),
  32842. name: "Tongue",
  32843. image: {
  32844. source: "./media/characters/tarn/tongue.svg"
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Micro",
  32851. height: math.unit(4, "inches")
  32852. },
  32853. {
  32854. name: "Normal",
  32855. height: math.unit(6 + 7/12, "feet"),
  32856. default: true
  32857. },
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(300, "feet")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32866. {
  32867. front: {
  32868. height: math.unit(5 + 7/12, "feet"),
  32869. weight: math.unit(80, "kg"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32873. extra: 3023/2865,
  32874. bottom: 33/3056
  32875. }
  32876. },
  32877. back: {
  32878. height: math.unit(5 + 7/12, "feet"),
  32879. weight: math.unit(80, "kg"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32883. extra: 3020/2886,
  32884. bottom: 30/3050
  32885. }
  32886. },
  32887. dick: {
  32888. height: math.unit(0.98, "feet"),
  32889. name: "Dick",
  32890. image: {
  32891. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32892. }
  32893. },
  32894. anatomy: {
  32895. height: math.unit(2.86, "feet"),
  32896. name: "Anatomy",
  32897. image: {
  32898. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Really Small",
  32905. height: math.unit(2, "inches")
  32906. },
  32907. {
  32908. name: "Micro",
  32909. height: math.unit(5.583, "inches")
  32910. },
  32911. {
  32912. name: "Normal",
  32913. height: math.unit(5 + 7/12, "feet"),
  32914. default: true
  32915. },
  32916. {
  32917. name: "Macro",
  32918. height: math.unit(67, "feet")
  32919. },
  32920. {
  32921. name: "Megamacro",
  32922. height: math.unit(134, "feet")
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32928. {
  32929. front: {
  32930. height: math.unit(9, "feet"),
  32931. weight: math.unit(120, "lb"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/sally/front.svg",
  32935. extra: 1506/1349,
  32936. bottom: 66/1572
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(9, "feet"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(8, "feet"),
  32953. weight: math.unit(900, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/owen/front.svg",
  32957. extra: 1761/1657,
  32958. bottom: 74/1835
  32959. }
  32960. },
  32961. side: {
  32962. height: math.unit(8, "feet"),
  32963. weight: math.unit(900, "lb"),
  32964. name: "Side",
  32965. image: {
  32966. source: "./media/characters/owen/side.svg",
  32967. extra: 1797/1734,
  32968. bottom: 30/1827
  32969. }
  32970. },
  32971. back: {
  32972. height: math.unit(8, "feet"),
  32973. weight: math.unit(900, "lb"),
  32974. name: "Back",
  32975. image: {
  32976. source: "./media/characters/owen/back.svg",
  32977. extra: 1796/1706,
  32978. bottom: 59/1855
  32979. }
  32980. },
  32981. maw: {
  32982. height: math.unit(1.76, "feet"),
  32983. name: "Maw",
  32984. image: {
  32985. source: "./media/characters/owen/maw.svg"
  32986. }
  32987. },
  32988. },
  32989. [
  32990. {
  32991. name: "Normal",
  32992. height: math.unit(8, "feet"),
  32993. default: true
  32994. },
  32995. ]
  32996. ))
  32997. characterMakers.push(() => makeCharacter(
  32998. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32999. {
  33000. front: {
  33001. height: math.unit(4, "feet"),
  33002. weight: math.unit(400, "lb"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/ryth/front.svg",
  33006. extra: 1920/1748,
  33007. bottom: 42/1962
  33008. }
  33009. },
  33010. back: {
  33011. height: math.unit(4, "feet"),
  33012. weight: math.unit(400, "lb"),
  33013. name: "Back",
  33014. image: {
  33015. source: "./media/characters/ryth/back.svg",
  33016. extra: 1897/1690,
  33017. bottom: 89/1986
  33018. }
  33019. },
  33020. mouth: {
  33021. height: math.unit(1.39, "feet"),
  33022. name: "Mouth",
  33023. image: {
  33024. source: "./media/characters/ryth/mouth.svg"
  33025. }
  33026. },
  33027. tailmaw: {
  33028. height: math.unit(1.23, "feet"),
  33029. name: "Tailmaw",
  33030. image: {
  33031. source: "./media/characters/ryth/tailmaw.svg"
  33032. }
  33033. },
  33034. goia: {
  33035. height: math.unit(4, "meters"),
  33036. weight: math.unit(10800, "lb"),
  33037. name: "Goia",
  33038. image: {
  33039. source: "./media/characters/ryth/goia.svg",
  33040. extra: 745/640,
  33041. bottom: 107/852
  33042. }
  33043. },
  33044. goiaFront: {
  33045. height: math.unit(4, "meters"),
  33046. weight: math.unit(10800, "lb"),
  33047. name: "Goia (Front)",
  33048. image: {
  33049. source: "./media/characters/ryth/goia-front.svg",
  33050. extra: 750/586,
  33051. bottom: 114/864
  33052. }
  33053. },
  33054. goiaMaw: {
  33055. height: math.unit(5.55, "feet"),
  33056. name: "Goia Maw",
  33057. image: {
  33058. source: "./media/characters/ryth/goia-maw.svg"
  33059. }
  33060. },
  33061. goiaForepaw: {
  33062. height: math.unit(3.5, "feet"),
  33063. name: "Goia Forepaw",
  33064. image: {
  33065. source: "./media/characters/ryth/goia-forepaw.svg"
  33066. }
  33067. },
  33068. goiaHindpaw: {
  33069. height: math.unit(5.55, "feet"),
  33070. name: "Goia Hindpaw",
  33071. image: {
  33072. source: "./media/characters/ryth/goia-hindpaw.svg"
  33073. }
  33074. },
  33075. },
  33076. [
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(4, "feet"),
  33080. default: true
  33081. },
  33082. ]
  33083. ))
  33084. characterMakers.push(() => makeCharacter(
  33085. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33086. {
  33087. front: {
  33088. height: math.unit(7, "feet"),
  33089. weight: math.unit(180, "lb"),
  33090. name: "Front",
  33091. image: {
  33092. source: "./media/characters/necrolance/front.svg",
  33093. extra: 1062/947,
  33094. bottom: 41/1103
  33095. }
  33096. },
  33097. back: {
  33098. height: math.unit(7, "feet"),
  33099. weight: math.unit(180, "lb"),
  33100. name: "Back",
  33101. image: {
  33102. source: "./media/characters/necrolance/back.svg",
  33103. extra: 1045/984,
  33104. bottom: 14/1059
  33105. }
  33106. },
  33107. wing: {
  33108. height: math.unit(2.67, "feet"),
  33109. name: "Wing",
  33110. image: {
  33111. source: "./media/characters/necrolance/wing.svg"
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(7, "feet"),
  33119. default: true
  33120. },
  33121. ]
  33122. ))
  33123. characterMakers.push(() => makeCharacter(
  33124. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33125. {
  33126. front: {
  33127. height: math.unit(76, "meters"),
  33128. weight: math.unit(30000, "tons"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/tyler/front.svg",
  33132. extra: 1640/1640,
  33133. bottom: 114/1754
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Macro",
  33140. height: math.unit(76, "meters"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33147. {
  33148. front: {
  33149. height: math.unit(4 + 11/12, "feet"),
  33150. weight: math.unit(132, "lb"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/icey/front.svg",
  33154. extra: 2750/2550,
  33155. bottom: 33/2783
  33156. }
  33157. },
  33158. back: {
  33159. height: math.unit(4 + 11/12, "feet"),
  33160. weight: math.unit(132, "lb"),
  33161. name: "Back",
  33162. image: {
  33163. source: "./media/characters/icey/back.svg",
  33164. extra: 2624/2481,
  33165. bottom: 35/2659
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(4 + 11/12, "feet"),
  33173. default: true
  33174. },
  33175. ]
  33176. ))
  33177. characterMakers.push(() => makeCharacter(
  33178. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33179. {
  33180. front: {
  33181. height: math.unit(100, "feet"),
  33182. weight: math.unit(0, "lb"),
  33183. name: "Front",
  33184. image: {
  33185. source: "./media/characters/smile/front.svg",
  33186. extra: 2983/2912,
  33187. bottom: 162/3145
  33188. }
  33189. },
  33190. back: {
  33191. height: math.unit(100, "feet"),
  33192. weight: math.unit(0, "lb"),
  33193. name: "Back",
  33194. image: {
  33195. source: "./media/characters/smile/back.svg",
  33196. extra: 3143/3031,
  33197. bottom: 91/3234
  33198. }
  33199. },
  33200. head: {
  33201. height: math.unit(26.3, "feet"),
  33202. weight: math.unit(0, "lb"),
  33203. name: "Head",
  33204. image: {
  33205. source: "./media/characters/smile/head.svg"
  33206. }
  33207. },
  33208. collar: {
  33209. height: math.unit(5.3, "feet"),
  33210. weight: math.unit(0, "lb"),
  33211. name: "Collar",
  33212. image: {
  33213. source: "./media/characters/smile/collar.svg"
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(100, "feet"),
  33221. default: true
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33227. {
  33228. dragon: {
  33229. height: math.unit(26, "feet"),
  33230. weight: math.unit(36, "tons"),
  33231. name: "Dragon",
  33232. image: {
  33233. source: "./media/characters/arimphae/dragon.svg",
  33234. extra: 1574/983,
  33235. bottom: 357/1931
  33236. }
  33237. },
  33238. drake: {
  33239. height: math.unit(9, "feet"),
  33240. weight: math.unit(1.5, "tons"),
  33241. name: "Drake",
  33242. image: {
  33243. source: "./media/characters/arimphae/drake.svg",
  33244. extra: 1120/925,
  33245. bottom: 435/1555
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Small",
  33252. height: math.unit(26*5/9, "feet")
  33253. },
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(26, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(8 + 9/12, "feet"),
  33266. name: "Front",
  33267. image: {
  33268. source: "./media/characters/xander/front.svg",
  33269. extra: 1237/974,
  33270. bottom: 94/1331
  33271. }
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(8 + 9/12, "feet"),
  33278. default: true
  33279. },
  33280. {
  33281. name: "Gaze Grabber",
  33282. height: math.unit(13 + 8/12, "feet")
  33283. },
  33284. {
  33285. name: "Jaw Dropper",
  33286. height: math.unit(27, "feet")
  33287. },
  33288. {
  33289. name: "Show Stopper",
  33290. height: math.unit(136, "feet")
  33291. },
  33292. {
  33293. name: "Superstar",
  33294. height: math.unit(1.9e6, "miles")
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33300. {
  33301. side: {
  33302. height: math.unit(2100, "feet"),
  33303. name: "Side",
  33304. image: {
  33305. source: "./media/characters/osiris/side.svg",
  33306. extra: 1105/939,
  33307. bottom: 167/1272
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Macro",
  33314. height: math.unit(2100, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(6 + 8/12, "feet"),
  33324. weight: math.unit(225, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/rhys-londe/front.svg",
  33328. extra: 2258/2141,
  33329. bottom: 188/2446
  33330. }
  33331. },
  33332. back: {
  33333. height: math.unit(6 + 8/12, "feet"),
  33334. weight: math.unit(225, "lb"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/rhys-londe/back.svg",
  33338. extra: 2237/2137,
  33339. bottom: 63/2300
  33340. }
  33341. },
  33342. frontNsfw: {
  33343. height: math.unit(6 + 8/12, "feet"),
  33344. weight: math.unit(225, "lb"),
  33345. name: "Front (NSFW)",
  33346. image: {
  33347. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33348. extra: 2258/2141,
  33349. bottom: 188/2446
  33350. }
  33351. },
  33352. backNsfw: {
  33353. height: math.unit(6 + 8/12, "feet"),
  33354. weight: math.unit(225, "lb"),
  33355. name: "Back (NSFW)",
  33356. image: {
  33357. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33358. extra: 2237/2137,
  33359. bottom: 63/2300
  33360. }
  33361. },
  33362. dick: {
  33363. height: math.unit(30, "inches"),
  33364. name: "Dick",
  33365. image: {
  33366. source: "./media/characters/rhys-londe/dick.svg"
  33367. }
  33368. },
  33369. maw: {
  33370. height: math.unit(1.6, "feet"),
  33371. name: "Maw",
  33372. image: {
  33373. source: "./media/characters/rhys-londe/maw.svg"
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(6 + 8/12, "feet"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33387. {
  33388. front: {
  33389. height: math.unit(3 + 10/12, "feet"),
  33390. weight: math.unit(90, "lb"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/taivas-ensim/front.svg",
  33394. extra: 1327/1216,
  33395. bottom: 96/1423
  33396. }
  33397. },
  33398. back: {
  33399. height: math.unit(3 + 10/12, "feet"),
  33400. weight: math.unit(90, "lb"),
  33401. name: "Back",
  33402. image: {
  33403. source: "./media/characters/taivas-ensim/back.svg",
  33404. extra: 1355/1247,
  33405. bottom: 11/1366
  33406. }
  33407. },
  33408. frontNsfw: {
  33409. height: math.unit(3 + 10/12, "feet"),
  33410. weight: math.unit(90, "lb"),
  33411. name: "Front (NSFW)",
  33412. image: {
  33413. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33414. extra: 1327/1216,
  33415. bottom: 96/1423
  33416. }
  33417. },
  33418. backNsfw: {
  33419. height: math.unit(3 + 10/12, "feet"),
  33420. weight: math.unit(90, "lb"),
  33421. name: "Back (NSFW)",
  33422. image: {
  33423. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33424. extra: 1355/1247,
  33425. bottom: 11/1366
  33426. }
  33427. },
  33428. },
  33429. [
  33430. {
  33431. name: "Normal",
  33432. height: math.unit(3 + 10/12, "feet"),
  33433. default: true
  33434. },
  33435. ]
  33436. ))
  33437. characterMakers.push(() => makeCharacter(
  33438. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33439. {
  33440. front: {
  33441. height: math.unit(9 + 6/12, "feet"),
  33442. weight: math.unit(940, "lb"),
  33443. name: "Front",
  33444. image: {
  33445. source: "./media/characters/byliss/front.svg",
  33446. extra: 1327/1290,
  33447. bottom: 82/1409
  33448. }
  33449. },
  33450. back: {
  33451. height: math.unit(9 + 6/12, "feet"),
  33452. weight: math.unit(940, "lb"),
  33453. name: "Back",
  33454. image: {
  33455. source: "./media/characters/byliss/back.svg",
  33456. extra: 1376/1349,
  33457. bottom: 9/1385
  33458. }
  33459. },
  33460. frontNsfw: {
  33461. height: math.unit(9 + 6/12, "feet"),
  33462. weight: math.unit(940, "lb"),
  33463. name: "Front (NSFW)",
  33464. image: {
  33465. source: "./media/characters/byliss/front-nsfw.svg",
  33466. extra: 1327/1290,
  33467. bottom: 82/1409
  33468. }
  33469. },
  33470. backNsfw: {
  33471. height: math.unit(9 + 6/12, "feet"),
  33472. weight: math.unit(940, "lb"),
  33473. name: "Back (NSFW)",
  33474. image: {
  33475. source: "./media/characters/byliss/back-nsfw.svg",
  33476. extra: 1376/1349,
  33477. bottom: 9/1385
  33478. }
  33479. },
  33480. },
  33481. [
  33482. {
  33483. name: "Normal",
  33484. height: math.unit(9 + 6/12, "feet"),
  33485. default: true
  33486. },
  33487. ]
  33488. ))
  33489. characterMakers.push(() => makeCharacter(
  33490. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33491. {
  33492. front: {
  33493. height: math.unit(5 + 2/12, "feet"),
  33494. weight: math.unit(200, "lb"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/noraly/front.svg",
  33498. extra: 4985/4773,
  33499. bottom: 150/5135
  33500. }
  33501. },
  33502. full: {
  33503. height: math.unit(5 + 2/12, "feet"),
  33504. weight: math.unit(164, "lb"),
  33505. name: "Full",
  33506. image: {
  33507. source: "./media/characters/noraly/full.svg",
  33508. extra: 1114/1059,
  33509. bottom: 35/1149
  33510. }
  33511. },
  33512. fuller: {
  33513. height: math.unit(5 + 2/12, "feet"),
  33514. weight: math.unit(230, "lb"),
  33515. name: "Fuller",
  33516. image: {
  33517. source: "./media/characters/noraly/fuller.svg",
  33518. extra: 1114/1059,
  33519. bottom: 35/1149
  33520. }
  33521. },
  33522. fullest: {
  33523. height: math.unit(5 + 2/12, "feet"),
  33524. weight: math.unit(300, "lb"),
  33525. name: "Fullest",
  33526. image: {
  33527. source: "./media/characters/noraly/fullest.svg",
  33528. extra: 1114/1059,
  33529. bottom: 35/1149
  33530. }
  33531. },
  33532. },
  33533. [
  33534. {
  33535. name: "Normal",
  33536. height: math.unit(5 + 2/12, "feet"),
  33537. default: true
  33538. },
  33539. ]
  33540. ))
  33541. characterMakers.push(() => makeCharacter(
  33542. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33543. {
  33544. front: {
  33545. height: math.unit(5 + 2/12, "feet"),
  33546. weight: math.unit(210, "lb"),
  33547. name: "Front",
  33548. image: {
  33549. source: "./media/characters/pera/front.svg",
  33550. extra: 1560/1531,
  33551. bottom: 165/1725
  33552. }
  33553. },
  33554. back: {
  33555. height: math.unit(5 + 2/12, "feet"),
  33556. weight: math.unit(210, "lb"),
  33557. name: "Back",
  33558. image: {
  33559. source: "./media/characters/pera/back.svg",
  33560. extra: 1523/1493,
  33561. bottom: 152/1675
  33562. }
  33563. },
  33564. dick: {
  33565. height: math.unit(2.4, "feet"),
  33566. name: "Dick",
  33567. image: {
  33568. source: "./media/characters/pera/dick.svg"
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(5 + 2/12, "feet"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(12, "feet"),
  33585. weight: math.unit(3200, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/julian/front.svg",
  33589. extra: 2962/2701,
  33590. bottom: 184/3146
  33591. }
  33592. },
  33593. maw: {
  33594. height: math.unit(5.35, "feet"),
  33595. name: "Maw",
  33596. image: {
  33597. source: "./media/characters/julian/maw.svg"
  33598. }
  33599. },
  33600. paw: {
  33601. height: math.unit(3.07, "feet"),
  33602. name: "Paw",
  33603. image: {
  33604. source: "./media/characters/julian/paw.svg"
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Default",
  33611. height: math.unit(12, "feet"),
  33612. default: true
  33613. },
  33614. {
  33615. name: "Big",
  33616. height: math.unit(50, "feet")
  33617. },
  33618. {
  33619. name: "Really Big",
  33620. height: math.unit(1, "mile")
  33621. },
  33622. {
  33623. name: "Extremely Big",
  33624. height: math.unit(100, "miles")
  33625. },
  33626. {
  33627. name: "Planet Hugger",
  33628. height: math.unit(200, "megameters")
  33629. },
  33630. {
  33631. name: "Unreasonably Big",
  33632. height: math.unit(1e300, "meters")
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33638. {
  33639. solgooleo: {
  33640. height: math.unit(4, "meters"),
  33641. weight: math.unit(6000*1.5, "kg"),
  33642. volume: math.unit(6000, "liters"),
  33643. name: "Solgooleo",
  33644. image: {
  33645. source: "./media/characters/pi/solgooleo.svg",
  33646. extra: 388/331,
  33647. bottom: 29/417
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(4, "meters"),
  33655. default: true
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33661. {
  33662. front: {
  33663. height: math.unit(8, "feet"),
  33664. weight: math.unit(4, "tons"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/shaun/front.svg",
  33668. extra: 503/495,
  33669. bottom: 20/523
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(8, "feet"),
  33674. weight: math.unit(4, "tons"),
  33675. name: "Back",
  33676. image: {
  33677. source: "./media/characters/shaun/back.svg",
  33678. extra: 487/480,
  33679. bottom: 20/507
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Lorg",
  33686. height: math.unit(8, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33693. {
  33694. frontAnthro: {
  33695. height: math.unit(7, "feet"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/sini/front-anthro.svg",
  33699. extra: 726/678,
  33700. bottom: 35/761
  33701. },
  33702. form: "anthro",
  33703. default: true
  33704. },
  33705. backAnthro: {
  33706. height: math.unit(7, "feet"),
  33707. name: "Back",
  33708. image: {
  33709. source: "./media/characters/sini/back-anthro.svg",
  33710. extra: 743/701,
  33711. bottom: 12/755
  33712. },
  33713. form: "anthro",
  33714. },
  33715. frontAnthroNsfw: {
  33716. height: math.unit(7, "feet"),
  33717. name: "Front (NSFW)",
  33718. image: {
  33719. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33720. extra: 726/678,
  33721. bottom: 35/761
  33722. },
  33723. form: "anthro"
  33724. },
  33725. backAnthroNsfw: {
  33726. height: math.unit(7, "feet"),
  33727. name: "Back (NSFW)",
  33728. image: {
  33729. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33730. extra: 743/701,
  33731. bottom: 12/755
  33732. },
  33733. form: "anthro",
  33734. },
  33735. mawAnthro: {
  33736. height: math.unit(2.14, "feet"),
  33737. name: "Maw",
  33738. image: {
  33739. source: "./media/characters/sini/maw-anthro.svg"
  33740. },
  33741. form: "anthro"
  33742. },
  33743. dick: {
  33744. height: math.unit(1.45, "feet"),
  33745. name: "Dick",
  33746. image: {
  33747. source: "./media/characters/sini/dick-anthro.svg"
  33748. },
  33749. form: "anthro"
  33750. },
  33751. feral: {
  33752. height: math.unit(16, "feet"),
  33753. name: "Feral",
  33754. image: {
  33755. source: "./media/characters/sini/feral.svg",
  33756. extra: 814/605,
  33757. bottom: 11/825
  33758. },
  33759. form: "feral",
  33760. default: true
  33761. },
  33762. feralNsfw: {
  33763. height: math.unit(16, "feet"),
  33764. name: "Feral (NSFW)",
  33765. image: {
  33766. source: "./media/characters/sini/feral-nsfw.svg",
  33767. extra: 814/605,
  33768. bottom: 11/825
  33769. },
  33770. form: "feral"
  33771. },
  33772. mawFeral: {
  33773. height: math.unit(5.66, "feet"),
  33774. name: "Maw",
  33775. image: {
  33776. source: "./media/characters/sini/maw-feral.svg"
  33777. },
  33778. form: "feral",
  33779. },
  33780. pawFeral: {
  33781. height: math.unit(5.17, "feet"),
  33782. name: "Paw",
  33783. image: {
  33784. source: "./media/characters/sini/paw-feral.svg"
  33785. },
  33786. form: "feral",
  33787. },
  33788. rumpFeral: {
  33789. height: math.unit(13.11, "feet"),
  33790. name: "Rump",
  33791. image: {
  33792. source: "./media/characters/sini/rump-feral.svg"
  33793. },
  33794. form: "feral",
  33795. },
  33796. dickFeral: {
  33797. height: math.unit(1, "feet"),
  33798. name: "Dick",
  33799. image: {
  33800. source: "./media/characters/sini/dick-feral.svg"
  33801. },
  33802. form: "feral",
  33803. },
  33804. eyeFeral: {
  33805. height: math.unit(1.23, "feet"),
  33806. name: "Eye",
  33807. image: {
  33808. source: "./media/characters/sini/eye-feral.svg"
  33809. },
  33810. form: "feral",
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(7, "feet"),
  33817. default: true,
  33818. form: "anthro"
  33819. },
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(16, "feet"),
  33823. default: true,
  33824. form: "feral"
  33825. },
  33826. ],
  33827. {
  33828. "anthro": {
  33829. name: "Anthro",
  33830. default: true
  33831. },
  33832. "feral": {
  33833. name: "Feral",
  33834. }
  33835. }
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33839. {
  33840. side: {
  33841. height: math.unit(13, "meters"),
  33842. weight: math.unit(9072, "kg"),
  33843. name: "Side",
  33844. image: {
  33845. source: "./media/characters/raylldo/side.svg",
  33846. extra: 403/344,
  33847. bottom: 42/445
  33848. }
  33849. },
  33850. leaping: {
  33851. height: math.unit(12.3, "meters"),
  33852. weight: math.unit(9072, "kg"),
  33853. name: "Leaping",
  33854. image: {
  33855. source: "./media/characters/raylldo/leaping.svg",
  33856. extra: 470/249,
  33857. bottom: 13/483
  33858. }
  33859. },
  33860. flying: {
  33861. height: math.unit(18, "meters"),
  33862. weight: math.unit(9072, "kg"),
  33863. name: "Flying",
  33864. image: {
  33865. source: "./media/characters/raylldo/flying.svg"
  33866. }
  33867. },
  33868. head: {
  33869. height: math.unit(5.85, "meters"),
  33870. name: "Head",
  33871. image: {
  33872. source: "./media/characters/raylldo/head.svg"
  33873. }
  33874. },
  33875. maw: {
  33876. height: math.unit(5.32, "meters"),
  33877. name: "Maw",
  33878. image: {
  33879. source: "./media/characters/raylldo/maw.svg"
  33880. }
  33881. },
  33882. eye: {
  33883. height: math.unit(0.54, "meters"),
  33884. name: "Eye",
  33885. image: {
  33886. source: "./media/characters/raylldo/eye.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(13, "meters"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33900. {
  33901. anthroFront: {
  33902. height: math.unit(9, "feet"),
  33903. weight: math.unit(600, "lb"),
  33904. name: "Anthro (Front)",
  33905. image: {
  33906. source: "./media/characters/glint/anthro-front.svg",
  33907. extra: 1097/1018,
  33908. bottom: 28/1125
  33909. }
  33910. },
  33911. anthroBack: {
  33912. height: math.unit(9, "feet"),
  33913. weight: math.unit(600, "lb"),
  33914. name: "Anthro (Back)",
  33915. image: {
  33916. source: "./media/characters/glint/anthro-back.svg",
  33917. extra: 1154/997,
  33918. bottom: 36/1190
  33919. }
  33920. },
  33921. feral: {
  33922. height: math.unit(11, "feet"),
  33923. weight: math.unit(50000, "lb"),
  33924. name: "Feral",
  33925. image: {
  33926. source: "./media/characters/glint/feral.svg",
  33927. extra: 3035/1585,
  33928. bottom: 1169/4204
  33929. }
  33930. },
  33931. dickAnthro: {
  33932. height: math.unit(0.7, "meters"),
  33933. name: "Dick (Anthro)",
  33934. image: {
  33935. source: "./media/characters/glint/dick-anthro.svg"
  33936. }
  33937. },
  33938. dickFeral: {
  33939. height: math.unit(2.65, "meters"),
  33940. name: "Dick (Feral)",
  33941. image: {
  33942. source: "./media/characters/glint/dick-feral.svg"
  33943. }
  33944. },
  33945. slitHidden: {
  33946. height: math.unit(5.85, "meters"),
  33947. name: "Slit (Hidden)",
  33948. image: {
  33949. source: "./media/characters/glint/slit-hidden.svg"
  33950. }
  33951. },
  33952. slitErect: {
  33953. height: math.unit(5.85, "meters"),
  33954. name: "Slit (Erect)",
  33955. image: {
  33956. source: "./media/characters/glint/slit-erect.svg"
  33957. }
  33958. },
  33959. mawAnthro: {
  33960. height: math.unit(0.63, "meters"),
  33961. name: "Maw (Anthro)",
  33962. image: {
  33963. source: "./media/characters/glint/maw.svg"
  33964. }
  33965. },
  33966. mawFeral: {
  33967. height: math.unit(2.89, "meters"),
  33968. name: "Maw (Feral)",
  33969. image: {
  33970. source: "./media/characters/glint/maw.svg"
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(9, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33984. {
  33985. side: {
  33986. height: math.unit(15, "feet"),
  33987. weight: math.unit(5000, "kg"),
  33988. name: "Side",
  33989. image: {
  33990. source: "./media/characters/kairne/side.svg",
  33991. extra: 979/811,
  33992. bottom: 13/992
  33993. }
  33994. },
  33995. front: {
  33996. height: math.unit(15, "feet"),
  33997. weight: math.unit(5000, "kg"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/kairne/front.svg",
  34001. extra: 908/814,
  34002. bottom: 26/934
  34003. }
  34004. },
  34005. sideNsfw: {
  34006. height: math.unit(15, "feet"),
  34007. weight: math.unit(5000, "kg"),
  34008. name: "Side (NSFW)",
  34009. image: {
  34010. source: "./media/characters/kairne/side-nsfw.svg",
  34011. extra: 979/811,
  34012. bottom: 13/992
  34013. }
  34014. },
  34015. frontNsfw: {
  34016. height: math.unit(15, "feet"),
  34017. weight: math.unit(5000, "kg"),
  34018. name: "Front (NSFW)",
  34019. image: {
  34020. source: "./media/characters/kairne/front-nsfw.svg",
  34021. extra: 908/814,
  34022. bottom: 26/934
  34023. }
  34024. },
  34025. dickCaged: {
  34026. height: math.unit(0.65, "meters"),
  34027. name: "Dick-caged",
  34028. image: {
  34029. source: "./media/characters/kairne/dick-caged.svg"
  34030. }
  34031. },
  34032. dick: {
  34033. height: math.unit(0.79, "meters"),
  34034. name: "Dick",
  34035. image: {
  34036. source: "./media/characters/kairne/dick.svg"
  34037. }
  34038. },
  34039. genitals: {
  34040. height: math.unit(1.29, "meters"),
  34041. name: "Genitals",
  34042. image: {
  34043. source: "./media/characters/kairne/genitals.svg"
  34044. }
  34045. },
  34046. maw: {
  34047. height: math.unit(1.73, "meters"),
  34048. name: "Maw",
  34049. image: {
  34050. source: "./media/characters/kairne/maw.svg"
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(15, "feet"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(5 + 8/12, "feet"),
  34067. weight: math.unit(139, "lb"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/biscuit-jackal/front.svg",
  34071. extra: 2106/1961,
  34072. bottom: 58/2164
  34073. }
  34074. },
  34075. back: {
  34076. height: math.unit(5 + 8/12, "feet"),
  34077. weight: math.unit(139, "lb"),
  34078. name: "Back",
  34079. image: {
  34080. source: "./media/characters/biscuit-jackal/back.svg",
  34081. extra: 2132/1976,
  34082. bottom: 57/2189
  34083. }
  34084. },
  34085. werejackal: {
  34086. height: math.unit(6 + 3/12, "feet"),
  34087. weight: math.unit(188, "lb"),
  34088. name: "Werejackal",
  34089. image: {
  34090. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34091. extra: 2373/2178,
  34092. bottom: 53/2426
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Normal",
  34099. height: math.unit(5 + 8/12, "feet"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34106. {
  34107. front: {
  34108. height: math.unit(140, "cm"),
  34109. weight: math.unit(45, "kg"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/tayra-white/front.svg",
  34113. extra: 2229/2192,
  34114. bottom: 75/2304
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(140, "cm"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(4 + 5/12, "feet"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/scoop/front.svg",
  34134. extra: 1257/1136,
  34135. bottom: 69/1326
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(4 + 5/12, "feet"),
  34140. name: "Back",
  34141. image: {
  34142. source: "./media/characters/scoop/back.svg",
  34143. extra: 1321/1152,
  34144. bottom: 32/1353
  34145. }
  34146. },
  34147. maw: {
  34148. height: math.unit(0.68, "feet"),
  34149. name: "Maw",
  34150. image: {
  34151. source: "./media/characters/scoop/maw.svg"
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Really Small",
  34158. height: math.unit(1, "mm")
  34159. },
  34160. {
  34161. name: "Micro",
  34162. height: math.unit(1, "inch")
  34163. },
  34164. {
  34165. name: "Normal",
  34166. height: math.unit(4 + 5/12, "feet"),
  34167. default: true
  34168. },
  34169. {
  34170. name: "Macro",
  34171. height: math.unit(200, "feet")
  34172. },
  34173. {
  34174. name: "Megamacro",
  34175. height: math.unit(3240, "feet")
  34176. },
  34177. {
  34178. name: "Teramacro",
  34179. height: math.unit(2500, "miles")
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34185. {
  34186. front: {
  34187. height: math.unit(15 + 7/12, "feet"),
  34188. weight: math.unit(1150, "tons"),
  34189. name: "Front",
  34190. image: {
  34191. source: "./media/characters/saphinara/front.svg",
  34192. extra: 1837/1643,
  34193. bottom: 84/1921
  34194. },
  34195. form: "normal",
  34196. default: true
  34197. },
  34198. side: {
  34199. height: math.unit(15 + 7/12, "feet"),
  34200. weight: math.unit(1150, "tons"),
  34201. name: "Side",
  34202. image: {
  34203. source: "./media/characters/saphinara/side.svg",
  34204. extra: 605/547,
  34205. bottom: 6/611
  34206. },
  34207. form: "normal"
  34208. },
  34209. back: {
  34210. height: math.unit(15 + 7/12, "feet"),
  34211. weight: math.unit(1150, "tons"),
  34212. name: "Back",
  34213. image: {
  34214. source: "./media/characters/saphinara/back.svg",
  34215. extra: 591/531,
  34216. bottom: 13/604
  34217. },
  34218. form: "normal"
  34219. },
  34220. frontTail: {
  34221. height: math.unit(15 + 7/12, "feet"),
  34222. weight: math.unit(1150, "tons"),
  34223. name: "Front (Full Tail)",
  34224. image: {
  34225. source: "./media/characters/saphinara/front-tail.svg",
  34226. extra: 2256/1630,
  34227. bottom: 261/2517
  34228. },
  34229. form: "normal"
  34230. },
  34231. insides: {
  34232. height: math.unit(11.92, "feet"),
  34233. name: "Insides",
  34234. image: {
  34235. source: "./media/characters/saphinara/insides.svg"
  34236. },
  34237. form: "normal"
  34238. },
  34239. head: {
  34240. height: math.unit(4.17, "feet"),
  34241. name: "Head",
  34242. image: {
  34243. source: "./media/characters/saphinara/head.svg"
  34244. },
  34245. form: "normal"
  34246. },
  34247. tongue: {
  34248. height: math.unit(4.60, "feet"),
  34249. name: "Tongue",
  34250. image: {
  34251. source: "./media/characters/saphinara/tongue.svg"
  34252. },
  34253. form: "normal"
  34254. },
  34255. headEnraged: {
  34256. height: math.unit(5.55, "feet"),
  34257. name: "Head (Enraged)",
  34258. image: {
  34259. source: "./media/characters/saphinara/head-enraged.svg"
  34260. },
  34261. form: "normal"
  34262. },
  34263. wings: {
  34264. height: math.unit(11.95, "feet"),
  34265. name: "Wings",
  34266. image: {
  34267. source: "./media/characters/saphinara/wings.svg"
  34268. },
  34269. form: "normal"
  34270. },
  34271. feathers: {
  34272. height: math.unit(8.92, "feet"),
  34273. name: "Feathers",
  34274. image: {
  34275. source: "./media/characters/saphinara/feathers.svg"
  34276. },
  34277. form: "normal"
  34278. },
  34279. shackles: {
  34280. height: math.unit(2, "feet"),
  34281. name: "Shackles",
  34282. image: {
  34283. source: "./media/characters/saphinara/shackles.svg"
  34284. },
  34285. form: "normal"
  34286. },
  34287. eyes: {
  34288. height: math.unit(1.331, "feet"),
  34289. name: "Eyes",
  34290. image: {
  34291. source: "./media/characters/saphinara/eyes.svg"
  34292. },
  34293. form: "normal"
  34294. },
  34295. eyesEnraged: {
  34296. height: math.unit(1.331, "feet"),
  34297. name: "Eyes (Enraged)",
  34298. image: {
  34299. source: "./media/characters/saphinara/eyes-enraged.svg"
  34300. },
  34301. form: "normal"
  34302. },
  34303. trueFormSide: {
  34304. height: math.unit(200, "feet"),
  34305. weight: math.unit(1e7, "tons"),
  34306. name: "Side",
  34307. image: {
  34308. source: "./media/characters/saphinara/true-form-side.svg",
  34309. extra: 1399/770,
  34310. bottom: 97/1496
  34311. },
  34312. form: "true-form",
  34313. default: true
  34314. },
  34315. trueFormMaw: {
  34316. height: math.unit(71.5, "feet"),
  34317. name: "Maw",
  34318. image: {
  34319. source: "./media/characters/saphinara/true-form-maw.svg",
  34320. extra: 2302/1453,
  34321. bottom: 0/2302
  34322. },
  34323. form: "true-form"
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Normal",
  34329. height: math.unit(15 + 7/12, "feet"),
  34330. default: true,
  34331. form: "normal"
  34332. },
  34333. {
  34334. name: "Angry",
  34335. height: math.unit(30 + 6/12, "feet"),
  34336. form: "normal"
  34337. },
  34338. {
  34339. name: "Enraged",
  34340. height: math.unit(102 + 1/12, "feet"),
  34341. form: "normal"
  34342. },
  34343. {
  34344. name: "True",
  34345. height: math.unit(200, "feet"),
  34346. default: true,
  34347. form: "true-form"
  34348. }
  34349. ],
  34350. {
  34351. "normal": {
  34352. name: "Normal",
  34353. default: true
  34354. },
  34355. "true-form": {
  34356. name: "True Form"
  34357. }
  34358. }
  34359. ))
  34360. characterMakers.push(() => makeCharacter(
  34361. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34362. {
  34363. front: {
  34364. height: math.unit(6 + 8/12, "feet"),
  34365. weight: math.unit(300, "lb"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/jrain/front.svg",
  34369. extra: 3039/2865,
  34370. bottom: 399/3438
  34371. }
  34372. },
  34373. back: {
  34374. height: math.unit(6 + 8/12, "feet"),
  34375. weight: math.unit(300, "lb"),
  34376. name: "Back",
  34377. image: {
  34378. source: "./media/characters/jrain/back.svg",
  34379. extra: 3089/2938,
  34380. bottom: 172/3261
  34381. }
  34382. },
  34383. head: {
  34384. height: math.unit(2.14, "feet"),
  34385. name: "Head",
  34386. image: {
  34387. source: "./media/characters/jrain/head.svg"
  34388. }
  34389. },
  34390. maw: {
  34391. height: math.unit(1.77, "feet"),
  34392. name: "Maw",
  34393. image: {
  34394. source: "./media/characters/jrain/maw.svg"
  34395. }
  34396. },
  34397. leftHand: {
  34398. height: math.unit(1.1, "feet"),
  34399. name: "Left Hand",
  34400. image: {
  34401. source: "./media/characters/jrain/left-hand.svg"
  34402. }
  34403. },
  34404. rightHand: {
  34405. height: math.unit(1.1, "feet"),
  34406. name: "Right Hand",
  34407. image: {
  34408. source: "./media/characters/jrain/right-hand.svg"
  34409. }
  34410. },
  34411. eye: {
  34412. height: math.unit(0.35, "feet"),
  34413. name: "Eye",
  34414. image: {
  34415. source: "./media/characters/jrain/eye.svg"
  34416. }
  34417. },
  34418. },
  34419. [
  34420. {
  34421. name: "Normal",
  34422. height: math.unit(6 + 8/12, "feet"),
  34423. default: true
  34424. },
  34425. {
  34426. name: "Casually Large",
  34427. height: math.unit(25, "feet")
  34428. },
  34429. {
  34430. name: "Giant",
  34431. height: math.unit(100, "feet")
  34432. },
  34433. {
  34434. name: "Kaiju",
  34435. height: math.unit(300, "feet")
  34436. },
  34437. ]
  34438. ))
  34439. characterMakers.push(() => makeCharacter(
  34440. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34441. {
  34442. dragon: {
  34443. height: math.unit(5, "meters"),
  34444. name: "Dragon",
  34445. image: {
  34446. source: "./media/characters/sabrina/dragon.svg",
  34447. extra: 3670 / 2365,
  34448. bottom: 333 / 4003
  34449. }
  34450. },
  34451. gryphon: {
  34452. height: math.unit(3, "meters"),
  34453. name: "Gryphon",
  34454. image: {
  34455. source: "./media/characters/sabrina/gryphon.svg",
  34456. extra: 1576 / 945,
  34457. bottom: 71 / 1647
  34458. }
  34459. },
  34460. snake: {
  34461. height: math.unit(12, "meters"),
  34462. name: "Snake",
  34463. image: {
  34464. source: "./media/characters/sabrina/snake.svg",
  34465. extra: 1758 / 1320,
  34466. bottom: 186 / 1944
  34467. }
  34468. },
  34469. collar: {
  34470. height: math.unit(1.86, "meters"),
  34471. name: "Collar",
  34472. image: {
  34473. source: "./media/characters/sabrina/collar.svg"
  34474. }
  34475. },
  34476. eye: {
  34477. height: math.unit(0.53, "meters"),
  34478. name: "Eye",
  34479. image: {
  34480. source: "./media/characters/sabrina/eye.svg"
  34481. }
  34482. },
  34483. foot: {
  34484. height: math.unit(1.86, "meters"),
  34485. name: "Foot",
  34486. image: {
  34487. source: "./media/characters/sabrina/foot.svg"
  34488. }
  34489. },
  34490. hand: {
  34491. height: math.unit(1.32, "meters"),
  34492. name: "Hand",
  34493. image: {
  34494. source: "./media/characters/sabrina/hand.svg"
  34495. }
  34496. },
  34497. head: {
  34498. height: math.unit(2.44, "meters"),
  34499. name: "Head",
  34500. image: {
  34501. source: "./media/characters/sabrina/head.svg"
  34502. }
  34503. },
  34504. headAngry: {
  34505. height: math.unit(2.44, "meters"),
  34506. name: "Head (Angry))",
  34507. image: {
  34508. source: "./media/characters/sabrina/head-angry.svg"
  34509. }
  34510. },
  34511. maw: {
  34512. height: math.unit(1.65, "meters"),
  34513. name: "Maw",
  34514. image: {
  34515. source: "./media/characters/sabrina/maw.svg"
  34516. }
  34517. },
  34518. spikes: {
  34519. height: math.unit(1.69, "meters"),
  34520. name: "Spikes",
  34521. image: {
  34522. source: "./media/characters/sabrina/spikes.svg"
  34523. }
  34524. },
  34525. stomach: {
  34526. height: math.unit(1.15, "meters"),
  34527. name: "Stomach",
  34528. image: {
  34529. source: "./media/characters/sabrina/stomach.svg"
  34530. }
  34531. },
  34532. tongue: {
  34533. height: math.unit(1.27, "meters"),
  34534. name: "Tongue",
  34535. image: {
  34536. source: "./media/characters/sabrina/tongue.svg"
  34537. }
  34538. },
  34539. wingDorsal: {
  34540. height: math.unit(4.85, "meters"),
  34541. name: "Wing (Dorsal)",
  34542. image: {
  34543. source: "./media/characters/sabrina/wing-dorsal.svg"
  34544. }
  34545. },
  34546. wingVentral: {
  34547. height: math.unit(4.85, "meters"),
  34548. name: "Wing (Ventral)",
  34549. image: {
  34550. source: "./media/characters/sabrina/wing-ventral.svg"
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(5, "meters"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34564. {
  34565. frontMaid: {
  34566. height: math.unit(5 + 5/12, "feet"),
  34567. weight: math.unit(130, "lb"),
  34568. name: "Front (Maid)",
  34569. image: {
  34570. source: "./media/characters/midnight-tales/front-maid.svg",
  34571. extra: 489/454,
  34572. bottom: 61/550
  34573. }
  34574. },
  34575. frontFormal: {
  34576. height: math.unit(5 + 5/12, "feet"),
  34577. weight: math.unit(130, "lb"),
  34578. name: "Front (Formal)",
  34579. image: {
  34580. source: "./media/characters/midnight-tales/front-formal.svg",
  34581. extra: 489/454,
  34582. bottom: 61/550
  34583. }
  34584. },
  34585. back: {
  34586. height: math.unit(5 + 5/12, "feet"),
  34587. weight: math.unit(130, "lb"),
  34588. name: "Back",
  34589. image: {
  34590. source: "./media/characters/midnight-tales/back.svg",
  34591. extra: 498/456,
  34592. bottom: 33/531
  34593. }
  34594. },
  34595. frontBeast: {
  34596. height: math.unit(40, "feet"),
  34597. weight: math.unit(64000, "lb"),
  34598. name: "Front (Beast)",
  34599. image: {
  34600. source: "./media/characters/midnight-tales/front-beast.svg",
  34601. extra: 927/860,
  34602. bottom: 53/980
  34603. }
  34604. },
  34605. backBeast: {
  34606. height: math.unit(40, "feet"),
  34607. weight: math.unit(64000, "lb"),
  34608. name: "Back (Beast)",
  34609. image: {
  34610. source: "./media/characters/midnight-tales/back-beast.svg",
  34611. extra: 929/855,
  34612. bottom: 16/945
  34613. }
  34614. },
  34615. footBeast: {
  34616. height: math.unit(6.7, "feet"),
  34617. name: "Foot (Beast)",
  34618. image: {
  34619. source: "./media/characters/midnight-tales/foot-beast.svg"
  34620. }
  34621. },
  34622. headBeast: {
  34623. height: math.unit(8, "feet"),
  34624. name: "Head (Beast)",
  34625. image: {
  34626. source: "./media/characters/midnight-tales/head-beast.svg"
  34627. }
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Normal",
  34633. height: math.unit(5 + 5 / 12, "feet"),
  34634. default: true
  34635. },
  34636. {
  34637. name: "Macro",
  34638. height: math.unit(25, "feet")
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(5 + 10/12, "feet"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/argon/front.svg",
  34650. extra: 2009/1935,
  34651. bottom: 118/2127
  34652. }
  34653. },
  34654. back: {
  34655. height: math.unit(5 + 10/12, "feet"),
  34656. name: "Back",
  34657. image: {
  34658. source: "./media/characters/argon/back.svg",
  34659. extra: 2047/1992,
  34660. bottom: 20/2067
  34661. }
  34662. },
  34663. frontDressed: {
  34664. height: math.unit(5 + 10/12, "feet"),
  34665. name: "Front (Dressed)",
  34666. image: {
  34667. source: "./media/characters/argon/front-dressed.svg",
  34668. extra: 2009/1935,
  34669. bottom: 118/2127
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(5 + 10/12, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(8 + 6/12, "feet"),
  34686. weight: math.unit(1150, "lb"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/kichi/front.svg",
  34690. extra: 1267/1164,
  34691. bottom: 61/1328
  34692. }
  34693. },
  34694. back: {
  34695. height: math.unit(8 + 6/12, "feet"),
  34696. weight: math.unit(1150, "lb"),
  34697. name: "Back",
  34698. image: {
  34699. source: "./media/characters/kichi/back.svg",
  34700. extra: 1273/1166,
  34701. bottom: 33/1306
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(8 + 6/12, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(6, "feet"),
  34718. weight: math.unit(210, "lb"),
  34719. name: "Front",
  34720. image: {
  34721. source: "./media/characters/manetel-greyscale/front.svg",
  34722. extra: 350/312,
  34723. bottom: 8/358
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Micro",
  34730. height: math.unit(2, "inches")
  34731. },
  34732. {
  34733. name: "Normal",
  34734. height: math.unit(6, "feet"),
  34735. default: true
  34736. },
  34737. {
  34738. name: "Minimacro",
  34739. height: math.unit(17, "feet")
  34740. },
  34741. {
  34742. name: "Macro",
  34743. height: math.unit(117, "feet")
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34749. {
  34750. side: {
  34751. height: math.unit(5 + 1/12, "feet"),
  34752. weight: math.unit(418, "lb"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/softpurr/side.svg",
  34756. extra: 1993/1945,
  34757. bottom: 134/2127
  34758. }
  34759. },
  34760. front: {
  34761. height: math.unit(5 + 1/12, "feet"),
  34762. weight: math.unit(418, "lb"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/softpurr/front.svg",
  34766. extra: 1950/1856,
  34767. bottom: 174/2124
  34768. }
  34769. },
  34770. paw: {
  34771. height: math.unit(1, "feet"),
  34772. name: "Paw",
  34773. image: {
  34774. source: "./media/characters/softpurr/paw.svg"
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(5 + 1/12, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(260, "meters"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/anahita/front.svg",
  34794. extra: 665/635,
  34795. bottom: 89/754
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Macro",
  34802. height: math.unit(260, "meters"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(4 + 10/12, "feet"),
  34812. weight: math.unit(160, "lb"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/chip-mouse/front.svg",
  34816. extra: 3528/3408,
  34817. bottom: 0/3528
  34818. }
  34819. },
  34820. frontNsfw: {
  34821. height: math.unit(4 + 10/12, "feet"),
  34822. weight: math.unit(160, "lb"),
  34823. name: "Front (NSFW)",
  34824. image: {
  34825. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34826. extra: 3528/3408,
  34827. bottom: 0/3528
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(4 + 10/12, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34841. {
  34842. side: {
  34843. height: math.unit(10, "feet"),
  34844. weight: math.unit(14000, "lb"),
  34845. name: "Side",
  34846. image: {
  34847. source: "./media/characters/kremm/side.svg",
  34848. extra: 1390/1053,
  34849. bottom: 90/1480
  34850. }
  34851. },
  34852. gut: {
  34853. height: math.unit(5.8, "feet"),
  34854. name: "Gut",
  34855. image: {
  34856. source: "./media/characters/kremm/gut.svg"
  34857. }
  34858. },
  34859. ass: {
  34860. height: math.unit(6.1, "feet"),
  34861. name: "Ass",
  34862. image: {
  34863. source: "./media/characters/kremm/ass.svg"
  34864. }
  34865. },
  34866. jaws: {
  34867. height: math.unit(2.2, "feet"),
  34868. name: "Jaws",
  34869. image: {
  34870. source: "./media/characters/kremm/jaws.svg"
  34871. }
  34872. },
  34873. dick: {
  34874. height: math.unit(4.26, "feet"),
  34875. name: "Dick",
  34876. image: {
  34877. source: "./media/characters/kremm/dick.svg"
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(10, "feet"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(30, "stories"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/kai/front.svg",
  34897. extra: 1892/1718,
  34898. bottom: 162/2054
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Macro",
  34905. height: math.unit(30, "stories"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(6 + 4/12, "feet"),
  34915. weight: math.unit(145, "lb"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/sykes/front.svg",
  34919. extra: 1321 / 1187,
  34920. bottom: 66 / 1387
  34921. }
  34922. },
  34923. back: {
  34924. height: math.unit(6 + 4/12, "feet"),
  34925. weight: math.unit(145, "lb"),
  34926. name: "Back",
  34927. image: {
  34928. source: "./media/characters/sykes/back.svg",
  34929. extra: 1326/1181,
  34930. bottom: 31/1357
  34931. }
  34932. },
  34933. traditionalOutfit: {
  34934. height: math.unit(6 + 4/12, "feet"),
  34935. weight: math.unit(145, "lb"),
  34936. name: "Traditional Outfit",
  34937. image: {
  34938. source: "./media/characters/sykes/traditional-outfit.svg",
  34939. extra: 1321 / 1187,
  34940. bottom: 66 / 1387
  34941. }
  34942. },
  34943. adventureOutfit: {
  34944. height: math.unit(6 + 4/12, "feet"),
  34945. weight: math.unit(145, "lb"),
  34946. name: "Adventure Outfit",
  34947. image: {
  34948. source: "./media/characters/sykes/adventure-outfit.svg",
  34949. extra: 1321 / 1187,
  34950. bottom: 66 / 1387
  34951. }
  34952. },
  34953. handLeft: {
  34954. height: math.unit(0.9, "feet"),
  34955. name: "Hand (Left)",
  34956. image: {
  34957. source: "./media/characters/sykes/hand-left.svg"
  34958. }
  34959. },
  34960. handRight: {
  34961. height: math.unit(0.839, "feet"),
  34962. name: "Hand (Right)",
  34963. image: {
  34964. source: "./media/characters/sykes/hand-right.svg"
  34965. }
  34966. },
  34967. leftFoot: {
  34968. height: math.unit(1.2, "feet"),
  34969. name: "Foot (Left)",
  34970. image: {
  34971. source: "./media/characters/sykes/foot-left.svg"
  34972. }
  34973. },
  34974. rightFoot: {
  34975. height: math.unit(1.2, "feet"),
  34976. name: "Foot (Right)",
  34977. image: {
  34978. source: "./media/characters/sykes/foot-right.svg"
  34979. }
  34980. },
  34981. maw: {
  34982. height: math.unit(1.93, "feet"),
  34983. name: "Maw",
  34984. image: {
  34985. source: "./media/characters/sykes/maw.svg"
  34986. }
  34987. },
  34988. teeth: {
  34989. height: math.unit(0.51, "feet"),
  34990. name: "Teeth",
  34991. image: {
  34992. source: "./media/characters/sykes/teeth.svg"
  34993. }
  34994. },
  34995. tongue: {
  34996. height: math.unit(2.13, "feet"),
  34997. name: "Tongue",
  34998. image: {
  34999. source: "./media/characters/sykes/tongue.svg"
  35000. }
  35001. },
  35002. uvula: {
  35003. height: math.unit(0.16, "feet"),
  35004. name: "Uvula",
  35005. image: {
  35006. source: "./media/characters/sykes/uvula.svg"
  35007. }
  35008. },
  35009. collar: {
  35010. height: math.unit(0.287, "feet"),
  35011. name: "Collar",
  35012. image: {
  35013. source: "./media/characters/sykes/collar.svg"
  35014. }
  35015. },
  35016. tail: {
  35017. height: math.unit(3.8, "feet"),
  35018. name: "Tail",
  35019. image: {
  35020. source: "./media/characters/sykes/tail.svg"
  35021. }
  35022. },
  35023. },
  35024. [
  35025. {
  35026. name: "Shrunken",
  35027. height: math.unit(5, "inches")
  35028. },
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(6 + 4 / 12, "feet"),
  35032. default: true
  35033. },
  35034. {
  35035. name: "Big",
  35036. height: math.unit(15, "feet")
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(5 + 8/12, "feet"),
  35045. weight: math.unit(190, "lb"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/oven-otter/front.svg",
  35049. extra: 1809/1740,
  35050. bottom: 181/1990
  35051. }
  35052. },
  35053. back: {
  35054. height: math.unit(5 + 8/12, "feet"),
  35055. weight: math.unit(190, "lb"),
  35056. name: "Back",
  35057. image: {
  35058. source: "./media/characters/oven-otter/back.svg",
  35059. extra: 1709/1635,
  35060. bottom: 118/1827
  35061. }
  35062. },
  35063. hand: {
  35064. height: math.unit(1.07, "feet"),
  35065. name: "Hand",
  35066. image: {
  35067. source: "./media/characters/oven-otter/hand.svg"
  35068. }
  35069. },
  35070. beans: {
  35071. height: math.unit(1.74, "feet"),
  35072. name: "Beans",
  35073. image: {
  35074. source: "./media/characters/oven-otter/beans.svg"
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Micro",
  35081. height: math.unit(0.5, "inches")
  35082. },
  35083. {
  35084. name: "Normal",
  35085. height: math.unit(5 + 8/12, "feet"),
  35086. default: true
  35087. },
  35088. {
  35089. name: "Macro",
  35090. height: math.unit(250, "feet")
  35091. },
  35092. {
  35093. name: "Really High",
  35094. height: math.unit(420, "feet")
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(5, "meters"),
  35103. weight: math.unit(292000000000000, "kg"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/devourer/front.svg",
  35107. extra: 1800/1733,
  35108. bottom: 211/2011
  35109. }
  35110. },
  35111. maw: {
  35112. height: math.unit(1.1, "meter"),
  35113. name: "Maw",
  35114. image: {
  35115. source: "./media/characters/devourer/maw.svg"
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Small",
  35122. height: math.unit(3, "meters")
  35123. },
  35124. {
  35125. name: "Large",
  35126. height: math.unit(5, "meters"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35133. {
  35134. front: {
  35135. height: math.unit(6, "feet"),
  35136. weight: math.unit(400, "lb"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/ellarby/front.svg",
  35140. extra: 1909/1763,
  35141. bottom: 80/1989
  35142. }
  35143. },
  35144. back: {
  35145. height: math.unit(6, "feet"),
  35146. weight: math.unit(400, "lb"),
  35147. name: "Back",
  35148. image: {
  35149. source: "./media/characters/ellarby/back.svg",
  35150. extra: 1914/1784,
  35151. bottom: 172/2086
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Mischief",
  35158. height: math.unit(18, "inches")
  35159. },
  35160. {
  35161. name: "Trouble",
  35162. height: math.unit(12, "feet")
  35163. },
  35164. {
  35165. name: "Havoc",
  35166. height: math.unit(200, "feet"),
  35167. default: true
  35168. },
  35169. {
  35170. name: "Pandemonium",
  35171. height: math.unit(1, "mile")
  35172. },
  35173. {
  35174. name: "Catastrophe",
  35175. height: math.unit(100, "miles")
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35181. {
  35182. front: {
  35183. height: math.unit(4.7, "meters"),
  35184. weight: math.unit(6500, "kg"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/vex/front.svg",
  35188. extra: 1288/1140,
  35189. bottom: 100/1388
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(4.7, "meters"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35203. {
  35204. normal: {
  35205. height: math.unit(6, "feet"),
  35206. weight: math.unit(350, "lb"),
  35207. name: "Normal",
  35208. image: {
  35209. source: "./media/characters/teshy/normal.svg",
  35210. extra: 1795/1735,
  35211. bottom: 16/1811
  35212. }
  35213. },
  35214. monsterFront: {
  35215. height: math.unit(12, "feet"),
  35216. weight: math.unit(4700, "lb"),
  35217. name: "Monster (Front)",
  35218. image: {
  35219. source: "./media/characters/teshy/monster-front.svg",
  35220. extra: 2042/2034,
  35221. bottom: 128/2170
  35222. }
  35223. },
  35224. monsterSide: {
  35225. height: math.unit(12, "feet"),
  35226. weight: math.unit(4700, "lb"),
  35227. name: "Monster (Side)",
  35228. image: {
  35229. source: "./media/characters/teshy/monster-side.svg",
  35230. extra: 2067/2056,
  35231. bottom: 70/2137
  35232. }
  35233. },
  35234. monsterBack: {
  35235. height: math.unit(12, "feet"),
  35236. weight: math.unit(4700, "lb"),
  35237. name: "Monster (Back)",
  35238. image: {
  35239. source: "./media/characters/teshy/monster-back.svg",
  35240. extra: 1921/1914,
  35241. bottom: 171/2092
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Normal",
  35248. height: math.unit(6, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35255. {
  35256. front: {
  35257. height: math.unit(6, "feet"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/ramey/front.svg",
  35261. extra: 790/787,
  35262. bottom: 27/817
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(6, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(5 + 5/12, "feet"),
  35279. weight: math.unit(120, "lb"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/phirae/front.svg",
  35283. extra: 2491/2436,
  35284. bottom: 38/2529
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(5 + 5/12, "feet"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35298. {
  35299. front: {
  35300. height: math.unit(5 + 3/12, "feet"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/stagglas/front.svg",
  35304. extra: 962/882,
  35305. bottom: 53/1015
  35306. }
  35307. },
  35308. feral: {
  35309. height: math.unit(335, "cm"),
  35310. name: "Feral",
  35311. image: {
  35312. source: "./media/characters/stagglas/feral.svg",
  35313. extra: 1732/1090,
  35314. bottom: 48/1780
  35315. }
  35316. },
  35317. },
  35318. [
  35319. {
  35320. name: "Normal",
  35321. height: math.unit(5 + 3/12, "feet"),
  35322. default: true
  35323. },
  35324. ]
  35325. ))
  35326. characterMakers.push(() => makeCharacter(
  35327. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35328. {
  35329. front: {
  35330. height: math.unit(5 + 4/12, "feet"),
  35331. weight: math.unit(145, "lb"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/starra/front.svg",
  35335. extra: 1790/1691,
  35336. bottom: 91/1881
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Normal",
  35343. height: math.unit(5 + 4/12, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(2.2, "meters"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35356. extra: 1194/1005,
  35357. bottom: 25/1219
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(2.2, "meters"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35371. {
  35372. side: {
  35373. height: math.unit(8 + 2/12, "feet"),
  35374. weight: math.unit(1240, "lb"),
  35375. name: "Side",
  35376. image: {
  35377. source: "./media/characters/mika-valentine/side.svg",
  35378. extra: 2670/2501,
  35379. bottom: 250/2920
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(8 + 2/12, "feet"),
  35387. default: true
  35388. },
  35389. ]
  35390. ))
  35391. characterMakers.push(() => makeCharacter(
  35392. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35393. {
  35394. front: {
  35395. height: math.unit(7 + 2/12, "feet"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/xoltol/front.svg",
  35399. extra: 2212/2124,
  35400. bottom: 84/2296
  35401. }
  35402. },
  35403. side: {
  35404. height: math.unit(7 + 2/12, "feet"),
  35405. name: "Side",
  35406. image: {
  35407. source: "./media/characters/xoltol/side.svg",
  35408. extra: 2273/2197,
  35409. bottom: 26/2299
  35410. }
  35411. },
  35412. hand: {
  35413. height: math.unit(2.5, "feet"),
  35414. name: "Hand",
  35415. image: {
  35416. source: "./media/characters/xoltol/hand.svg"
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Small-ish",
  35423. height: math.unit(5 + 11/12, "feet")
  35424. },
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(7 + 2/12, "feet")
  35428. },
  35429. {
  35430. name: "\"Macro\"",
  35431. height: math.unit(14 + 9/12, "feet"),
  35432. default: true
  35433. },
  35434. {
  35435. name: "Alternate Height",
  35436. height: math.unit(20, "feet")
  35437. },
  35438. {
  35439. name: "Actually Macro",
  35440. height: math.unit(100, "feet")
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35446. {
  35447. front: {
  35448. height: math.unit(5 + 2/12, "feet"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/kotetsu-redwood/front.svg",
  35452. extra: 1053/942,
  35453. bottom: 60/1113
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(5 + 2/12, "feet"),
  35461. default: true
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35467. {
  35468. front: {
  35469. height: math.unit(2.4, "meters"),
  35470. weight: math.unit(125, "kg"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/lilith/front.svg",
  35474. extra: 1590/1513,
  35475. bottom: 203/1793
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Humanoid",
  35482. height: math.unit(2.4, "meters")
  35483. },
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(6, "meters"),
  35487. default: true
  35488. },
  35489. {
  35490. name: "Largest",
  35491. height: math.unit(55, "meters")
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(8 + 4/12, "feet"),
  35500. weight: math.unit(535, "lb"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/beh'kah-bolger/front.svg",
  35504. extra: 1660/1603,
  35505. bottom: 37/1697
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(8 + 4/12, "feet"),
  35513. default: true
  35514. },
  35515. {
  35516. name: "Kaiju",
  35517. height: math.unit(250, "feet")
  35518. },
  35519. {
  35520. name: "Still Growing",
  35521. height: math.unit(10, "miles")
  35522. },
  35523. {
  35524. name: "Continental",
  35525. height: math.unit(5000, "miles")
  35526. },
  35527. {
  35528. name: "Final Form",
  35529. height: math.unit(2500000, "miles")
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(7 + 2/12, "feet"),
  35538. weight: math.unit(230, "kg"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/tatyana-milewska/front.svg",
  35542. extra: 1199/1150,
  35543. bottom: 86/1285
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(7 + 2/12, "feet"),
  35551. default: true
  35552. },
  35553. {
  35554. name: "Big",
  35555. height: math.unit(12, "feet")
  35556. },
  35557. {
  35558. name: "Minimacro",
  35559. height: math.unit(20, "feet")
  35560. },
  35561. {
  35562. name: "Macro",
  35563. height: math.unit(120, "feet")
  35564. },
  35565. ]
  35566. ))
  35567. characterMakers.push(() => makeCharacter(
  35568. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35569. {
  35570. front: {
  35571. height: math.unit(7 + 8/12, "feet"),
  35572. weight: math.unit(152, "kg"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/helen-arri/front.svg",
  35576. extra: 440/423,
  35577. bottom: 14/454
  35578. }
  35579. },
  35580. back: {
  35581. height: math.unit(7 + 8/12, "feet"),
  35582. weight: math.unit(152, "kg"),
  35583. name: "Back",
  35584. image: {
  35585. source: "./media/characters/helen-arri/back.svg",
  35586. extra: 443/426,
  35587. bottom: 8/451
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Normal",
  35594. height: math.unit(7 + 8/12, "feet"),
  35595. default: true
  35596. },
  35597. {
  35598. name: "Big",
  35599. height: math.unit(14, "feet")
  35600. },
  35601. {
  35602. name: "Minimacro",
  35603. height: math.unit(24, "feet")
  35604. },
  35605. {
  35606. name: "Macro",
  35607. height: math.unit(140, "feet")
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(6, "meters"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/ehanu-rehu/front.svg",
  35619. extra: 1800/1800,
  35620. bottom: 59/1859
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(6, "meters"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(7 + 3/12, "feet"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/renholder/front.svg",
  35640. extra: 3096/2960,
  35641. bottom: 250/3346
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Normal Bat",
  35648. height: math.unit(7 + 3/12, "feet"),
  35649. default: true
  35650. },
  35651. {
  35652. name: "Slightly Tall Bat",
  35653. height: math.unit(100, "feet")
  35654. },
  35655. {
  35656. name: "Big Bat",
  35657. height: math.unit(1000, "feet")
  35658. },
  35659. {
  35660. name: "City-Sized Bat",
  35661. height: math.unit(200000, "feet")
  35662. },
  35663. {
  35664. name: "Bigger Bat",
  35665. height: math.unit(10000, "miles")
  35666. },
  35667. {
  35668. name: "Solar Sized Bat",
  35669. height: math.unit(100, "AU")
  35670. },
  35671. {
  35672. name: "Galactic Bat",
  35673. height: math.unit(200000, "lightyears")
  35674. },
  35675. {
  35676. name: "Universally Known Bat",
  35677. height: math.unit(1, "universe")
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35683. {
  35684. front: {
  35685. height: math.unit(6 + 11/12, "feet"),
  35686. weight: math.unit(250, "lb"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/cookiecat/front.svg",
  35690. extra: 893/827,
  35691. bottom: 14/907
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Micro",
  35698. height: math.unit(3, "inches")
  35699. },
  35700. {
  35701. name: "Normal",
  35702. height: math.unit(6 + 11/12, "feet"),
  35703. default: true
  35704. },
  35705. {
  35706. name: "Macro",
  35707. height: math.unit(100, "feet")
  35708. },
  35709. {
  35710. name: "Macro+",
  35711. height: math.unit(404, "feet")
  35712. },
  35713. {
  35714. name: "Megamacro",
  35715. height: math.unit(165, "miles")
  35716. },
  35717. {
  35718. name: "Planetary",
  35719. height: math.unit(4600, "miles")
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(10 + 3/12, "feet"),
  35728. weight: math.unit(1500, "lb"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/tux-kusanagi/front.svg",
  35732. extra: 944/840,
  35733. bottom: 39/983
  35734. }
  35735. },
  35736. back: {
  35737. height: math.unit(10 + 3/12, "feet"),
  35738. weight: math.unit(1500, "lb"),
  35739. name: "Back",
  35740. image: {
  35741. source: "./media/characters/tux-kusanagi/back.svg",
  35742. extra: 941/842,
  35743. bottom: 28/969
  35744. }
  35745. },
  35746. rump: {
  35747. height: math.unit(5.25, "feet"),
  35748. name: "Rump",
  35749. image: {
  35750. source: "./media/characters/tux-kusanagi/rump.svg"
  35751. }
  35752. },
  35753. beak: {
  35754. height: math.unit(1.54, "feet"),
  35755. name: "Beak",
  35756. image: {
  35757. source: "./media/characters/tux-kusanagi/beak.svg"
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(10 + 3/12, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35771. {
  35772. front: {
  35773. height: math.unit(58, "feet"),
  35774. weight: math.unit(200, "tons"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/uzarmazari/front.svg",
  35778. extra: 1575/1455,
  35779. bottom: 152/1727
  35780. }
  35781. },
  35782. back: {
  35783. height: math.unit(58, "feet"),
  35784. weight: math.unit(200, "tons"),
  35785. name: "Back",
  35786. image: {
  35787. source: "./media/characters/uzarmazari/back.svg",
  35788. extra: 1585/1510,
  35789. bottom: 157/1742
  35790. }
  35791. },
  35792. head: {
  35793. height: math.unit(26, "feet"),
  35794. name: "Head",
  35795. image: {
  35796. source: "./media/characters/uzarmazari/head.svg"
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Normal",
  35803. height: math.unit(58, "feet"),
  35804. default: true
  35805. },
  35806. ]
  35807. ))
  35808. characterMakers.push(() => makeCharacter(
  35809. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35810. {
  35811. side: {
  35812. height: math.unit(15, "feet"),
  35813. name: "Side",
  35814. image: {
  35815. source: "./media/characters/akitu/side.svg",
  35816. extra: 1421/1321,
  35817. bottom: 157/1578
  35818. }
  35819. },
  35820. front: {
  35821. height: math.unit(15, "feet"),
  35822. name: "Front",
  35823. image: {
  35824. source: "./media/characters/akitu/front.svg",
  35825. extra: 1435/1326,
  35826. bottom: 232/1667
  35827. }
  35828. },
  35829. },
  35830. [
  35831. {
  35832. name: "Normal",
  35833. height: math.unit(15, "feet"),
  35834. default: true
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(10 + 8/12, "feet"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/azalie-croixland/front.svg",
  35846. extra: 1972/1856,
  35847. bottom: 31/2003
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Original Height",
  35854. height: math.unit(5 + 4/12, "feet")
  35855. },
  35856. {
  35857. name: "Normal Height",
  35858. height: math.unit(10 + 8/12, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35865. {
  35866. side: {
  35867. height: math.unit(7 + 1/12, "feet"),
  35868. weight: math.unit(245, "lb"),
  35869. name: "Side",
  35870. image: {
  35871. source: "./media/characters/kavus-kazian/side.svg",
  35872. extra: 349/342,
  35873. bottom: 15/364
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(7 + 1/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35887. {
  35888. normalFront: {
  35889. height: math.unit(5 + 11/12, "feet"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/moonlight-rose/normal-front.svg",
  35893. extra: 1980/1825,
  35894. bottom: 18/1998
  35895. },
  35896. form: "normal",
  35897. default: true
  35898. },
  35899. normalBack: {
  35900. height: math.unit(5 + 11/12, "feet"),
  35901. name: "Back",
  35902. image: {
  35903. source: "./media/characters/moonlight-rose/normal-back.svg",
  35904. extra: 2010/1839,
  35905. bottom: 10/2020
  35906. },
  35907. form: "normal"
  35908. },
  35909. demonFront: {
  35910. height: math.unit(1.5, "earths"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/moonlight-rose/demon.svg",
  35914. extra: 1400/1294,
  35915. bottom: 45/1445
  35916. },
  35917. form: "demon",
  35918. default: true
  35919. },
  35920. terraFront: {
  35921. height: math.unit(1.5, "earths"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/moonlight-rose/terra.svg"
  35925. },
  35926. form: "terra",
  35927. default: true
  35928. },
  35929. jupiterFront: {
  35930. height: math.unit(69911*2, "km"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35934. extra: 1367/1286,
  35935. bottom: 55/1422
  35936. },
  35937. form: "jupiter",
  35938. default: true
  35939. },
  35940. neptuneFront: {
  35941. height: math.unit(24622*2, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35945. extra: 1851/1712,
  35946. bottom: 0/1851
  35947. },
  35948. form: "neptune",
  35949. default: true
  35950. },
  35951. },
  35952. [
  35953. {
  35954. name: "\"Natural\" Height",
  35955. height: math.unit(5 + 11/12, "feet"),
  35956. form: "normal"
  35957. },
  35958. {
  35959. name: "Smallest comfortable size",
  35960. height: math.unit(40, "meters"),
  35961. form: "normal"
  35962. },
  35963. {
  35964. name: "Common size",
  35965. height: math.unit(50, "km"),
  35966. form: "normal",
  35967. default: true
  35968. },
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(1.5, "earths"),
  35972. form: "demon",
  35973. default: true
  35974. },
  35975. {
  35976. name: "Universal",
  35977. height: math.unit(15, "universes"),
  35978. form: "demon"
  35979. },
  35980. {
  35981. name: "Earth",
  35982. height: math.unit(1.5, "earths"),
  35983. form: "terra",
  35984. default: true
  35985. },
  35986. {
  35987. name: "Super Earth",
  35988. height: math.unit(67.5, "earths"),
  35989. form: "terra"
  35990. },
  35991. {
  35992. name: "Doesn't fit in a solar system...",
  35993. height: math.unit(1, "galaxy"),
  35994. form: "terra"
  35995. },
  35996. {
  35997. name: "Saturn",
  35998. height: math.unit(58232*2, "km"),
  35999. form: "jupiter"
  36000. },
  36001. {
  36002. name: "Jupiter",
  36003. height: math.unit(69911*2, "km"),
  36004. form: "jupiter",
  36005. default: true
  36006. },
  36007. {
  36008. name: "HD 100546 b",
  36009. height: math.unit(482938, "km"),
  36010. form: "jupiter"
  36011. },
  36012. {
  36013. name: "Enceladus",
  36014. height: math.unit(513*2, "km"),
  36015. form: "neptune"
  36016. },
  36017. {
  36018. name: "Europe",
  36019. height: math.unit(1560*2, "km"),
  36020. form: "neptune"
  36021. },
  36022. {
  36023. name: "Neptune",
  36024. height: math.unit(24622*2, "km"),
  36025. form: "neptune",
  36026. default: true
  36027. },
  36028. {
  36029. name: "CoRoT-9b",
  36030. height: math.unit(75067*2, "km"),
  36031. form: "neptune"
  36032. },
  36033. ],
  36034. {
  36035. "normal": {
  36036. name: "Normal",
  36037. default: true
  36038. },
  36039. "demon": {
  36040. name: "Demon"
  36041. },
  36042. "terra": {
  36043. name: "Terra"
  36044. },
  36045. "jupiter": {
  36046. name: "Jupiter"
  36047. },
  36048. "neptune": {
  36049. name: "Neptune"
  36050. }
  36051. }
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36055. {
  36056. front: {
  36057. height: math.unit(16, "feet"),
  36058. weight: math.unit(610, "kg"),
  36059. name: "Front",
  36060. image: {
  36061. source: "./media/characters/huckle/front.svg",
  36062. extra: 1731/1625,
  36063. bottom: 33/1764
  36064. }
  36065. },
  36066. back: {
  36067. height: math.unit(16, "feet"),
  36068. weight: math.unit(610, "kg"),
  36069. name: "Back",
  36070. image: {
  36071. source: "./media/characters/huckle/back.svg",
  36072. extra: 1738/1651,
  36073. bottom: 37/1775
  36074. }
  36075. },
  36076. laughing: {
  36077. height: math.unit(3.75, "feet"),
  36078. name: "Laughing",
  36079. image: {
  36080. source: "./media/characters/huckle/laughing.svg"
  36081. }
  36082. },
  36083. angry: {
  36084. height: math.unit(4.15, "feet"),
  36085. name: "Angry",
  36086. image: {
  36087. source: "./media/characters/huckle/angry.svg"
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(16, "feet"),
  36095. default: true
  36096. },
  36097. {
  36098. name: "Mini Macro",
  36099. height: math.unit(463, "feet")
  36100. },
  36101. {
  36102. name: "Macro",
  36103. height: math.unit(1680, "meters")
  36104. },
  36105. {
  36106. name: "Mega Macro",
  36107. height: math.unit(175, "km")
  36108. },
  36109. {
  36110. name: "Terra Macro",
  36111. height: math.unit(32, "gigameters")
  36112. },
  36113. {
  36114. name: "Multiverse+",
  36115. height: math.unit(2.56e23, "yottameters")
  36116. },
  36117. ]
  36118. ))
  36119. characterMakers.push(() => makeCharacter(
  36120. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36121. {
  36122. front: {
  36123. height: math.unit(6 + 9/12, "feet"),
  36124. weight: math.unit(280, "lb"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/candy/front.svg",
  36128. extra: 234/217,
  36129. bottom: 11/245
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Really Small",
  36136. height: math.unit(0.1, "nm")
  36137. },
  36138. {
  36139. name: "Micro",
  36140. height: math.unit(2, "inches")
  36141. },
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(6 + 9/12, "feet"),
  36145. default: true
  36146. },
  36147. {
  36148. name: "Small Macro",
  36149. height: math.unit(69, "feet")
  36150. },
  36151. {
  36152. name: "Macro",
  36153. height: math.unit(160, "feet")
  36154. },
  36155. {
  36156. name: "Megamacro",
  36157. height: math.unit(22000, "miles")
  36158. },
  36159. {
  36160. name: "Gigamacro",
  36161. height: math.unit(50000, "miles")
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(4, "feet"),
  36170. weight: math.unit(90, "lb"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/joey-mcdonald/front.svg",
  36174. extra: 1059/852,
  36175. bottom: 33/1092
  36176. }
  36177. },
  36178. back: {
  36179. height: math.unit(4, "feet"),
  36180. weight: math.unit(90, "lb"),
  36181. name: "Back",
  36182. image: {
  36183. source: "./media/characters/joey-mcdonald/back.svg",
  36184. extra: 1077/879,
  36185. bottom: 5/1082
  36186. }
  36187. },
  36188. frontKobold: {
  36189. height: math.unit(4, "feet"),
  36190. weight: math.unit(100, "lb"),
  36191. name: "Front-kobold",
  36192. image: {
  36193. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36194. extra: 1480/1367,
  36195. bottom: 0/1480
  36196. }
  36197. },
  36198. backKobold: {
  36199. height: math.unit(4, "feet"),
  36200. weight: math.unit(100, "lb"),
  36201. name: "Back-kobold",
  36202. image: {
  36203. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36204. extra: 1449/1361,
  36205. bottom: 0/1449
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(4, "feet"),
  36213. default: true
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(12 + 6/12, "feet"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/kass-lockheed/front.svg",
  36225. extra: 354/343,
  36226. bottom: 9/363
  36227. }
  36228. },
  36229. back: {
  36230. height: math.unit(12 + 6/12, "feet"),
  36231. name: "Back",
  36232. image: {
  36233. source: "./media/characters/kass-lockheed/back.svg",
  36234. extra: 364/352,
  36235. bottom: 3/367
  36236. }
  36237. },
  36238. dick: {
  36239. height: math.unit(3.12, "feet"),
  36240. name: "Dick",
  36241. image: {
  36242. source: "./media/characters/kass-lockheed/dick.svg"
  36243. }
  36244. },
  36245. head: {
  36246. height: math.unit(2.6, "feet"),
  36247. name: "Head",
  36248. image: {
  36249. source: "./media/characters/kass-lockheed/head.svg"
  36250. }
  36251. },
  36252. bleh: {
  36253. height: math.unit(2.85, "feet"),
  36254. name: "Bleh",
  36255. image: {
  36256. source: "./media/characters/kass-lockheed/bleh.svg"
  36257. }
  36258. },
  36259. smug: {
  36260. height: math.unit(2.85, "feet"),
  36261. name: "Smug",
  36262. image: {
  36263. source: "./media/characters/kass-lockheed/smug.svg"
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(12 + 6/12, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(6 + 2/12, "feet"),
  36280. name: "Front",
  36281. image: {
  36282. source: "./media/characters/taylor/front.svg",
  36283. extra: 639/495,
  36284. bottom: 12/651
  36285. }
  36286. },
  36287. },
  36288. [
  36289. {
  36290. name: "Normal",
  36291. height: math.unit(6 + 2/12, "feet"),
  36292. default: true
  36293. },
  36294. {
  36295. name: "Big",
  36296. height: math.unit(15, "feet")
  36297. },
  36298. {
  36299. name: "Lorg",
  36300. height: math.unit(80, "feet")
  36301. },
  36302. {
  36303. name: "Too Lorg",
  36304. height: math.unit(120, "feet")
  36305. },
  36306. ]
  36307. ))
  36308. characterMakers.push(() => makeCharacter(
  36309. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36310. {
  36311. front: {
  36312. height: math.unit(15, "feet"),
  36313. name: "Front",
  36314. image: {
  36315. source: "./media/characters/kaizer/front.svg",
  36316. extra: 1612/1436,
  36317. bottom: 43/1655
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(15, "feet"),
  36325. default: true
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(2, "feet"),
  36334. weight: math.unit(30, "lb"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/sandy/front.svg",
  36338. extra: 1439/1307,
  36339. bottom: 194/1633
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(2, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(3, "feet"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/mellvi/front.svg",
  36359. extra: 1831/1630,
  36360. bottom: 58/1889
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(3, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(5 + 11/12, "feet"),
  36377. weight: math.unit(200, "lb"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/shirou/front.svg",
  36381. extra: 2491/2383,
  36382. bottom: 189/2680
  36383. }
  36384. },
  36385. back: {
  36386. height: math.unit(5 + 11/12, "feet"),
  36387. weight: math.unit(200, "lb"),
  36388. name: "Back",
  36389. image: {
  36390. source: "./media/characters/shirou/back.svg",
  36391. extra: 2554/2450,
  36392. bottom: 76/2630
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(5 + 11/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(6 + 3/12, "feet"),
  36409. weight: math.unit(177, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/noryu/front.svg",
  36413. extra: 973/885,
  36414. bottom: 10/983
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(6 + 3/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(5 + 6/12, "feet"),
  36431. weight: math.unit(170, "lb"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/mevolas-rubenido/front.svg",
  36435. extra: 2109/1901,
  36436. bottom: 96/2205
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(5 + 6/12, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(100, "feet"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/dee/front.svg",
  36456. extra: 2153/2036,
  36457. bottom: 59/2212
  36458. }
  36459. },
  36460. back: {
  36461. height: math.unit(100, "feet"),
  36462. name: "Back",
  36463. image: {
  36464. source: "./media/characters/dee/back.svg",
  36465. extra: 2183/2058,
  36466. bottom: 75/2258
  36467. }
  36468. },
  36469. foot: {
  36470. height: math.unit(19.43, "feet"),
  36471. name: "Foot",
  36472. image: {
  36473. source: "./media/characters/dee/foot.svg"
  36474. }
  36475. },
  36476. hoof: {
  36477. height: math.unit(20.6, "feet"),
  36478. name: "Hoof",
  36479. image: {
  36480. source: "./media/characters/dee/hoof.svg"
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Macro",
  36487. height: math.unit(100, "feet"),
  36488. default: true
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36494. {
  36495. front: {
  36496. height: math.unit(5 + 6/12, "feet"),
  36497. name: "Front",
  36498. image: {
  36499. source: "./media/characters/teh/front.svg",
  36500. extra: 1002/847,
  36501. bottom: 62/1064
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(5 + 6/12, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36515. {
  36516. side: {
  36517. height: math.unit(6 + 1/12, "feet"),
  36518. weight: math.unit(204, "lb"),
  36519. name: "Side",
  36520. image: {
  36521. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36522. extra: 974/775,
  36523. bottom: 169/1143
  36524. }
  36525. },
  36526. sitting: {
  36527. height: math.unit(6 + 2/12, "feet"),
  36528. weight: math.unit(204, "lb"),
  36529. name: "Sitting",
  36530. image: {
  36531. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36532. extra: 1175/964,
  36533. bottom: 378/1553
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(6 + 1/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(6, "inches"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/tululi/front.svg",
  36553. extra: 1997/1876,
  36554. bottom: 20/2017
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(6, "inches"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(4 + 1/12, "feet"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/star/front.svg",
  36574. extra: 1493/1189,
  36575. bottom: 48/1541
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(4 + 1/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(6 + 3/12, "feet"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/comet/front.svg",
  36595. extra: 1681/1462,
  36596. bottom: 26/1707
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(6 + 3/12, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(950, "feet"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/vortex/front.svg",
  36616. extra: 1497/1434,
  36617. bottom: 56/1553
  36618. }
  36619. },
  36620. maw: {
  36621. height: math.unit(285, "feet"),
  36622. name: "Maw",
  36623. image: {
  36624. source: "./media/characters/vortex/maw.svg"
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Macro",
  36631. height: math.unit(950, "feet"),
  36632. default: true
  36633. },
  36634. ]
  36635. ))
  36636. characterMakers.push(() => makeCharacter(
  36637. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36638. {
  36639. front: {
  36640. height: math.unit(600, "feet"),
  36641. weight: math.unit(0.02, "grams"),
  36642. name: "Front",
  36643. image: {
  36644. source: "./media/characters/doodle/front.svg",
  36645. extra: 1578/1413,
  36646. bottom: 37/1615
  36647. }
  36648. },
  36649. },
  36650. [
  36651. {
  36652. name: "Macro",
  36653. height: math.unit(600, "feet"),
  36654. default: true
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(6 + 6/12, "feet"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/jai/front.svg",
  36666. extra: 1645/1534,
  36667. bottom: 115/1760
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(6 + 6/12, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(6 + 8/12, "feet"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/pixel/front.svg",
  36687. extra: 1900/1735,
  36688. bottom: 63/1963
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(6 + 8/12, "feet"),
  36696. default: true
  36697. },
  36698. ]
  36699. ))
  36700. characterMakers.push(() => makeCharacter(
  36701. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36702. {
  36703. back: {
  36704. height: math.unit(4 + 1/12, "feet"),
  36705. weight: math.unit(75, "lb"),
  36706. name: "Back",
  36707. image: {
  36708. source: "./media/characters/rhett/back.svg",
  36709. extra: 930/878,
  36710. bottom: 25/955
  36711. }
  36712. },
  36713. front: {
  36714. height: math.unit(4 + 1/12, "feet"),
  36715. weight: math.unit(75, "lb"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/rhett/front.svg",
  36719. extra: 1682/1586,
  36720. bottom: 92/1774
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Micro",
  36727. height: math.unit(8, "inches")
  36728. },
  36729. {
  36730. name: "Tiny",
  36731. height: math.unit(2, "feet")
  36732. },
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(4 + 1/12, "feet"),
  36736. default: true
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36742. {
  36743. front: {
  36744. height: math.unit(3 + 3/12, "feet"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/penny/front.svg",
  36748. extra: 1406/1311,
  36749. bottom: 26/1432
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(3 + 3/12, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(4 + 11/12, "feet"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/monty/front.svg",
  36769. extra: 1479/1209,
  36770. bottom: 0/1479
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(4 + 11/12, "feet"),
  36778. default: true
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(8 + 4/12, "feet"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/sterling/front.svg",
  36790. extra: 1420/1236,
  36791. bottom: 27/1447
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Normal",
  36798. height: math.unit(8 + 4/12, "feet"),
  36799. default: true
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36805. {
  36806. front: {
  36807. height: math.unit(15, "feet"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/marble/front.svg",
  36811. extra: 973/937,
  36812. bottom: 32/1005
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(15, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36826. {
  36827. front: {
  36828. height: math.unit(3, "inches"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/powder/front.svg",
  36832. extra: 1504/1334,
  36833. bottom: 518/2022
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(3, "inches"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36847. {
  36848. front: {
  36849. height: math.unit(4 + 5/12, "feet"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/joey-raccoon/front.svg",
  36853. extra: 1273/1197,
  36854. bottom: 0/1273
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(4 + 5/12, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(8 + 4/12, "feet"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/vick/front.svg",
  36874. extra: 2187/2118,
  36875. bottom: 47/2234
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(8 + 4/12, "feet"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(5 + 5/12, "feet"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/mitsy/front.svg",
  36895. extra: 1842/1695,
  36896. bottom: 0/1842
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(5 + 5/12, "feet"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(6 + 3/12, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/silvy/front.svg",
  36916. extra: 1995/1836,
  36917. bottom: 225/2220
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(6 + 3/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(3 + 8/12, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/rodney/front.svg",
  36937. extra: 1956/1747,
  36938. bottom: 31/1987
  36939. }
  36940. },
  36941. frontDressed: {
  36942. height: math.unit(2.9, "feet"),
  36943. name: "Front (Dressed)",
  36944. image: {
  36945. source: "./media/characters/rodney/front-dressed.svg",
  36946. extra: 1382/1241,
  36947. bottom: 385/1767
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(3 + 8/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(5 + 9/12, "feet"),
  36964. weight: math.unit(194, "lbs"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/zakail-sudekai/front.svg",
  36968. extra: 2696/2533,
  36969. bottom: 248/2944
  36970. }
  36971. },
  36972. maw: {
  36973. height: math.unit(1.35, "feet"),
  36974. name: "Maw",
  36975. image: {
  36976. source: "./media/characters/zakail-sudekai/maw.svg"
  36977. }
  36978. },
  36979. },
  36980. [
  36981. {
  36982. name: "Normal",
  36983. height: math.unit(5 + 9/12, "feet"),
  36984. default: true
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36990. {
  36991. front: {
  36992. height: math.unit(8 + 4/12, "feet"),
  36993. weight: math.unit(1200, "lb"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/eleanor/front.svg",
  36997. extra: 1226/1192,
  36998. bottom: 52/1278
  36999. }
  37000. },
  37001. back: {
  37002. height: math.unit(8 + 4/12, "feet"),
  37003. weight: math.unit(1200, "lb"),
  37004. name: "Back",
  37005. image: {
  37006. source: "./media/characters/eleanor/back.svg",
  37007. extra: 1242/1184,
  37008. bottom: 60/1302
  37009. }
  37010. },
  37011. head: {
  37012. height: math.unit(2.62, "feet"),
  37013. name: "Head",
  37014. image: {
  37015. source: "./media/characters/eleanor/head.svg"
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(8 + 4/12, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(8 + 4/12, "feet"),
  37032. weight: math.unit(750, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/tanya/front.svg",
  37036. extra: 1749/1615,
  37037. bottom: 33/1782
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(8 + 4/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(5, "feet"),
  37054. weight: math.unit(225, "lb"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/cindy/front.svg",
  37058. extra: 1320/1250,
  37059. bottom: 42/1362
  37060. }
  37061. },
  37062. frontDressed: {
  37063. height: math.unit(5, "feet"),
  37064. weight: math.unit(225, "lb"),
  37065. name: "Front (Dressed)",
  37066. image: {
  37067. source: "./media/characters/cindy/front-dressed.svg",
  37068. extra: 1320/1250,
  37069. bottom: 42/1362
  37070. }
  37071. },
  37072. back: {
  37073. height: math.unit(5, "feet"),
  37074. weight: math.unit(225, "lb"),
  37075. name: "Back",
  37076. image: {
  37077. source: "./media/characters/cindy/back.svg",
  37078. extra: 1384/1346,
  37079. bottom: 14/1398
  37080. }
  37081. },
  37082. },
  37083. [
  37084. {
  37085. name: "Normal",
  37086. height: math.unit(5, "feet"),
  37087. default: true
  37088. },
  37089. ]
  37090. ))
  37091. characterMakers.push(() => makeCharacter(
  37092. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37093. {
  37094. front: {
  37095. height: math.unit(6 + 9/12, "feet"),
  37096. weight: math.unit(440, "lb"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/wilbur-owen/front.svg",
  37100. extra: 1575/1448,
  37101. bottom: 72/1647
  37102. }
  37103. },
  37104. back: {
  37105. height: math.unit(6 + 9/12, "feet"),
  37106. weight: math.unit(440, "lb"),
  37107. name: "Back",
  37108. image: {
  37109. source: "./media/characters/wilbur-owen/back.svg",
  37110. extra: 1578/1445,
  37111. bottom: 36/1614
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(6 + 9/12, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(6 + 5/12, "feet"),
  37128. weight: math.unit(650, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/keegan/front.svg",
  37132. extra: 2387/2198,
  37133. bottom: 33/2420
  37134. }
  37135. },
  37136. side: {
  37137. height: math.unit(6 + 5/12, "feet"),
  37138. weight: math.unit(650, "lb"),
  37139. name: "Side",
  37140. image: {
  37141. source: "./media/characters/keegan/side.svg",
  37142. extra: 2390/2202,
  37143. bottom: 47/2437
  37144. }
  37145. },
  37146. back: {
  37147. height: math.unit(6 + 5/12, "feet"),
  37148. weight: math.unit(650, "lb"),
  37149. name: "Back",
  37150. image: {
  37151. source: "./media/characters/keegan/back.svg",
  37152. extra: 2418/2268,
  37153. bottom: 15/2433
  37154. }
  37155. },
  37156. frontSfw: {
  37157. height: math.unit(6 + 5/12, "feet"),
  37158. weight: math.unit(650, "lb"),
  37159. name: "Front (SFW)",
  37160. image: {
  37161. source: "./media/characters/keegan/front-sfw.svg",
  37162. extra: 2387/2198,
  37163. bottom: 33/2420
  37164. }
  37165. },
  37166. beans: {
  37167. height: math.unit(1.85, "feet"),
  37168. name: "Beans",
  37169. image: {
  37170. source: "./media/characters/keegan/beans.svg"
  37171. }
  37172. },
  37173. },
  37174. [
  37175. {
  37176. name: "Normal",
  37177. height: math.unit(6 + 5/12, "feet"),
  37178. default: true
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(9, "feet"),
  37187. name: "Front",
  37188. image: {
  37189. source: "./media/characters/colton/front.svg",
  37190. extra: 1589/1326,
  37191. bottom: 139/1728
  37192. }
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(9, "feet"),
  37199. default: true
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37205. {
  37206. front: {
  37207. height: math.unit(2 + 9/12, "feet"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/bora/front.svg",
  37211. extra: 1265/1250,
  37212. bottom: 24/1289
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(2 + 9/12, "feet"),
  37220. default: true
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(8, "feet"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/myu-myu/front.svg",
  37232. extra: 1949/1857,
  37233. bottom: 90/2039
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(8, "feet"),
  37241. default: true
  37242. },
  37243. {
  37244. name: "Big",
  37245. height: math.unit(15, "feet")
  37246. },
  37247. {
  37248. name: "BIG",
  37249. height: math.unit(25, "feet")
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37255. {
  37256. side: {
  37257. height: math.unit(7 + 5/12, "feet"),
  37258. weight: math.unit(2800, "lb"),
  37259. name: "Side",
  37260. image: {
  37261. source: "./media/characters/haloren/side.svg",
  37262. extra: 1793/409,
  37263. bottom: 59/1852
  37264. }
  37265. },
  37266. frontPaw: {
  37267. height: math.unit(2.36, "feet"),
  37268. name: "Front paw",
  37269. image: {
  37270. source: "./media/characters/haloren/front-paw.svg"
  37271. }
  37272. },
  37273. hindPaw: {
  37274. height: math.unit(3.18, "feet"),
  37275. name: "Hind paw",
  37276. image: {
  37277. source: "./media/characters/haloren/hind-paw.svg"
  37278. }
  37279. },
  37280. maw: {
  37281. height: math.unit(5.05, "feet"),
  37282. name: "Maw",
  37283. image: {
  37284. source: "./media/characters/haloren/maw.svg"
  37285. }
  37286. },
  37287. dick: {
  37288. height: math.unit(2.90, "feet"),
  37289. name: "Dick",
  37290. image: {
  37291. source: "./media/characters/haloren/dick.svg"
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(7 + 5/12, "feet"),
  37299. default: true
  37300. },
  37301. {
  37302. name: "Enhanced",
  37303. height: math.unit(14 + 3/12, "feet")
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(171, "cm"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/kimmy/front.svg",
  37315. extra: 1491/1435,
  37316. bottom: 53/1544
  37317. }
  37318. },
  37319. },
  37320. [
  37321. {
  37322. name: "Small",
  37323. height: math.unit(9, "cm")
  37324. },
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(171, "cm"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(8, "feet"),
  37337. weight: math.unit(300, "lb"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/galeboomer/front.svg",
  37341. extra: 4651/4415,
  37342. bottom: 162/4813
  37343. }
  37344. },
  37345. back: {
  37346. height: math.unit(8, "feet"),
  37347. weight: math.unit(300, "lb"),
  37348. name: "Back",
  37349. image: {
  37350. source: "./media/characters/galeboomer/back.svg",
  37351. extra: 4544/4314,
  37352. bottom: 16/4560
  37353. }
  37354. },
  37355. frontAlt: {
  37356. height: math.unit(8, "feet"),
  37357. weight: math.unit(300, "lb"),
  37358. name: "Front (Alt)",
  37359. image: {
  37360. source: "./media/characters/galeboomer/front-alt.svg",
  37361. extra: 4458/4228,
  37362. bottom: 68/4526
  37363. }
  37364. },
  37365. maw: {
  37366. height: math.unit(1.2, "feet"),
  37367. name: "Maw",
  37368. image: {
  37369. source: "./media/characters/galeboomer/maw.svg"
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(8, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(5 + 9/12, "feet"),
  37386. weight: math.unit(120, "lb"),
  37387. name: "Front",
  37388. image: {
  37389. source: "./media/characters/chyr/front.svg",
  37390. extra: 1323/1254,
  37391. bottom: 63/1386
  37392. }
  37393. },
  37394. back: {
  37395. height: math.unit(5 + 9/12, "feet"),
  37396. weight: math.unit(120, "lb"),
  37397. name: "Back",
  37398. image: {
  37399. source: "./media/characters/chyr/back.svg",
  37400. extra: 1323/1252,
  37401. bottom: 48/1371
  37402. }
  37403. },
  37404. },
  37405. [
  37406. {
  37407. name: "Normal",
  37408. height: math.unit(5 + 9/12, "feet"),
  37409. default: true
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(7, "feet"),
  37418. weight: math.unit(310, "lb"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/solarus/front.svg",
  37422. extra: 2415/2021,
  37423. bottom: 103/2518
  37424. }
  37425. },
  37426. back: {
  37427. height: math.unit(7, "feet"),
  37428. weight: math.unit(310, "lb"),
  37429. name: "Back",
  37430. image: {
  37431. source: "./media/characters/solarus/back.svg",
  37432. extra: 2463/2089,
  37433. bottom: 79/2542
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(7, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(16, "feet"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37453. extra: 1844/1780,
  37454. bottom: 58/1902
  37455. }
  37456. },
  37457. winterCoat: {
  37458. height: math.unit(16, "feet"),
  37459. name: "Winter Coat",
  37460. image: {
  37461. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37462. extra: 1807/1775,
  37463. bottom: 69/1876
  37464. }
  37465. },
  37466. },
  37467. [
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(16, "feet"),
  37471. default: true
  37472. },
  37473. {
  37474. name: "Chicago Size",
  37475. height: math.unit(560, "feet")
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(11 + 6/12, "feet"),
  37484. weight: math.unit(1366, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/lexor/front.svg",
  37488. extra: 1560/1481,
  37489. bottom: 211/1771
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(11 + 6/12, "feet"),
  37494. weight: math.unit(1366, "lb"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/lexor/back.svg",
  37498. extra: 1614/1533,
  37499. bottom: 76/1690
  37500. }
  37501. },
  37502. maw: {
  37503. height: math.unit(3, "feet"),
  37504. name: "Maw",
  37505. image: {
  37506. source: "./media/characters/lexor/maw.svg"
  37507. }
  37508. },
  37509. dick: {
  37510. height: math.unit(2.59, "feet"),
  37511. name: "Dick",
  37512. image: {
  37513. source: "./media/characters/lexor/dick.svg"
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(11 + 6/12, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(5 + 8/12, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/magnum/front.svg",
  37533. extra: 942/855,
  37534. bottom: 26/968
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(5 + 8/12, "feet"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37548. {
  37549. front: {
  37550. height: math.unit(18 + 4/12, "feet"),
  37551. weight: math.unit(1500, "kg"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/solas-sharpsman/front.svg",
  37555. extra: 1698/1589,
  37556. bottom: 0/1698
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(18 + 4/12, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(5 + 5/12, "feet"),
  37573. weight: math.unit(180, "lb"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/october/front.svg",
  37577. extra: 1800/1650,
  37578. bottom: 0/1800
  37579. }
  37580. },
  37581. frontNsfw: {
  37582. height: math.unit(5 + 5/12, "feet"),
  37583. weight: math.unit(180, "lb"),
  37584. name: "Front (NSFW)",
  37585. image: {
  37586. source: "./media/characters/october/front-nsfw.svg",
  37587. extra: 1392/1307,
  37588. bottom: 42/1434
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(5 + 5/12, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(8 + 6/12, "feet"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/essynkardi/front.svg",
  37608. extra: 1914/1846,
  37609. bottom: 22/1936
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Normal",
  37616. height: math.unit(8 + 6/12, "feet"),
  37617. default: true
  37618. },
  37619. ]
  37620. ))
  37621. characterMakers.push(() => makeCharacter(
  37622. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37623. {
  37624. front: {
  37625. height: math.unit(6 + 6/12, "feet"),
  37626. weight: math.unit(7, "lb"),
  37627. name: "Front",
  37628. image: {
  37629. source: "./media/characters/icky/front.svg",
  37630. extra: 813/782,
  37631. bottom: 66/879
  37632. }
  37633. },
  37634. back: {
  37635. height: math.unit(6 + 6/12, "feet"),
  37636. weight: math.unit(7, "lb"),
  37637. name: "Back",
  37638. image: {
  37639. source: "./media/characters/icky/back.svg",
  37640. extra: 754/735,
  37641. bottom: 56/810
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(6 + 6/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(15, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/rojas/front.svg",
  37661. extra: 1462/1408,
  37662. bottom: 95/1557
  37663. }
  37664. },
  37665. back: {
  37666. height: math.unit(15, "feet"),
  37667. name: "Back",
  37668. image: {
  37669. source: "./media/characters/rojas/back.svg",
  37670. extra: 1023/954,
  37671. bottom: 28/1051
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(15, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37685. {
  37686. frontHuman: {
  37687. height: math.unit(5 + 7/12, "feet"),
  37688. name: "Front (Human)",
  37689. image: {
  37690. source: "./media/characters/alek-dryagan/front-human.svg",
  37691. extra: 1687/1667,
  37692. bottom: 69/1756
  37693. }
  37694. },
  37695. backHuman: {
  37696. height: math.unit(5 + 7/12, "feet"),
  37697. name: "Back (Human)",
  37698. image: {
  37699. source: "./media/characters/alek-dryagan/back-human.svg",
  37700. extra: 1670/1649,
  37701. bottom: 65/1735
  37702. }
  37703. },
  37704. frontDemi: {
  37705. height: math.unit(65, "feet"),
  37706. name: "Front (Demi)",
  37707. image: {
  37708. source: "./media/characters/alek-dryagan/front-demi.svg",
  37709. extra: 1669/1642,
  37710. bottom: 49/1718
  37711. }
  37712. },
  37713. backDemi: {
  37714. height: math.unit(65, "feet"),
  37715. name: "Back (Demi)",
  37716. image: {
  37717. source: "./media/characters/alek-dryagan/back-demi.svg",
  37718. extra: 1658/1637,
  37719. bottom: 40/1698
  37720. }
  37721. },
  37722. mawHuman: {
  37723. height: math.unit(0.3, "feet"),
  37724. name: "Maw (Human)",
  37725. image: {
  37726. source: "./media/characters/alek-dryagan/maw-human.svg"
  37727. }
  37728. },
  37729. mawDemi: {
  37730. height: math.unit(3.8, "feet"),
  37731. name: "Maw (Demi)",
  37732. image: {
  37733. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(5 + 7/12, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37747. {
  37748. frontHuman: {
  37749. height: math.unit(5 + 2/12, "feet"),
  37750. name: "Front (Human)",
  37751. image: {
  37752. source: "./media/characters/gen/front-human.svg",
  37753. extra: 1627/1538,
  37754. bottom: 71/1698
  37755. }
  37756. },
  37757. backHuman: {
  37758. height: math.unit(5 + 2/12, "feet"),
  37759. name: "Back (Human)",
  37760. image: {
  37761. source: "./media/characters/gen/back-human.svg",
  37762. extra: 1638/1548,
  37763. bottom: 69/1707
  37764. }
  37765. },
  37766. frontDemi: {
  37767. height: math.unit(5 + 2/12, "feet"),
  37768. name: "Front (Demi)",
  37769. image: {
  37770. source: "./media/characters/gen/front-demi.svg",
  37771. extra: 1627/1538,
  37772. bottom: 71/1698
  37773. }
  37774. },
  37775. backDemi: {
  37776. height: math.unit(5 + 2/12, "feet"),
  37777. name: "Back (Demi)",
  37778. image: {
  37779. source: "./media/characters/gen/back-demi.svg",
  37780. extra: 1638/1548,
  37781. bottom: 69/1707
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(5 + 2/12, "feet"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37795. {
  37796. frontImp: {
  37797. height: math.unit(1 + 11/12, "feet"),
  37798. name: "Front (Imp)",
  37799. image: {
  37800. source: "./media/characters/max-kobold/front-imp.svg",
  37801. extra: 1238/1134,
  37802. bottom: 81/1319
  37803. }
  37804. },
  37805. backImp: {
  37806. height: math.unit(1 + 11/12, "feet"),
  37807. name: "Back (Imp)",
  37808. image: {
  37809. source: "./media/characters/max-kobold/back-imp.svg",
  37810. extra: 1334/1175,
  37811. bottom: 34/1368
  37812. }
  37813. },
  37814. frontDemi: {
  37815. height: math.unit(5 + 9/12, "feet"),
  37816. name: "Front (Demi)",
  37817. image: {
  37818. source: "./media/characters/max-kobold/front-demi.svg",
  37819. extra: 1715/1685,
  37820. bottom: 54/1769
  37821. }
  37822. },
  37823. backDemi: {
  37824. height: math.unit(5 + 9/12, "feet"),
  37825. name: "Back (Demi)",
  37826. image: {
  37827. source: "./media/characters/max-kobold/back-demi.svg",
  37828. extra: 1752/1729,
  37829. bottom: 41/1793
  37830. }
  37831. },
  37832. handImp: {
  37833. height: math.unit(0.45, "feet"),
  37834. name: "Hand (Imp)",
  37835. image: {
  37836. source: "./media/characters/max-kobold/hand.svg"
  37837. }
  37838. },
  37839. pawImp: {
  37840. height: math.unit(0.46, "feet"),
  37841. name: "Paw (Imp)",
  37842. image: {
  37843. source: "./media/characters/max-kobold/paw.svg"
  37844. }
  37845. },
  37846. handDemi: {
  37847. height: math.unit(0.80, "feet"),
  37848. name: "Hand (Demi)",
  37849. image: {
  37850. source: "./media/characters/max-kobold/hand.svg"
  37851. }
  37852. },
  37853. pawDemi: {
  37854. height: math.unit(1.1, "feet"),
  37855. name: "Paw (Demi)",
  37856. image: {
  37857. source: "./media/characters/max-kobold/paw.svg"
  37858. }
  37859. },
  37860. headImp: {
  37861. height: math.unit(1.33, "feet"),
  37862. name: "Head (Imp)",
  37863. image: {
  37864. source: "./media/characters/max-kobold/head-imp.svg"
  37865. }
  37866. },
  37867. mawImp: {
  37868. height: math.unit(0.75, "feet"),
  37869. name: "Maw (Imp)",
  37870. image: {
  37871. source: "./media/characters/max-kobold/maw-imp.svg"
  37872. }
  37873. },
  37874. mawDemi: {
  37875. height: math.unit(0.42, "feet"),
  37876. name: "Maw (Demi)",
  37877. image: {
  37878. source: "./media/characters/max-kobold/maw-demi.svg"
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(1 + 11/12, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(7 + 5/12, "feet"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/carbon/front.svg",
  37898. extra: 1754/1689,
  37899. bottom: 65/1819
  37900. }
  37901. },
  37902. back: {
  37903. height: math.unit(7 + 5/12, "feet"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/carbon/back.svg",
  37907. extra: 1762/1695,
  37908. bottom: 24/1786
  37909. }
  37910. },
  37911. frontGigantamax: {
  37912. height: math.unit(150, "feet"),
  37913. name: "Front (Gigantamax)",
  37914. image: {
  37915. source: "./media/characters/carbon/front-gigantamax.svg",
  37916. extra: 1826/1669,
  37917. bottom: 59/1885
  37918. }
  37919. },
  37920. backGigantamax: {
  37921. height: math.unit(150, "feet"),
  37922. name: "Back (Gigantamax)",
  37923. image: {
  37924. source: "./media/characters/carbon/back-gigantamax.svg",
  37925. extra: 1796/1653,
  37926. bottom: 53/1849
  37927. }
  37928. },
  37929. maw: {
  37930. height: math.unit(0.48, "feet"),
  37931. name: "Maw",
  37932. image: {
  37933. source: "./media/characters/carbon/maw.svg"
  37934. }
  37935. },
  37936. mawGigantamax: {
  37937. height: math.unit(7.5, "feet"),
  37938. name: "Maw (Gigantamax)",
  37939. image: {
  37940. source: "./media/characters/carbon/maw-gigantamax.svg"
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(7 + 5/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(6, "feet"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/maverick/front.svg",
  37960. extra: 1672/1661,
  37961. bottom: 85/1757
  37962. }
  37963. },
  37964. back: {
  37965. height: math.unit(6, "feet"),
  37966. name: "Back",
  37967. image: {
  37968. source: "./media/characters/maverick/back.svg",
  37969. extra: 1642/1631,
  37970. bottom: 38/1680
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(6, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37984. {
  37985. front: {
  37986. height: math.unit(15, "feet"),
  37987. weight: math.unit(615, "lb"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/grockle/front.svg",
  37991. extra: 1535/1427,
  37992. bottom: 56/1591
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(15, "feet"),
  38000. default: true
  38001. },
  38002. {
  38003. name: "Large",
  38004. height: math.unit(150, "feet")
  38005. },
  38006. {
  38007. name: "Macro",
  38008. height: math.unit(1876, "feet")
  38009. },
  38010. {
  38011. name: "Mega Macro",
  38012. height: math.unit(121940, "feet")
  38013. },
  38014. {
  38015. name: "Giga Macro",
  38016. height: math.unit(750, "km")
  38017. },
  38018. {
  38019. name: "Tera Macro",
  38020. height: math.unit(750000, "km")
  38021. },
  38022. {
  38023. name: "Galactic",
  38024. height: math.unit(1.4e5, "km")
  38025. },
  38026. {
  38027. name: "Godlike",
  38028. height: math.unit(9.8e280, "galaxies")
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(11, "meters"),
  38037. weight: math.unit(20, "tonnes"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/alistair/front.svg",
  38041. extra: 1265/1009,
  38042. bottom: 93/1358
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(11, "meters"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(5 + 8/12, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/haruka/front.svg",
  38062. extra: 2012/1952,
  38063. bottom: 0/2012
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(5 + 8/12, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38077. {
  38078. back: {
  38079. height: math.unit(9, "feet"),
  38080. name: "Back",
  38081. image: {
  38082. source: "./media/characters/vivian-sylveon/back.svg",
  38083. extra: 1853/1714,
  38084. bottom: 0/1853
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(9, "feet"),
  38092. default: true
  38093. },
  38094. {
  38095. name: "Macro",
  38096. height: math.unit(500, "feet")
  38097. },
  38098. {
  38099. name: "Megamacro",
  38100. height: math.unit(600, "miles")
  38101. },
  38102. {
  38103. name: "Gigamacro",
  38104. height: math.unit(30000, "miles")
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38110. {
  38111. anthro: {
  38112. height: math.unit(5 + 10/12, "feet"),
  38113. weight: math.unit(100, "lb"),
  38114. name: "Anthro",
  38115. image: {
  38116. source: "./media/characters/daiki/anthro.svg",
  38117. extra: 1115/1027,
  38118. bottom: 69/1184
  38119. }
  38120. },
  38121. feral: {
  38122. height: math.unit(200, "feet"),
  38123. name: "Feral",
  38124. image: {
  38125. source: "./media/characters/daiki/feral.svg",
  38126. extra: 1256/313,
  38127. bottom: 39/1295
  38128. }
  38129. },
  38130. feralHead: {
  38131. height: math.unit(171, "feet"),
  38132. name: "Feral Head",
  38133. image: {
  38134. source: "./media/characters/daiki/feral-head.svg"
  38135. }
  38136. },
  38137. manaDragon: {
  38138. height: math.unit(170, "meters"),
  38139. name: "Mana-dragon",
  38140. image: {
  38141. source: "./media/characters/daiki/mana-dragon.svg",
  38142. extra: 763/420,
  38143. bottom: 97/860
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(5 + 10/12, "feet"),
  38151. default: true
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38157. {
  38158. fullyEquippedFront: {
  38159. height: math.unit(3 + 1/12, "feet"),
  38160. weight: math.unit(24, "lb"),
  38161. name: "Fully Equipped (Front)",
  38162. image: {
  38163. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38164. extra: 687/605,
  38165. bottom: 18/705
  38166. }
  38167. },
  38168. fullyEquippedBack: {
  38169. height: math.unit(3 + 1/12, "feet"),
  38170. weight: math.unit(24, "lb"),
  38171. name: "Fully Equipped (Back)",
  38172. image: {
  38173. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38174. extra: 689/590,
  38175. bottom: 18/707
  38176. }
  38177. },
  38178. dailyWear: {
  38179. height: math.unit(3 + 1/12, "feet"),
  38180. weight: math.unit(24, "lb"),
  38181. name: "Daily Wear",
  38182. image: {
  38183. source: "./media/characters/tea-spot/daily-wear.svg",
  38184. extra: 701/620,
  38185. bottom: 21/722
  38186. }
  38187. },
  38188. maidWork: {
  38189. height: math.unit(3 + 1/12, "feet"),
  38190. weight: math.unit(24, "lb"),
  38191. name: "Maid Work",
  38192. image: {
  38193. source: "./media/characters/tea-spot/maid-work.svg",
  38194. extra: 693/609,
  38195. bottom: 15/708
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(3 + 1/12, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(175, "cm"),
  38212. weight: math.unit(75, "kg"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/chee/front.svg",
  38216. extra: 1796/1740,
  38217. bottom: 40/1836
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Micro-Micro",
  38224. height: math.unit(1, "nm")
  38225. },
  38226. {
  38227. name: "Micro-erst",
  38228. height: math.unit(1, "micrometer")
  38229. },
  38230. {
  38231. name: "Micro-er",
  38232. height: math.unit(1, "cm")
  38233. },
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(175, "cm"),
  38237. default: true
  38238. },
  38239. {
  38240. name: "Macro",
  38241. height: math.unit(100, "m")
  38242. },
  38243. {
  38244. name: "Macro-er",
  38245. height: math.unit(1, "km")
  38246. },
  38247. {
  38248. name: "Macro-erst",
  38249. height: math.unit(10, "km")
  38250. },
  38251. {
  38252. name: "Macro-Macro",
  38253. height: math.unit(100, "km")
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38259. {
  38260. front: {
  38261. height: math.unit(11 + 9/12, "feet"),
  38262. weight: math.unit(935, "lb"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/kingsley/front.svg",
  38266. extra: 1803/1674,
  38267. bottom: 127/1930
  38268. }
  38269. },
  38270. frontNude: {
  38271. height: math.unit(11 + 9/12, "feet"),
  38272. weight: math.unit(935, "lb"),
  38273. name: "Front (Nude)",
  38274. image: {
  38275. source: "./media/characters/kingsley/front-nude.svg",
  38276. extra: 1803/1674,
  38277. bottom: 127/1930
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(11 + 9/12, "feet"),
  38285. default: true
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38291. {
  38292. side: {
  38293. height: math.unit(9, "feet"),
  38294. name: "Side",
  38295. image: {
  38296. source: "./media/characters/rymel/side.svg",
  38297. extra: 792/469,
  38298. bottom: 121/913
  38299. }
  38300. },
  38301. maw: {
  38302. height: math.unit(2.4, "meters"),
  38303. name: "Maw",
  38304. image: {
  38305. source: "./media/characters/rymel/maw.svg"
  38306. }
  38307. },
  38308. },
  38309. [
  38310. {
  38311. name: "House Drake",
  38312. height: math.unit(2, "feet")
  38313. },
  38314. {
  38315. name: "Reduced",
  38316. height: math.unit(4.5, "feet")
  38317. },
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(9, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(1.74, "meters"),
  38330. weight: math.unit(55, "kg"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/rubus/front.svg",
  38334. extra: 1894/1742,
  38335. bottom: 44/1938
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(1.74, "meters"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38349. {
  38350. front: {
  38351. height: math.unit(5 + 2/12, "feet"),
  38352. weight: math.unit(112, "lb"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/cassie-kingston/front.svg",
  38356. extra: 1438/1390,
  38357. bottom: 47/1485
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(5 + 2/12, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Macro",
  38369. height: math.unit(128, "feet")
  38370. },
  38371. {
  38372. name: "Megamacro",
  38373. height: math.unit(2.56, "miles")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(7, "feet"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/fox/front.svg",
  38385. extra: 1798/1703,
  38386. bottom: 55/1853
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(7, "feet"),
  38391. name: "Back",
  38392. image: {
  38393. source: "./media/characters/fox/back.svg",
  38394. extra: 1748/1649,
  38395. bottom: 32/1780
  38396. }
  38397. },
  38398. head: {
  38399. height: math.unit(1.95, "feet"),
  38400. name: "Head",
  38401. image: {
  38402. source: "./media/characters/fox/head.svg"
  38403. }
  38404. },
  38405. dick: {
  38406. height: math.unit(1.33, "feet"),
  38407. name: "Dick",
  38408. image: {
  38409. source: "./media/characters/fox/dick.svg"
  38410. }
  38411. },
  38412. foot: {
  38413. height: math.unit(1, "feet"),
  38414. name: "Foot",
  38415. image: {
  38416. source: "./media/characters/fox/foot.svg"
  38417. }
  38418. },
  38419. paw: {
  38420. height: math.unit(0.92, "feet"),
  38421. name: "Paw",
  38422. image: {
  38423. source: "./media/characters/fox/paw.svg"
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Small",
  38430. height: math.unit(3, "inches")
  38431. },
  38432. {
  38433. name: "\"Realistic\"",
  38434. height: math.unit(7, "feet")
  38435. },
  38436. {
  38437. name: "Normal",
  38438. height: math.unit(150, "feet"),
  38439. default: true
  38440. },
  38441. {
  38442. name: "BIG",
  38443. height: math.unit(1200, "feet")
  38444. },
  38445. {
  38446. name: "👀",
  38447. height: math.unit(5, "miles")
  38448. },
  38449. {
  38450. name: "👀👀👀",
  38451. height: math.unit(64, "miles")
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(625, "feet"),
  38460. name: "Front",
  38461. image: {
  38462. source: "./media/characters/asonja-rossa/front.svg",
  38463. extra: 1833/1686,
  38464. bottom: 24/1857
  38465. }
  38466. },
  38467. back: {
  38468. height: math.unit(625, "feet"),
  38469. name: "Back",
  38470. image: {
  38471. source: "./media/characters/asonja-rossa/back.svg",
  38472. extra: 1852/1753,
  38473. bottom: 26/1878
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Macro",
  38480. height: math.unit(625, "feet"),
  38481. default: true
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38487. {
  38488. side: {
  38489. height: math.unit(8, "feet"),
  38490. name: "Side",
  38491. image: {
  38492. source: "./media/characters/rezukii/side.svg",
  38493. extra: 979/542,
  38494. bottom: 87/1066
  38495. }
  38496. },
  38497. sitting: {
  38498. height: math.unit(14.6, "feet"),
  38499. name: "Sitting",
  38500. image: {
  38501. source: "./media/characters/rezukii/sitting.svg",
  38502. extra: 1023/813,
  38503. bottom: 45/1068
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Tiny",
  38510. height: math.unit(2, "feet")
  38511. },
  38512. {
  38513. name: "Smol",
  38514. height: math.unit(4, "feet")
  38515. },
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(8, "feet"),
  38519. default: true
  38520. },
  38521. {
  38522. name: "Big",
  38523. height: math.unit(12, "feet")
  38524. },
  38525. {
  38526. name: "Macro",
  38527. height: math.unit(30, "feet")
  38528. },
  38529. ]
  38530. ))
  38531. characterMakers.push(() => makeCharacter(
  38532. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38533. {
  38534. front: {
  38535. height: math.unit(14, "feet"),
  38536. weight: math.unit(9.5, "tonnes"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/dawnheart/front.svg",
  38540. extra: 2792/2675,
  38541. bottom: 64/2856
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(14, "feet"),
  38549. default: true
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38555. {
  38556. front: {
  38557. height: math.unit(1.7, "m"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/gladi/front.svg",
  38561. extra: 1460/1362,
  38562. bottom: 19/1479
  38563. }
  38564. },
  38565. back: {
  38566. height: math.unit(1.7, "m"),
  38567. name: "Back",
  38568. image: {
  38569. source: "./media/characters/gladi/back.svg",
  38570. extra: 1459/1357,
  38571. bottom: 12/1471
  38572. }
  38573. },
  38574. feral: {
  38575. height: math.unit(2.05, "m"),
  38576. name: "Feral",
  38577. image: {
  38578. source: "./media/characters/gladi/feral.svg",
  38579. extra: 821/557,
  38580. bottom: 91/912
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Shortest",
  38587. height: math.unit(70, "cm")
  38588. },
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(1.7, "m")
  38592. },
  38593. {
  38594. name: "Macro",
  38595. height: math.unit(10, "m"),
  38596. default: true
  38597. },
  38598. {
  38599. name: "Tallest",
  38600. height: math.unit(200, "m")
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(5 + 7/12, "feet"),
  38609. weight: math.unit(2, "tons"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/erdno/front.svg",
  38613. extra: 1234/1129,
  38614. bottom: 35/1269
  38615. }
  38616. },
  38617. angled: {
  38618. height: math.unit(5 + 7/12, "feet"),
  38619. weight: math.unit(2, "tons"),
  38620. name: "Angled",
  38621. image: {
  38622. source: "./media/characters/erdno/angled.svg",
  38623. extra: 1185/1139,
  38624. bottom: 36/1221
  38625. }
  38626. },
  38627. side: {
  38628. height: math.unit(5 + 7/12, "feet"),
  38629. weight: math.unit(2, "tons"),
  38630. name: "Side",
  38631. image: {
  38632. source: "./media/characters/erdno/side.svg",
  38633. extra: 1191/1144,
  38634. bottom: 40/1231
  38635. }
  38636. },
  38637. back: {
  38638. height: math.unit(5 + 7/12, "feet"),
  38639. weight: math.unit(2, "tons"),
  38640. name: "Back",
  38641. image: {
  38642. source: "./media/characters/erdno/back.svg",
  38643. extra: 1202/1146,
  38644. bottom: 17/1219
  38645. }
  38646. },
  38647. frontNsfw: {
  38648. height: math.unit(5 + 7/12, "feet"),
  38649. weight: math.unit(2, "tons"),
  38650. name: "Front (NSFW)",
  38651. image: {
  38652. source: "./media/characters/erdno/front-nsfw.svg",
  38653. extra: 1234/1129,
  38654. bottom: 35/1269
  38655. }
  38656. },
  38657. angledNsfw: {
  38658. height: math.unit(5 + 7/12, "feet"),
  38659. weight: math.unit(2, "tons"),
  38660. name: "Angled (NSFW)",
  38661. image: {
  38662. source: "./media/characters/erdno/angled-nsfw.svg",
  38663. extra: 1185/1139,
  38664. bottom: 36/1221
  38665. }
  38666. },
  38667. sideNsfw: {
  38668. height: math.unit(5 + 7/12, "feet"),
  38669. weight: math.unit(2, "tons"),
  38670. name: "Side (NSFW)",
  38671. image: {
  38672. source: "./media/characters/erdno/side-nsfw.svg",
  38673. extra: 1191/1144,
  38674. bottom: 40/1231
  38675. }
  38676. },
  38677. backNsfw: {
  38678. height: math.unit(5 + 7/12, "feet"),
  38679. weight: math.unit(2, "tons"),
  38680. name: "Back (NSFW)",
  38681. image: {
  38682. source: "./media/characters/erdno/back-nsfw.svg",
  38683. extra: 1202/1146,
  38684. bottom: 17/1219
  38685. }
  38686. },
  38687. frontHyper: {
  38688. height: math.unit(5 + 7/12, "feet"),
  38689. weight: math.unit(2, "tons"),
  38690. name: "Front (Hyper)",
  38691. image: {
  38692. source: "./media/characters/erdno/front-hyper.svg",
  38693. extra: 1298/1136,
  38694. bottom: 35/1333
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(5 + 7/12, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Big",
  38706. height: math.unit(5.7, "meters")
  38707. },
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(5.7, "kilometers")
  38711. },
  38712. {
  38713. name: "Megamacro",
  38714. height: math.unit(5.7, "earths")
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(5 + 10/12, "feet"),
  38723. weight: math.unit(150, "lb"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/jamie/front.svg",
  38727. extra: 1908/1768,
  38728. bottom: 19/1927
  38729. }
  38730. },
  38731. },
  38732. [
  38733. {
  38734. name: "Minimum",
  38735. height: math.unit(2, "cm")
  38736. },
  38737. {
  38738. name: "Micro",
  38739. height: math.unit(3, "inches")
  38740. },
  38741. {
  38742. name: "Normal",
  38743. height: math.unit(5 + 10/12, "feet"),
  38744. default: true
  38745. },
  38746. {
  38747. name: "Macro",
  38748. height: math.unit(150, "feet")
  38749. },
  38750. {
  38751. name: "Megamacro",
  38752. height: math.unit(10000, "m")
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(2, "meters"),
  38761. weight: math.unit(100, "kg"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/shiron/front.svg",
  38765. extra: 2103/1985,
  38766. bottom: 98/2201
  38767. }
  38768. },
  38769. back: {
  38770. height: math.unit(2, "meters"),
  38771. weight: math.unit(100, "kg"),
  38772. name: "Back",
  38773. image: {
  38774. source: "./media/characters/shiron/back.svg",
  38775. extra: 2110/2015,
  38776. bottom: 89/2199
  38777. }
  38778. },
  38779. hand: {
  38780. height: math.unit(0.96, "feet"),
  38781. name: "Hand",
  38782. image: {
  38783. source: "./media/characters/shiron/hand.svg"
  38784. }
  38785. },
  38786. foot: {
  38787. height: math.unit(1.464, "feet"),
  38788. name: "Foot",
  38789. image: {
  38790. source: "./media/characters/shiron/foot.svg"
  38791. }
  38792. },
  38793. },
  38794. [
  38795. {
  38796. name: "Normal",
  38797. height: math.unit(2, "meters")
  38798. },
  38799. {
  38800. name: "Macro",
  38801. height: math.unit(500, "meters"),
  38802. default: true
  38803. },
  38804. {
  38805. name: "Megamacro",
  38806. height: math.unit(20, "km")
  38807. },
  38808. ]
  38809. ))
  38810. characterMakers.push(() => makeCharacter(
  38811. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38812. {
  38813. front: {
  38814. height: math.unit(6, "feet"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/sam/front.svg",
  38818. extra: 849/826,
  38819. bottom: 19/868
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(6, "feet"),
  38827. default: true
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(8 + 4/12, "feet"),
  38836. weight: math.unit(122, "kg"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/namori-kurogawa/front.svg",
  38840. extra: 1894/1576,
  38841. bottom: 34/1928
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(8 + 4/12, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(9, "feet"),
  38858. weight: math.unit(621, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/unmru/front.svg",
  38862. extra: 1853/1747,
  38863. bottom: 73/1926
  38864. }
  38865. },
  38866. side: {
  38867. height: math.unit(9, "feet"),
  38868. weight: math.unit(621, "lb"),
  38869. name: "Side",
  38870. image: {
  38871. source: "./media/characters/unmru/side.svg",
  38872. extra: 1781/1671,
  38873. bottom: 127/1908
  38874. }
  38875. },
  38876. back: {
  38877. height: math.unit(9, "feet"),
  38878. weight: math.unit(621, "lb"),
  38879. name: "Back",
  38880. image: {
  38881. source: "./media/characters/unmru/back.svg",
  38882. extra: 1894/1765,
  38883. bottom: 75/1969
  38884. }
  38885. },
  38886. dick: {
  38887. height: math.unit(3, "feet"),
  38888. weight: math.unit(35, "lb"),
  38889. name: "Dick",
  38890. image: {
  38891. source: "./media/characters/unmru/dick.svg"
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Normal",
  38898. height: math.unit(9, "feet")
  38899. },
  38900. {
  38901. name: "Natural",
  38902. height: math.unit(27, "feet"),
  38903. default: true
  38904. },
  38905. {
  38906. name: "Giant",
  38907. height: math.unit(90, "feet")
  38908. },
  38909. {
  38910. name: "Kaiju",
  38911. height: math.unit(270, "feet")
  38912. },
  38913. {
  38914. name: "Macro",
  38915. height: math.unit(900, "feet")
  38916. },
  38917. {
  38918. name: "Macro+",
  38919. height: math.unit(2700, "feet")
  38920. },
  38921. {
  38922. name: "Megamacro",
  38923. height: math.unit(9000, "feet")
  38924. },
  38925. {
  38926. name: "City-Crushing",
  38927. height: math.unit(27000, "feet")
  38928. },
  38929. {
  38930. name: "Mountain-Mashing",
  38931. height: math.unit(90000, "feet")
  38932. },
  38933. {
  38934. name: "Earth-Eclipsing",
  38935. height: math.unit(2.7e8, "feet")
  38936. },
  38937. {
  38938. name: "Sol-Swallowing",
  38939. height: math.unit(9e10, "feet")
  38940. },
  38941. {
  38942. name: "Majoris-Munching",
  38943. height: math.unit(2.7e13, "feet")
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38949. {
  38950. front: {
  38951. height: math.unit(1, "inch"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/squeaks-mouse/front.svg",
  38955. extra: 352/308,
  38956. bottom: 25/377
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Micro",
  38963. height: math.unit(1, "inch"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38970. {
  38971. side: {
  38972. height: math.unit(35, "feet"),
  38973. name: "Side",
  38974. image: {
  38975. source: "./media/characters/sayko/side.svg",
  38976. extra: 1697/1021,
  38977. bottom: 82/1779
  38978. }
  38979. },
  38980. head: {
  38981. height: math.unit(16, "feet"),
  38982. name: "Head",
  38983. image: {
  38984. source: "./media/characters/sayko/head.svg"
  38985. }
  38986. },
  38987. forepaw: {
  38988. height: math.unit(7.85, "feet"),
  38989. name: "Forepaw",
  38990. image: {
  38991. source: "./media/characters/sayko/forepaw.svg"
  38992. }
  38993. },
  38994. hindpaw: {
  38995. height: math.unit(8.8, "feet"),
  38996. name: "Hindpaw",
  38997. image: {
  38998. source: "./media/characters/sayko/hindpaw.svg"
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(35, "feet"),
  39006. default: true
  39007. },
  39008. {
  39009. name: "Colossus",
  39010. height: math.unit(100, "meters")
  39011. },
  39012. {
  39013. name: "\"Small\" Deity",
  39014. height: math.unit(1, "km")
  39015. },
  39016. {
  39017. name: "\"Large\" Deity",
  39018. height: math.unit(15, "km")
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(6, "feet"),
  39027. weight: math.unit(250, "lb"),
  39028. name: "Front",
  39029. image: {
  39030. source: "./media/characters/mukiro/front.svg",
  39031. extra: 1368/1310,
  39032. bottom: 34/1402
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(6, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(12 + 4/12, "feet"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39052. extra: 1346/1311,
  39053. bottom: 65/1411
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Base",
  39060. height: math.unit(12 + 4/12, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "Macro",
  39065. height: math.unit(150, "feet")
  39066. },
  39067. {
  39068. name: "Mega",
  39069. height: math.unit(2, "miles")
  39070. },
  39071. {
  39072. name: "Demi God",
  39073. height: math.unit(4, "AU")
  39074. },
  39075. {
  39076. name: "God Size",
  39077. height: math.unit(1, "universe")
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(3 + 3/12, "feet"),
  39086. weight: math.unit(88, "lb"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/trey/front.svg",
  39090. extra: 1815/1509,
  39091. bottom: 60/1875
  39092. }
  39093. },
  39094. },
  39095. [
  39096. {
  39097. name: "Normal",
  39098. height: math.unit(3 + 3/12, "feet"),
  39099. default: true
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39105. {
  39106. front: {
  39107. height: math.unit(4, "meters"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/adelonda/front.svg",
  39111. extra: 1077/982,
  39112. bottom: 39/1116
  39113. }
  39114. },
  39115. back: {
  39116. height: math.unit(4, "meters"),
  39117. name: "Back",
  39118. image: {
  39119. source: "./media/characters/adelonda/back.svg",
  39120. extra: 1105/1003,
  39121. bottom: 25/1130
  39122. }
  39123. },
  39124. feral: {
  39125. height: math.unit(40/1.5, "meters"),
  39126. name: "Feral",
  39127. image: {
  39128. source: "./media/characters/adelonda/feral.svg",
  39129. extra: 597/271,
  39130. bottom: 387/984
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Normal",
  39137. height: math.unit(4, "meters"),
  39138. default: true
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(8 + 4/12, "feet"),
  39147. weight: math.unit(670, "lb"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/acadiel/front.svg",
  39151. extra: 1901/1595,
  39152. bottom: 142/2043
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(8 + 4/12, "feet"),
  39160. default: true
  39161. },
  39162. {
  39163. name: "Macro",
  39164. height: math.unit(200, "feet")
  39165. },
  39166. ]
  39167. ))
  39168. characterMakers.push(() => makeCharacter(
  39169. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39170. {
  39171. front: {
  39172. height: math.unit(6 + 2/12, "feet"),
  39173. weight: math.unit(185, "lb"),
  39174. name: "Front",
  39175. image: {
  39176. source: "./media/characters/kayne-ein/front.svg",
  39177. extra: 1780/1560,
  39178. bottom: 81/1861
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(6 + 2/12, "feet"),
  39186. default: true
  39187. },
  39188. {
  39189. name: "Transformation Stage",
  39190. height: math.unit(15, "feet")
  39191. },
  39192. {
  39193. name: "Macro",
  39194. height: math.unit(150, "feet")
  39195. },
  39196. {
  39197. name: "Earth's Shadow",
  39198. height: math.unit(6200, "miles")
  39199. },
  39200. {
  39201. name: "Universal Demon",
  39202. height: math.unit(28e9, "parsecs")
  39203. },
  39204. {
  39205. name: "Multiverse God",
  39206. height: math.unit(3, "multiverses")
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39212. {
  39213. front: {
  39214. height: math.unit(5 + 5/12, "feet"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/fawn/front.svg",
  39218. extra: 1873/1731,
  39219. bottom: 95/1968
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(5 + 5/12, "feet"),
  39224. name: "Back",
  39225. image: {
  39226. source: "./media/characters/fawn/back.svg",
  39227. extra: 1813/1700,
  39228. bottom: 14/1827
  39229. }
  39230. },
  39231. hoof: {
  39232. height: math.unit(1.45, "feet"),
  39233. name: "Hoof",
  39234. image: {
  39235. source: "./media/characters/fawn/hoof.svg"
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(5 + 5/12, "feet"),
  39243. default: true
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(2 + 5/12, "feet"),
  39252. name: "Front",
  39253. image: {
  39254. source: "./media/characters/orion/front.svg",
  39255. extra: 1366/1304,
  39256. bottom: 43/1409
  39257. }
  39258. },
  39259. paw: {
  39260. height: math.unit(0.52, "feet"),
  39261. name: "Paw",
  39262. image: {
  39263. source: "./media/characters/orion/paw.svg"
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(2 + 5/12, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(5 + 10/12, "feet"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/vera/front.svg",
  39283. extra: 1680/1575,
  39284. bottom: 49/1729
  39285. }
  39286. },
  39287. back: {
  39288. height: math.unit(5 + 10/12, "feet"),
  39289. name: "Back",
  39290. image: {
  39291. source: "./media/characters/vera/back.svg",
  39292. extra: 1700/1588,
  39293. bottom: 18/1718
  39294. }
  39295. },
  39296. arcanine: {
  39297. height: math.unit(6 + 8/12, "feet"),
  39298. name: "Arcanine",
  39299. image: {
  39300. source: "./media/characters/vera/arcanine.svg",
  39301. extra: 1590/1511,
  39302. bottom: 71/1661
  39303. }
  39304. },
  39305. maw: {
  39306. height: math.unit(0.82, "feet"),
  39307. name: "Maw",
  39308. image: {
  39309. source: "./media/characters/vera/maw.svg"
  39310. }
  39311. },
  39312. mawArcanine: {
  39313. height: math.unit(0.97, "feet"),
  39314. name: "Maw (Arcanine)",
  39315. image: {
  39316. source: "./media/characters/vera/maw-arcanine.svg"
  39317. }
  39318. },
  39319. paw: {
  39320. height: math.unit(0.75, "feet"),
  39321. name: "Paw",
  39322. image: {
  39323. source: "./media/characters/vera/paw.svg"
  39324. }
  39325. },
  39326. pawprint: {
  39327. height: math.unit(0.52, "feet"),
  39328. name: "Pawprint",
  39329. image: {
  39330. source: "./media/characters/vera/pawprint.svg"
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(5 + 10/12, "feet"),
  39338. default: true
  39339. },
  39340. {
  39341. name: "Macro",
  39342. height: math.unit(75, "feet")
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(4, "feet"),
  39351. weight: math.unit(40, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/orvan-rabbit/front.svg",
  39355. extra: 1896/1642,
  39356. bottom: 29/1925
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(4, "feet"),
  39364. default: true
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(6, "feet"),
  39373. weight: math.unit(168, "lb"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/lisa/front.svg",
  39377. extra: 2065/1867,
  39378. bottom: 46/2111
  39379. }
  39380. },
  39381. back: {
  39382. height: math.unit(6, "feet"),
  39383. weight: math.unit(168, "lb"),
  39384. name: "Back",
  39385. image: {
  39386. source: "./media/characters/lisa/back.svg",
  39387. extra: 1982/1838,
  39388. bottom: 29/2011
  39389. }
  39390. },
  39391. maw: {
  39392. height: math.unit(0.81, "feet"),
  39393. name: "Maw",
  39394. image: {
  39395. source: "./media/characters/lisa/maw.svg"
  39396. }
  39397. },
  39398. paw: {
  39399. height: math.unit(0.9, "feet"),
  39400. name: "Paw",
  39401. image: {
  39402. source: "./media/characters/lisa/paw.svg"
  39403. }
  39404. },
  39405. caribousune: {
  39406. height: math.unit(7 + 2/12, "feet"),
  39407. weight: math.unit(268, "lb"),
  39408. name: "Caribousune",
  39409. image: {
  39410. source: "./media/characters/lisa/caribousune.svg",
  39411. extra: 1843/1633,
  39412. bottom: 29/1872
  39413. }
  39414. },
  39415. frontCaribousune: {
  39416. height: math.unit(7 + 2/12, "feet"),
  39417. weight: math.unit(268, "lb"),
  39418. name: "Front (Caribousune)",
  39419. image: {
  39420. source: "./media/characters/lisa/front-caribousune.svg",
  39421. extra: 1818/1638,
  39422. bottom: 52/1870
  39423. }
  39424. },
  39425. sideCaribousune: {
  39426. height: math.unit(7 + 2/12, "feet"),
  39427. weight: math.unit(268, "lb"),
  39428. name: "Side (Caribousune)",
  39429. image: {
  39430. source: "./media/characters/lisa/side-caribousune.svg",
  39431. extra: 1851/1635,
  39432. bottom: 16/1867
  39433. }
  39434. },
  39435. backCaribousune: {
  39436. height: math.unit(7 + 2/12, "feet"),
  39437. weight: math.unit(268, "lb"),
  39438. name: "Back (Caribousune)",
  39439. image: {
  39440. source: "./media/characters/lisa/back-caribousune.svg",
  39441. extra: 1801/1604,
  39442. bottom: 44/1845
  39443. }
  39444. },
  39445. caribou: {
  39446. height: math.unit(7 + 2/12, "feet"),
  39447. weight: math.unit(268, "lb"),
  39448. name: "Caribou",
  39449. image: {
  39450. source: "./media/characters/lisa/caribou.svg",
  39451. extra: 1843/1633,
  39452. bottom: 29/1872
  39453. }
  39454. },
  39455. frontCaribou: {
  39456. height: math.unit(7 + 2/12, "feet"),
  39457. weight: math.unit(268, "lb"),
  39458. name: "Front (Caribou)",
  39459. image: {
  39460. source: "./media/characters/lisa/front-caribou.svg",
  39461. extra: 1818/1638,
  39462. bottom: 52/1870
  39463. }
  39464. },
  39465. sideCaribou: {
  39466. height: math.unit(7 + 2/12, "feet"),
  39467. weight: math.unit(268, "lb"),
  39468. name: "Side (Caribou)",
  39469. image: {
  39470. source: "./media/characters/lisa/side-caribou.svg",
  39471. extra: 1851/1635,
  39472. bottom: 16/1867
  39473. }
  39474. },
  39475. backCaribou: {
  39476. height: math.unit(7 + 2/12, "feet"),
  39477. weight: math.unit(268, "lb"),
  39478. name: "Back (Caribou)",
  39479. image: {
  39480. source: "./media/characters/lisa/back-caribou.svg",
  39481. extra: 1801/1604,
  39482. bottom: 44/1845
  39483. }
  39484. },
  39485. mawCaribou: {
  39486. height: math.unit(1.45, "feet"),
  39487. name: "Maw (Caribou)",
  39488. image: {
  39489. source: "./media/characters/lisa/maw-caribou.svg"
  39490. }
  39491. },
  39492. mawCaribousune: {
  39493. height: math.unit(1.45, "feet"),
  39494. name: "Maw (Caribousune)",
  39495. image: {
  39496. source: "./media/characters/lisa/maw-caribousune.svg"
  39497. }
  39498. },
  39499. pawCaribousune: {
  39500. height: math.unit(1.61, "feet"),
  39501. name: "Paw (Caribou)",
  39502. image: {
  39503. source: "./media/characters/lisa/paw-caribousune.svg"
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Normal",
  39510. height: math.unit(6, "feet")
  39511. },
  39512. {
  39513. name: "God Size",
  39514. height: math.unit(72, "feet"),
  39515. default: true
  39516. },
  39517. {
  39518. name: "Towering",
  39519. height: math.unit(288, "feet")
  39520. },
  39521. {
  39522. name: "City Size",
  39523. height: math.unit(48384, "feet")
  39524. },
  39525. {
  39526. name: "Continental",
  39527. height: math.unit(4200, "miles")
  39528. },
  39529. {
  39530. name: "Planet Eater",
  39531. height: math.unit(42, "earths")
  39532. },
  39533. {
  39534. name: "Star Swallower",
  39535. height: math.unit(42, "solarradii")
  39536. },
  39537. {
  39538. name: "System Swallower",
  39539. height: math.unit(84000, "AU")
  39540. },
  39541. {
  39542. name: "Galaxy Gobbler",
  39543. height: math.unit(42, "galaxies")
  39544. },
  39545. {
  39546. name: "Universe Devourer",
  39547. height: math.unit(42, "universes")
  39548. },
  39549. {
  39550. name: "Multiverse Muncher",
  39551. height: math.unit(42, "multiverses")
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(36, "feet"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/shadow-rat/front.svg",
  39563. extra: 1845/1758,
  39564. bottom: 83/1928
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(36, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39578. {
  39579. side: {
  39580. height: math.unit(8, "feet"),
  39581. weight: math.unit(2630, "lb"),
  39582. name: "Side",
  39583. image: {
  39584. source: "./media/characters/torallia/side.svg",
  39585. extra: 2164/2021,
  39586. bottom: 371/2535
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Mortal Interaction",
  39593. height: math.unit(8, "feet")
  39594. },
  39595. {
  39596. name: "Natural",
  39597. height: math.unit(24, "feet"),
  39598. default: true
  39599. },
  39600. {
  39601. name: "Giant",
  39602. height: math.unit(80, "feet")
  39603. },
  39604. {
  39605. name: "Kaiju",
  39606. height: math.unit(240, "feet")
  39607. },
  39608. {
  39609. name: "Macro",
  39610. height: math.unit(800, "feet")
  39611. },
  39612. {
  39613. name: "Macro+",
  39614. height: math.unit(2400, "feet")
  39615. },
  39616. {
  39617. name: "Macro++",
  39618. height: math.unit(8000, "feet")
  39619. },
  39620. {
  39621. name: "City-Crushing",
  39622. height: math.unit(24000, "feet")
  39623. },
  39624. {
  39625. name: "Mountain-Mashing",
  39626. height: math.unit(80000, "feet")
  39627. },
  39628. {
  39629. name: "District Demolisher",
  39630. height: math.unit(240000, "feet")
  39631. },
  39632. {
  39633. name: "Tri-County Terror",
  39634. height: math.unit(800000, "feet")
  39635. },
  39636. {
  39637. name: "State Smasher",
  39638. height: math.unit(2.4e6, "feet")
  39639. },
  39640. {
  39641. name: "Nation Nemesis",
  39642. height: math.unit(8e6, "feet")
  39643. },
  39644. {
  39645. name: "Continent Cracker",
  39646. height: math.unit(2.4e7, "feet")
  39647. },
  39648. {
  39649. name: "Planet-Pillaging",
  39650. height: math.unit(8e7, "feet")
  39651. },
  39652. {
  39653. name: "Earth-Eclipsing",
  39654. height: math.unit(2.4e8, "feet")
  39655. },
  39656. {
  39657. name: "Jovian-Jostling",
  39658. height: math.unit(8e8, "feet")
  39659. },
  39660. {
  39661. name: "Gas Giant Gulper",
  39662. height: math.unit(2.4e9, "feet")
  39663. },
  39664. {
  39665. name: "Astral Annihilator",
  39666. height: math.unit(8e9, "feet")
  39667. },
  39668. {
  39669. name: "Celestial Conqueror",
  39670. height: math.unit(2.4e10, "feet")
  39671. },
  39672. {
  39673. name: "Sol-Swallowing",
  39674. height: math.unit(8e10, "feet")
  39675. },
  39676. {
  39677. name: "Hunter of the Heavens",
  39678. height: math.unit(2.4e13, "feet")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(6 + 8/12, "feet"),
  39687. weight: math.unit(250, "kilograms"),
  39688. volume: math.unit(28, "liters"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/rebecca-pawlson/front.svg",
  39692. extra: 1737/1596,
  39693. bottom: 107/1844
  39694. }
  39695. },
  39696. back: {
  39697. height: math.unit(6 + 8/12, "feet"),
  39698. weight: math.unit(250, "kilograms"),
  39699. volume: math.unit(28, "liters"),
  39700. name: "Back",
  39701. image: {
  39702. source: "./media/characters/rebecca-pawlson/back.svg",
  39703. extra: 1702/1523,
  39704. bottom: 86/1788
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(6 + 8/12, "feet")
  39712. },
  39713. {
  39714. name: "Mini Macro",
  39715. height: math.unit(10, "feet"),
  39716. default: true
  39717. },
  39718. {
  39719. name: "Macro",
  39720. height: math.unit(100, "feet")
  39721. },
  39722. {
  39723. name: "Mega Macro",
  39724. height: math.unit(2500, "feet")
  39725. },
  39726. {
  39727. name: "Giga Macro",
  39728. height: math.unit(50, "miles")
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(7 + 6/12, "feet"),
  39737. weight: math.unit(600, "lb"),
  39738. name: "Front",
  39739. image: {
  39740. source: "./media/characters/moxie-nova/front.svg",
  39741. extra: 1734/1652,
  39742. bottom: 41/1775
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(7 + 6/12, "feet"),
  39750. default: true
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39756. {
  39757. goat: {
  39758. height: math.unit(4, "feet"),
  39759. weight: math.unit(180, "lb"),
  39760. name: "Goat",
  39761. image: {
  39762. source: "./media/characters/tiffany/goat.svg",
  39763. extra: 1845/1595,
  39764. bottom: 106/1951
  39765. }
  39766. },
  39767. front: {
  39768. height: math.unit(5, "feet"),
  39769. weight: math.unit(150, "lb"),
  39770. name: "Foxcoon",
  39771. image: {
  39772. source: "./media/characters/tiffany/foxcoon.svg",
  39773. extra: 1941/1845,
  39774. bottom: 58/1999
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(5, "feet"),
  39782. default: true
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(8, "feet"),
  39791. weight: math.unit(300, "lb"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/raxinath/front.svg",
  39795. extra: 1407/1309,
  39796. bottom: 39/1446
  39797. }
  39798. },
  39799. back: {
  39800. height: math.unit(8, "feet"),
  39801. weight: math.unit(300, "lb"),
  39802. name: "Back",
  39803. image: {
  39804. source: "./media/characters/raxinath/back.svg",
  39805. extra: 1405/1315,
  39806. bottom: 9/1414
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Speck",
  39813. height: math.unit(0.5, "nm")
  39814. },
  39815. {
  39816. name: "Micro",
  39817. height: math.unit(3, "inches")
  39818. },
  39819. {
  39820. name: "Kobold",
  39821. height: math.unit(3, "feet")
  39822. },
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(8, "feet"),
  39826. default: true
  39827. },
  39828. {
  39829. name: "Giant",
  39830. height: math.unit(50, "feet")
  39831. },
  39832. {
  39833. name: "Macro",
  39834. height: math.unit(1000, "feet")
  39835. },
  39836. {
  39837. name: "Megamacro",
  39838. height: math.unit(1, "mile")
  39839. },
  39840. ]
  39841. ))
  39842. characterMakers.push(() => makeCharacter(
  39843. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39844. {
  39845. front: {
  39846. height: math.unit(10, "feet"),
  39847. weight: math.unit(1442, "lb"),
  39848. name: "Front",
  39849. image: {
  39850. source: "./media/characters/mal-dragon/front.svg",
  39851. extra: 1515/1444,
  39852. bottom: 113/1628
  39853. }
  39854. },
  39855. back: {
  39856. height: math.unit(10, "feet"),
  39857. weight: math.unit(1442, "lb"),
  39858. name: "Back",
  39859. image: {
  39860. source: "./media/characters/mal-dragon/back.svg",
  39861. extra: 1527/1434,
  39862. bottom: 25/1552
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Mortal Interaction",
  39869. height: math.unit(10, "feet"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "Large",
  39874. height: math.unit(30, "feet")
  39875. },
  39876. {
  39877. name: "Kaiju",
  39878. height: math.unit(300, "feet")
  39879. },
  39880. {
  39881. name: "Megamacro",
  39882. height: math.unit(10000, "feet")
  39883. },
  39884. {
  39885. name: "Continent Cracker",
  39886. height: math.unit(30000000, "feet")
  39887. },
  39888. {
  39889. name: "Sol-Swallowing",
  39890. height: math.unit(1e11, "feet")
  39891. },
  39892. {
  39893. name: "Light Universal",
  39894. height: math.unit(5, "universes")
  39895. },
  39896. {
  39897. name: "Universe Atoms",
  39898. height: math.unit(1.829e9, "universes")
  39899. },
  39900. {
  39901. name: "Light Multiversal",
  39902. height: math.unit(5, "multiverses")
  39903. },
  39904. {
  39905. name: "Multiverse Atoms",
  39906. height: math.unit(1.829e9, "multiverses")
  39907. },
  39908. {
  39909. name: "Fabric of Time",
  39910. height: math.unit(1e262, "multiverses")
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(9, "feet"),
  39919. weight: math.unit(1050, "lb"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/tabitha/front.svg",
  39923. extra: 2083/1994,
  39924. bottom: 68/2151
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Baseline",
  39931. height: math.unit(9, "feet"),
  39932. default: true
  39933. },
  39934. {
  39935. name: "Giant",
  39936. height: math.unit(90, "feet")
  39937. },
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(900, "feet")
  39941. },
  39942. {
  39943. name: "Megamacro",
  39944. height: math.unit(9000, "feet")
  39945. },
  39946. {
  39947. name: "City-Crushing",
  39948. height: math.unit(27000, "feet")
  39949. },
  39950. {
  39951. name: "Mountain-Mashing",
  39952. height: math.unit(90000, "feet")
  39953. },
  39954. {
  39955. name: "Nation Nemesis",
  39956. height: math.unit(9e6, "feet")
  39957. },
  39958. {
  39959. name: "Continent Cracker",
  39960. height: math.unit(27e6, "feet")
  39961. },
  39962. {
  39963. name: "Earth-Eclipsing",
  39964. height: math.unit(2.7e8, "feet")
  39965. },
  39966. {
  39967. name: "Gas Giant Gulper",
  39968. height: math.unit(2.7e9, "feet")
  39969. },
  39970. {
  39971. name: "Sol-Swallowing",
  39972. height: math.unit(9e10, "feet")
  39973. },
  39974. {
  39975. name: "Galaxy Gulper",
  39976. height: math.unit(9, "galaxies")
  39977. },
  39978. {
  39979. name: "Cosmos Churner",
  39980. height: math.unit(9, "universes")
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(160, "cm"),
  39989. weight: math.unit(55, "kg"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/tow/front.svg",
  39993. extra: 1751/1722,
  39994. bottom: 74/1825
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Norm",
  40001. height: math.unit(160, "cm")
  40002. },
  40003. {
  40004. name: "Casual",
  40005. height: math.unit(3200, "m"),
  40006. default: true
  40007. },
  40008. {
  40009. name: "Show-Off",
  40010. height: math.unit(160, "km")
  40011. },
  40012. ]
  40013. ))
  40014. characterMakers.push(() => makeCharacter(
  40015. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40016. {
  40017. front: {
  40018. height: math.unit(7 + 11/12, "feet"),
  40019. weight: math.unit(342.8, "lb"),
  40020. name: "Front",
  40021. image: {
  40022. source: "./media/characters/vivian-orca-dragon/front.svg",
  40023. extra: 1890/1865,
  40024. bottom: 28/1918
  40025. }
  40026. },
  40027. },
  40028. [
  40029. {
  40030. name: "Micro",
  40031. height: math.unit(5, "inches")
  40032. },
  40033. {
  40034. name: "Normal",
  40035. height: math.unit(7 + 11/12, "feet"),
  40036. default: true
  40037. },
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(395 + 7/12, "feet")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40046. {
  40047. side: {
  40048. height: math.unit(10, "feet"),
  40049. weight: math.unit(1442, "lb"),
  40050. name: "Side",
  40051. image: {
  40052. source: "./media/characters/lotherakon/side.svg",
  40053. extra: 1604/1497,
  40054. bottom: 89/1693
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Mortal Interaction",
  40061. height: math.unit(10, "feet")
  40062. },
  40063. {
  40064. name: "Large",
  40065. height: math.unit(30, "feet"),
  40066. default: true
  40067. },
  40068. {
  40069. name: "Giant",
  40070. height: math.unit(100, "feet")
  40071. },
  40072. {
  40073. name: "Kaiju",
  40074. height: math.unit(300, "feet")
  40075. },
  40076. {
  40077. name: "Macro",
  40078. height: math.unit(1000, "feet")
  40079. },
  40080. {
  40081. name: "Macro+",
  40082. height: math.unit(3000, "feet")
  40083. },
  40084. {
  40085. name: "Megamacro",
  40086. height: math.unit(10000, "feet")
  40087. },
  40088. {
  40089. name: "City-Crushing",
  40090. height: math.unit(30000, "feet")
  40091. },
  40092. {
  40093. name: "Continent Cracker",
  40094. height: math.unit(30e6, "feet")
  40095. },
  40096. {
  40097. name: "Earth Eclipsing",
  40098. height: math.unit(3e8, "feet")
  40099. },
  40100. {
  40101. name: "Gas Giant Gulper",
  40102. height: math.unit(3e9, "feet")
  40103. },
  40104. {
  40105. name: "Sol-Swallowing",
  40106. height: math.unit(1e11, "feet")
  40107. },
  40108. {
  40109. name: "System Swallower",
  40110. height: math.unit(3e14, "feet")
  40111. },
  40112. {
  40113. name: "Galaxy Gulper",
  40114. height: math.unit(10, "galaxies")
  40115. },
  40116. {
  40117. name: "Light Universal",
  40118. height: math.unit(5, "universes")
  40119. },
  40120. {
  40121. name: "Universe Palm",
  40122. height: math.unit(20, "universes")
  40123. },
  40124. {
  40125. name: "Light Multiversal",
  40126. height: math.unit(5, "multiverses")
  40127. },
  40128. {
  40129. name: "Multiverse Palm",
  40130. height: math.unit(20, "multiverses")
  40131. },
  40132. {
  40133. name: "Inferno Incarnate",
  40134. height: math.unit(1e7, "multiverses")
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40140. {
  40141. front: {
  40142. height: math.unit(8, "feet"),
  40143. weight: math.unit(1200, "lb"),
  40144. name: "Front",
  40145. image: {
  40146. source: "./media/characters/malithee/front.svg",
  40147. extra: 1675/1640,
  40148. bottom: 162/1837
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Mortal Interaction",
  40155. height: math.unit(8, "feet"),
  40156. default: true
  40157. },
  40158. {
  40159. name: "Large",
  40160. height: math.unit(24, "feet")
  40161. },
  40162. {
  40163. name: "Kaiju",
  40164. height: math.unit(240, "feet")
  40165. },
  40166. {
  40167. name: "Megamacro",
  40168. height: math.unit(8000, "feet")
  40169. },
  40170. {
  40171. name: "Continent Cracker",
  40172. height: math.unit(24e6, "feet")
  40173. },
  40174. {
  40175. name: "Earth-Eclipsing",
  40176. height: math.unit(2.4e8, "feet")
  40177. },
  40178. {
  40179. name: "Sol-Swallowing",
  40180. height: math.unit(8e10, "feet")
  40181. },
  40182. {
  40183. name: "Galaxy Gulper",
  40184. height: math.unit(8, "galaxies")
  40185. },
  40186. {
  40187. name: "Light Universal",
  40188. height: math.unit(4, "universes")
  40189. },
  40190. {
  40191. name: "Universe Atoms",
  40192. height: math.unit(1.829e9, "universes")
  40193. },
  40194. {
  40195. name: "Light Multiversal",
  40196. height: math.unit(4, "multiverses")
  40197. },
  40198. {
  40199. name: "Multiverse Atoms",
  40200. height: math.unit(1.829e9, "multiverses")
  40201. },
  40202. {
  40203. name: "Nigh-Omnipresence",
  40204. height: math.unit(8e261, "multiverses")
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(10, "feet"),
  40213. weight: math.unit(1500, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/miles-thestia/front.svg",
  40217. extra: 1812/1727,
  40218. bottom: 86/1898
  40219. }
  40220. },
  40221. back: {
  40222. height: math.unit(10, "feet"),
  40223. weight: math.unit(1500, "lb"),
  40224. name: "Back",
  40225. image: {
  40226. source: "./media/characters/miles-thestia/back.svg",
  40227. extra: 1799/1690,
  40228. bottom: 47/1846
  40229. }
  40230. },
  40231. frontNsfw: {
  40232. height: math.unit(10, "feet"),
  40233. weight: math.unit(1500, "lb"),
  40234. name: "Front (NSFW)",
  40235. image: {
  40236. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40237. extra: 1812/1727,
  40238. bottom: 86/1898
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Mini-Macro",
  40245. height: math.unit(10, "feet"),
  40246. default: true
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(25, "feet"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/titan-s-wulf/front.svg",
  40258. extra: 1560/1484,
  40259. bottom: 76/1636
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Smallest",
  40266. height: math.unit(25, "feet"),
  40267. default: true
  40268. },
  40269. {
  40270. name: "Normal",
  40271. height: math.unit(200, "feet")
  40272. },
  40273. {
  40274. name: "Macro",
  40275. height: math.unit(200000, "feet")
  40276. },
  40277. {
  40278. name: "Multiversal Original",
  40279. height: math.unit(10000, "multiverses")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(8, "feet"),
  40288. weight: math.unit(553, "lb"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/tawendeh/front.svg",
  40292. extra: 2365/2268,
  40293. bottom: 83/2448
  40294. }
  40295. },
  40296. frontClothed: {
  40297. height: math.unit(8, "feet"),
  40298. weight: math.unit(553, "lb"),
  40299. name: "Front (Clothed)",
  40300. image: {
  40301. source: "./media/characters/tawendeh/front-clothed.svg",
  40302. extra: 2365/2268,
  40303. bottom: 83/2448
  40304. }
  40305. },
  40306. back: {
  40307. height: math.unit(8, "feet"),
  40308. weight: math.unit(553, "lb"),
  40309. name: "Back",
  40310. image: {
  40311. source: "./media/characters/tawendeh/back.svg",
  40312. extra: 2397/2294,
  40313. bottom: 42/2439
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Mortal Interaction",
  40320. height: math.unit(8, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Giant",
  40325. height: math.unit(80, "feet")
  40326. },
  40327. {
  40328. name: "Macro",
  40329. height: math.unit(800, "feet")
  40330. },
  40331. {
  40332. name: "Megamacro",
  40333. height: math.unit(8000, "feet")
  40334. },
  40335. {
  40336. name: "City-Crushing",
  40337. height: math.unit(24000, "feet")
  40338. },
  40339. {
  40340. name: "Mountain-Mashing",
  40341. height: math.unit(80000, "feet")
  40342. },
  40343. {
  40344. name: "Nation Nemesis",
  40345. height: math.unit(8e6, "feet")
  40346. },
  40347. {
  40348. name: "Continent Cracker",
  40349. height: math.unit(24e6, "feet")
  40350. },
  40351. {
  40352. name: "Earth-Eclipsing",
  40353. height: math.unit(2.4e8, "feet")
  40354. },
  40355. {
  40356. name: "Gas Giant Gulper",
  40357. height: math.unit(2.4e9, "feet")
  40358. },
  40359. {
  40360. name: "Sol-Swallowing",
  40361. height: math.unit(8e10, "feet")
  40362. },
  40363. {
  40364. name: "Galaxy Gulper",
  40365. height: math.unit(8, "galaxies")
  40366. },
  40367. {
  40368. name: "Cosmos Churner",
  40369. height: math.unit(8, "universes")
  40370. },
  40371. {
  40372. name: "Omnipotent Otter",
  40373. height: math.unit(80, "universes")
  40374. },
  40375. ]
  40376. ))
  40377. characterMakers.push(() => makeCharacter(
  40378. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40379. {
  40380. front: {
  40381. height: math.unit(2.6, "meters"),
  40382. weight: math.unit(900, "kg"),
  40383. name: "Front",
  40384. image: {
  40385. source: "./media/characters/neesha/front.svg",
  40386. extra: 1803/1653,
  40387. bottom: 128/1931
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Normal",
  40394. height: math.unit(2.6, "meters"),
  40395. default: true
  40396. },
  40397. {
  40398. name: "Macro",
  40399. height: math.unit(50, "meters")
  40400. },
  40401. ]
  40402. ))
  40403. characterMakers.push(() => makeCharacter(
  40404. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40405. {
  40406. front: {
  40407. height: math.unit(5, "feet"),
  40408. weight: math.unit(185, "lb"),
  40409. name: "Front",
  40410. image: {
  40411. source: "./media/characters/kyera/front.svg",
  40412. extra: 1875/1790,
  40413. bottom: 96/1971
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(5, "feet"),
  40421. default: true
  40422. },
  40423. ]
  40424. ))
  40425. characterMakers.push(() => makeCharacter(
  40426. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40427. {
  40428. front: {
  40429. height: math.unit(7 + 6/12, "feet"),
  40430. weight: math.unit(540, "lb"),
  40431. name: "Front",
  40432. image: {
  40433. source: "./media/characters/yuko/front.svg",
  40434. extra: 1282/1222,
  40435. bottom: 101/1383
  40436. }
  40437. },
  40438. frontClothed: {
  40439. height: math.unit(7 + 6/12, "feet"),
  40440. weight: math.unit(540, "lb"),
  40441. name: "Front (Clothed)",
  40442. image: {
  40443. source: "./media/characters/yuko/front-clothed.svg",
  40444. extra: 1282/1222,
  40445. bottom: 101/1383
  40446. }
  40447. },
  40448. },
  40449. [
  40450. {
  40451. name: "Normal",
  40452. height: math.unit(7 + 6/12, "feet"),
  40453. default: true
  40454. },
  40455. {
  40456. name: "Macro",
  40457. height: math.unit(26 + 9/12, "feet")
  40458. },
  40459. {
  40460. name: "Megamacro",
  40461. height: math.unit(300, "feet")
  40462. },
  40463. {
  40464. name: "Gigamacro",
  40465. height: math.unit(5000, "feet")
  40466. },
  40467. {
  40468. name: "Planetary",
  40469. height: math.unit(10000, "miles")
  40470. },
  40471. ]
  40472. ))
  40473. characterMakers.push(() => makeCharacter(
  40474. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40475. {
  40476. front: {
  40477. height: math.unit(8 + 2/12, "feet"),
  40478. weight: math.unit(600, "lb"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/deam-nitrel/front.svg",
  40482. extra: 1308/1234,
  40483. bottom: 125/1433
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(8 + 2/12, "feet"),
  40491. default: true
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40497. {
  40498. front: {
  40499. height: math.unit(6.1, "feet"),
  40500. weight: math.unit(180, "lb"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/skyress/front.svg",
  40504. extra: 1045/915,
  40505. bottom: 28/1073
  40506. }
  40507. },
  40508. maw: {
  40509. height: math.unit(1, "feet"),
  40510. name: "Maw",
  40511. image: {
  40512. source: "./media/characters/skyress/maw.svg"
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(6.1, "feet"),
  40520. default: true
  40521. },
  40522. {
  40523. name: "Macro",
  40524. height: math.unit(200, "feet")
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(4 + 2/12, "feet"),
  40533. weight: math.unit(40, "kg"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/amethyst-jones/front.svg",
  40537. extra: 1220/1150,
  40538. bottom: 101/1321
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Normal",
  40545. height: math.unit(4 + 2/12, "feet"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(1.7, "m"),
  40555. weight: math.unit(135, "lb"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/jade/front.svg",
  40559. extra: 1818/1767,
  40560. bottom: 32/1850
  40561. }
  40562. },
  40563. back: {
  40564. height: math.unit(1.7, "m"),
  40565. weight: math.unit(135, "lb"),
  40566. name: "Back",
  40567. image: {
  40568. source: "./media/characters/jade/back.svg",
  40569. extra: 1869/1809,
  40570. bottom: 35/1904
  40571. }
  40572. },
  40573. hand: {
  40574. height: math.unit(0.24, "m"),
  40575. name: "Hand",
  40576. image: {
  40577. source: "./media/characters/jade/hand.svg"
  40578. }
  40579. },
  40580. foot: {
  40581. height: math.unit(0.263, "m"),
  40582. name: "Foot",
  40583. image: {
  40584. source: "./media/characters/jade/foot.svg"
  40585. }
  40586. },
  40587. dick: {
  40588. height: math.unit(0.47, "m"),
  40589. name: "Dick",
  40590. image: {
  40591. source: "./media/characters/jade/dick.svg"
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Micro",
  40598. height: math.unit(22, "cm")
  40599. },
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(1.7, "m"),
  40603. default: true
  40604. },
  40605. {
  40606. name: "Macro",
  40607. height: math.unit(152, "m")
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(100, "miles"),
  40616. weight: math.unit(20000, "tons"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/cookie/front.svg",
  40620. extra: 1125/1070,
  40621. bottom: 30/1155
  40622. }
  40623. },
  40624. },
  40625. [
  40626. {
  40627. name: "Big",
  40628. height: math.unit(50, "feet")
  40629. },
  40630. {
  40631. name: "Macro",
  40632. height: math.unit(100, "miles"),
  40633. default: true
  40634. },
  40635. {
  40636. name: "Megamacro",
  40637. height: math.unit(90000, "miles")
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(6, "feet"),
  40646. weight: math.unit(145, "lb"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/farzian/front.svg",
  40650. extra: 1902/1693,
  40651. bottom: 108/2010
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(500, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(3 + 6/12, "feet"),
  40668. weight: math.unit(50, "lb"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/kimberly-tilson/front.svg",
  40672. extra: 1400/1322,
  40673. bottom: 36/1436
  40674. }
  40675. },
  40676. back: {
  40677. height: math.unit(3 + 6/12, "feet"),
  40678. weight: math.unit(50, "lb"),
  40679. name: "Back",
  40680. image: {
  40681. source: "./media/characters/kimberly-tilson/back.svg",
  40682. extra: 1370/1307,
  40683. bottom: 20/1390
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(3 + 6/12, "feet"),
  40691. default: true
  40692. },
  40693. ]
  40694. ))
  40695. characterMakers.push(() => makeCharacter(
  40696. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40697. {
  40698. front: {
  40699. height: math.unit(1148, "feet"),
  40700. weight: math.unit(34057, "lb"),
  40701. name: "Front",
  40702. image: {
  40703. source: "./media/characters/harthos/front.svg",
  40704. extra: 1391/1339,
  40705. bottom: 13/1404
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Macro",
  40712. height: math.unit(1148, "feet"),
  40713. default: true
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40719. {
  40720. front: {
  40721. height: math.unit(15, "feet"),
  40722. name: "Front",
  40723. image: {
  40724. source: "./media/characters/hypatia/front.svg",
  40725. extra: 1653/1591,
  40726. bottom: 79/1732
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Normal",
  40733. height: math.unit(15, "feet")
  40734. },
  40735. {
  40736. name: "Small",
  40737. height: math.unit(300, "feet")
  40738. },
  40739. {
  40740. name: "Macro",
  40741. height: math.unit(2500, "feet"),
  40742. default: true
  40743. },
  40744. {
  40745. name: "Mega Macro",
  40746. height: math.unit(1500, "miles")
  40747. },
  40748. {
  40749. name: "Giga Macro",
  40750. height: math.unit(1.5e6, "miles")
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(6, "feet"),
  40759. weight: math.unit(200, "lb"),
  40760. name: "Front",
  40761. image: {
  40762. source: "./media/characters/wulver/front.svg",
  40763. extra: 1724/1632,
  40764. bottom: 130/1854
  40765. }
  40766. },
  40767. frontNsfw: {
  40768. height: math.unit(6, "feet"),
  40769. weight: math.unit(200, "lb"),
  40770. name: "Front (NSFW)",
  40771. image: {
  40772. source: "./media/characters/wulver/front-nsfw.svg",
  40773. extra: 1724/1632,
  40774. bottom: 130/1854
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Human-Sized",
  40781. height: math.unit(6, "feet")
  40782. },
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(4, "meters"),
  40786. default: true
  40787. },
  40788. {
  40789. name: "Large",
  40790. height: math.unit(6, "m")
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(7, "feet"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/maru/front.svg",
  40802. extra: 1595/1570,
  40803. bottom: 0/1595
  40804. }
  40805. },
  40806. },
  40807. [
  40808. {
  40809. name: "Normal",
  40810. height: math.unit(7, "feet"),
  40811. default: true
  40812. },
  40813. {
  40814. name: "Macro",
  40815. height: math.unit(700, "feet")
  40816. },
  40817. {
  40818. name: "Mega Macro",
  40819. height: math.unit(25, "miles")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(6, "feet"),
  40828. weight: math.unit(170, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/xenon/front.svg",
  40832. extra: 1376/1305,
  40833. bottom: 56/1432
  40834. }
  40835. },
  40836. back: {
  40837. height: math.unit(6, "feet"),
  40838. weight: math.unit(170, "lb"),
  40839. name: "Back",
  40840. image: {
  40841. source: "./media/characters/xenon/back.svg",
  40842. extra: 1328/1259,
  40843. bottom: 95/1423
  40844. }
  40845. },
  40846. maw: {
  40847. height: math.unit(0.52, "feet"),
  40848. name: "Maw",
  40849. image: {
  40850. source: "./media/characters/xenon/maw.svg"
  40851. }
  40852. },
  40853. hand: {
  40854. height: math.unit(0.82, "feet"),
  40855. name: "Hand",
  40856. image: {
  40857. source: "./media/characters/xenon/hand.svg"
  40858. }
  40859. },
  40860. foot: {
  40861. height: math.unit(1.13, "feet"),
  40862. name: "Foot",
  40863. image: {
  40864. source: "./media/characters/xenon/foot.svg"
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Micro",
  40871. height: math.unit(0.8, "inches")
  40872. },
  40873. {
  40874. name: "Normal",
  40875. height: math.unit(6, "feet")
  40876. },
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(50, "feet"),
  40880. default: true
  40881. },
  40882. {
  40883. name: "Macro+",
  40884. height: math.unit(250, "feet")
  40885. },
  40886. {
  40887. name: "Megamacro",
  40888. height: math.unit(1500, "feet")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(7 + 5/12, "feet"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/zane/front.svg",
  40900. extra: 1260/1203,
  40901. bottom: 94/1354
  40902. }
  40903. },
  40904. back: {
  40905. height: math.unit(5.05, "feet"),
  40906. name: "Back",
  40907. image: {
  40908. source: "./media/characters/zane/back.svg",
  40909. extra: 893/829,
  40910. bottom: 30/923
  40911. }
  40912. },
  40913. werewolf: {
  40914. height: math.unit(11, "feet"),
  40915. name: "Werewolf",
  40916. image: {
  40917. source: "./media/characters/zane/werewolf.svg",
  40918. extra: 1383/1323,
  40919. bottom: 89/1472
  40920. }
  40921. },
  40922. foot: {
  40923. height: math.unit(1.46, "feet"),
  40924. name: "Foot",
  40925. image: {
  40926. source: "./media/characters/zane/foot.svg"
  40927. }
  40928. },
  40929. footFront: {
  40930. height: math.unit(0.784, "feet"),
  40931. name: "Foot (Front)",
  40932. image: {
  40933. source: "./media/characters/zane/foot-front.svg"
  40934. }
  40935. },
  40936. dick: {
  40937. height: math.unit(1.95, "feet"),
  40938. name: "Dick",
  40939. image: {
  40940. source: "./media/characters/zane/dick.svg"
  40941. }
  40942. },
  40943. dickWerewolf: {
  40944. height: math.unit(3.77, "feet"),
  40945. name: "Dick (Werewolf)",
  40946. image: {
  40947. source: "./media/characters/zane/dick.svg"
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(7 + 5/12, "feet"),
  40955. default: true
  40956. },
  40957. ]
  40958. ))
  40959. characterMakers.push(() => makeCharacter(
  40960. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40961. {
  40962. front: {
  40963. height: math.unit(6 + 2/12, "feet"),
  40964. weight: math.unit(284, "lb"),
  40965. name: "Front",
  40966. image: {
  40967. source: "./media/characters/benni-desparque/front.svg",
  40968. extra: 1353/1126,
  40969. bottom: 69/1422
  40970. }
  40971. },
  40972. },
  40973. [
  40974. {
  40975. name: "Civilian",
  40976. height: math.unit(6 + 2/12, "feet")
  40977. },
  40978. {
  40979. name: "Normal",
  40980. height: math.unit(98, "feet"),
  40981. default: true
  40982. },
  40983. {
  40984. name: "Kaiju Fighter",
  40985. height: math.unit(268, "feet")
  40986. },
  40987. ]
  40988. ))
  40989. characterMakers.push(() => makeCharacter(
  40990. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40991. {
  40992. front: {
  40993. height: math.unit(5, "feet"),
  40994. weight: math.unit(105, "lb"),
  40995. name: "Front",
  40996. image: {
  40997. source: "./media/characters/maxine/front.svg",
  40998. extra: 1386/1250,
  40999. bottom: 71/1457
  41000. }
  41001. },
  41002. },
  41003. [
  41004. {
  41005. name: "Normal",
  41006. height: math.unit(5, "feet"),
  41007. default: true
  41008. },
  41009. ]
  41010. ))
  41011. characterMakers.push(() => makeCharacter(
  41012. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41013. {
  41014. front: {
  41015. height: math.unit(11 + 7/12, "feet"),
  41016. weight: math.unit(9576, "lb"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/scaly/front.svg",
  41020. extra: 888/867,
  41021. bottom: 36/924
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(11 + 7/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41035. {
  41036. front: {
  41037. height: math.unit(6 + 3/12, "feet"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/saelria/front.svg",
  41041. extra: 1243/1138,
  41042. bottom: 46/1289
  41043. }
  41044. },
  41045. },
  41046. [
  41047. {
  41048. name: "Micro",
  41049. height: math.unit(6, "inches"),
  41050. },
  41051. {
  41052. name: "Normal",
  41053. height: math.unit(6 + 3/12, "feet"),
  41054. default: true
  41055. },
  41056. {
  41057. name: "Macro",
  41058. height: math.unit(25, "feet")
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(80, "meters"),
  41067. weight: math.unit(7000, "tonnes"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/tef/front.svg",
  41071. extra: 2036/1991,
  41072. bottom: 54/2090
  41073. }
  41074. },
  41075. back: {
  41076. height: math.unit(80, "meters"),
  41077. weight: math.unit(7000, "tonnes"),
  41078. name: "Back",
  41079. image: {
  41080. source: "./media/characters/tef/back.svg",
  41081. extra: 2036/1991,
  41082. bottom: 54/2090
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Macro",
  41089. height: math.unit(80, "meters"),
  41090. default: true
  41091. },
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41096. {
  41097. front: {
  41098. height: math.unit(13, "feet"),
  41099. weight: math.unit(6, "tons"),
  41100. name: "Front",
  41101. image: {
  41102. source: "./media/characters/rover/front.svg",
  41103. extra: 1233/1156,
  41104. bottom: 50/1283
  41105. }
  41106. },
  41107. back: {
  41108. height: math.unit(13, "feet"),
  41109. weight: math.unit(6, "tons"),
  41110. name: "Back",
  41111. image: {
  41112. source: "./media/characters/rover/back.svg",
  41113. extra: 1327/1258,
  41114. bottom: 39/1366
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Normal",
  41121. height: math.unit(13, "feet"),
  41122. default: true
  41123. },
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(1300, "feet")
  41127. },
  41128. {
  41129. name: "Megamacro",
  41130. height: math.unit(1300, "miles")
  41131. },
  41132. {
  41133. name: "Gigamacro",
  41134. height: math.unit(1300000, "miles")
  41135. },
  41136. ]
  41137. ))
  41138. characterMakers.push(() => makeCharacter(
  41139. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41140. {
  41141. front: {
  41142. height: math.unit(6, "feet"),
  41143. weight: math.unit(150, "lb"),
  41144. name: "Front",
  41145. image: {
  41146. source: "./media/characters/ariz/front.svg",
  41147. extra: 1401/1346,
  41148. bottom: 5/1406
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(10, "feet"),
  41156. default: true
  41157. },
  41158. ]
  41159. ))
  41160. characterMakers.push(() => makeCharacter(
  41161. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41162. {
  41163. front: {
  41164. height: math.unit(6, "feet"),
  41165. weight: math.unit(140, "lb"),
  41166. name: "Front",
  41167. image: {
  41168. source: "./media/characters/sigrun/front.svg",
  41169. extra: 1418/1359,
  41170. bottom: 27/1445
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Macro",
  41177. height: math.unit(35, "feet"),
  41178. default: true
  41179. },
  41180. ]
  41181. ))
  41182. characterMakers.push(() => makeCharacter(
  41183. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41184. {
  41185. front: {
  41186. height: math.unit(6, "feet"),
  41187. weight: math.unit(150, "lb"),
  41188. name: "Front",
  41189. image: {
  41190. source: "./media/characters/numin/front.svg",
  41191. extra: 1433/1388,
  41192. bottom: 12/1445
  41193. }
  41194. },
  41195. },
  41196. [
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(21.5, "km"),
  41200. default: true
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(6, "feet"),
  41209. weight: math.unit(463, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/melwa/front.svg",
  41213. extra: 1307/1248,
  41214. bottom: 93/1400
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(50, "meters"),
  41222. default: true
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(325, "feet"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/zorkaiju/front.svg",
  41234. extra: 1955/1814,
  41235. bottom: 40/1995
  41236. }
  41237. },
  41238. frontExtended: {
  41239. height: math.unit(325, "feet"),
  41240. name: "Front (Extended)",
  41241. image: {
  41242. source: "./media/characters/zorkaiju/front-extended.svg",
  41243. extra: 1955/1814,
  41244. bottom: 40/1995
  41245. }
  41246. },
  41247. side: {
  41248. height: math.unit(325, "feet"),
  41249. name: "Side",
  41250. image: {
  41251. source: "./media/characters/zorkaiju/side.svg",
  41252. extra: 1495/1396,
  41253. bottom: 17/1512
  41254. }
  41255. },
  41256. sideExtended: {
  41257. height: math.unit(325, "feet"),
  41258. name: "Side (Extended)",
  41259. image: {
  41260. source: "./media/characters/zorkaiju/side-extended.svg",
  41261. extra: 1495/1396,
  41262. bottom: 17/1512
  41263. }
  41264. },
  41265. back: {
  41266. height: math.unit(325, "feet"),
  41267. name: "Back",
  41268. image: {
  41269. source: "./media/characters/zorkaiju/back.svg",
  41270. extra: 1959/1821,
  41271. bottom: 31/1990
  41272. }
  41273. },
  41274. backExtended: {
  41275. height: math.unit(325, "feet"),
  41276. name: "Back (Extended)",
  41277. image: {
  41278. source: "./media/characters/zorkaiju/back-extended.svg",
  41279. extra: 1959/1821,
  41280. bottom: 31/1990
  41281. }
  41282. },
  41283. hand: {
  41284. height: math.unit(58.4, "feet"),
  41285. name: "Hand",
  41286. image: {
  41287. source: "./media/characters/zorkaiju/hand.svg"
  41288. }
  41289. },
  41290. handExtended: {
  41291. height: math.unit(61.4, "feet"),
  41292. name: "Hand (Extended)",
  41293. image: {
  41294. source: "./media/characters/zorkaiju/hand-extended.svg"
  41295. }
  41296. },
  41297. foot: {
  41298. height: math.unit(95, "feet"),
  41299. name: "Foot",
  41300. image: {
  41301. source: "./media/characters/zorkaiju/foot.svg"
  41302. }
  41303. },
  41304. leftArm: {
  41305. height: math.unit(59, "feet"),
  41306. name: "Left Arm",
  41307. image: {
  41308. source: "./media/characters/zorkaiju/left-arm.svg"
  41309. }
  41310. },
  41311. rightArm: {
  41312. height: math.unit(59, "feet"),
  41313. name: "Right Arm",
  41314. image: {
  41315. source: "./media/characters/zorkaiju/right-arm.svg"
  41316. }
  41317. },
  41318. tail: {
  41319. height: math.unit(104, "feet"),
  41320. name: "Tail",
  41321. image: {
  41322. source: "./media/characters/zorkaiju/tail.svg"
  41323. }
  41324. },
  41325. tailExtended: {
  41326. height: math.unit(104, "feet"),
  41327. name: "Tail (Extended)",
  41328. image: {
  41329. source: "./media/characters/zorkaiju/tail-extended.svg"
  41330. }
  41331. },
  41332. tailBottom: {
  41333. height: math.unit(104, "feet"),
  41334. name: "Tail Bottom",
  41335. image: {
  41336. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41337. }
  41338. },
  41339. crystal: {
  41340. height: math.unit(27.54, "feet"),
  41341. name: "Crystal",
  41342. image: {
  41343. source: "./media/characters/zorkaiju/crystal.svg"
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Kaiju",
  41350. height: math.unit(325, "feet"),
  41351. default: true
  41352. },
  41353. ]
  41354. ))
  41355. characterMakers.push(() => makeCharacter(
  41356. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41357. {
  41358. front: {
  41359. height: math.unit(6 + 1/12, "feet"),
  41360. weight: math.unit(115, "lb"),
  41361. name: "Front",
  41362. image: {
  41363. source: "./media/characters/bailey-belfry/front.svg",
  41364. extra: 1240/1121,
  41365. bottom: 101/1341
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(6 + 1/12, "feet"),
  41373. default: true
  41374. },
  41375. ]
  41376. ))
  41377. characterMakers.push(() => makeCharacter(
  41378. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41379. {
  41380. side: {
  41381. height: math.unit(4, "meters"),
  41382. weight: math.unit(250, "kg"),
  41383. name: "Side",
  41384. image: {
  41385. source: "./media/characters/blacky/side.svg",
  41386. extra: 1027/919,
  41387. bottom: 43/1070
  41388. }
  41389. },
  41390. maw: {
  41391. height: math.unit(1, "meters"),
  41392. name: "Maw",
  41393. image: {
  41394. source: "./media/characters/blacky/maw.svg"
  41395. }
  41396. },
  41397. paw: {
  41398. height: math.unit(1, "meters"),
  41399. name: "Paw",
  41400. image: {
  41401. source: "./media/characters/blacky/paw.svg"
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Normal",
  41408. height: math.unit(4, "meters"),
  41409. default: true
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(170, "cm"),
  41418. weight: math.unit(66, "kg"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/thux-ei/front.svg",
  41422. extra: 1109/1011,
  41423. bottom: 8/1117
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(170, "cm"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(5, "feet"),
  41440. weight: math.unit(120, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/roxanne-voltaire/front.svg",
  41444. extra: 1901/1779,
  41445. bottom: 53/1954
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(5, "feet"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Giant",
  41457. height: math.unit(50, "feet")
  41458. },
  41459. {
  41460. name: "Titan",
  41461. height: math.unit(500, "feet")
  41462. },
  41463. {
  41464. name: "Macro",
  41465. height: math.unit(5000, "feet")
  41466. },
  41467. {
  41468. name: "Megamacro",
  41469. height: math.unit(50000, "feet")
  41470. },
  41471. {
  41472. name: "Gigamacro",
  41473. height: math.unit(500000, "feet")
  41474. },
  41475. {
  41476. name: "Teramacro",
  41477. height: math.unit(5e6, "feet")
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(6 + 2/12, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/squeaks/front.svg",
  41489. extra: 1823/1768,
  41490. bottom: 138/1961
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Micro",
  41497. height: math.unit(0.5, "inches")
  41498. },
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(6 + 2/12, "feet"),
  41502. default: true
  41503. },
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(600, "feet")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(1.72, "meters"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/archinger/front.svg",
  41518. extra: 1861/1675,
  41519. bottom: 125/1986
  41520. }
  41521. },
  41522. back: {
  41523. height: math.unit(1.72, "meters"),
  41524. name: "Back",
  41525. image: {
  41526. source: "./media/characters/archinger/back.svg",
  41527. extra: 1844/1701,
  41528. bottom: 104/1948
  41529. }
  41530. },
  41531. cock: {
  41532. height: math.unit(0.59, "feet"),
  41533. name: "Cock",
  41534. image: {
  41535. source: "./media/characters/archinger/cock.svg"
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Normal",
  41542. height: math.unit(1.72, "meters"),
  41543. default: true
  41544. },
  41545. {
  41546. name: "Macro",
  41547. height: math.unit(84, "meters")
  41548. },
  41549. {
  41550. name: "Macro+",
  41551. height: math.unit(112, "meters")
  41552. },
  41553. {
  41554. name: "Macro++",
  41555. height: math.unit(960, "meters")
  41556. },
  41557. {
  41558. name: "Macro+++",
  41559. height: math.unit(4, "km")
  41560. },
  41561. {
  41562. name: "Macro++++",
  41563. height: math.unit(48, "km")
  41564. },
  41565. {
  41566. name: "Macro+++++",
  41567. height: math.unit(4500, "km")
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(5 + 5/12, "feet"),
  41576. name: "Front",
  41577. image: {
  41578. source: "./media/characters/alsnapz/front.svg",
  41579. extra: 1157/1065,
  41580. bottom: 42/1199
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(5 + 5/12, "feet"),
  41588. default: true
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41594. {
  41595. side: {
  41596. height: math.unit(3.2, "earths"),
  41597. name: "Side",
  41598. image: {
  41599. source: "./media/characters/mag/side.svg",
  41600. extra: 1331/1008,
  41601. bottom: 52/1383
  41602. }
  41603. },
  41604. wing: {
  41605. height: math.unit(1.94, "earths"),
  41606. name: "Wing",
  41607. image: {
  41608. source: "./media/characters/mag/wing.svg"
  41609. }
  41610. },
  41611. dick: {
  41612. height: math.unit(1.8, "earths"),
  41613. name: "Dick",
  41614. image: {
  41615. source: "./media/characters/mag/dick.svg"
  41616. }
  41617. },
  41618. ass: {
  41619. height: math.unit(1.33, "earths"),
  41620. name: "Ass",
  41621. image: {
  41622. source: "./media/characters/mag/ass.svg"
  41623. }
  41624. },
  41625. head: {
  41626. height: math.unit(1.1, "earths"),
  41627. name: "Head",
  41628. image: {
  41629. source: "./media/characters/mag/head.svg"
  41630. }
  41631. },
  41632. maw: {
  41633. height: math.unit(1.62, "earths"),
  41634. name: "Maw",
  41635. image: {
  41636. source: "./media/characters/mag/maw.svg"
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Small",
  41643. height: math.unit(162, "feet")
  41644. },
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(3.2, "earths"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(512, "feet"),
  41657. weight: math.unit(63509, "tonnes"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/vorrel-harroc/front.svg",
  41661. extra: 1075/1063,
  41662. bottom: 62/1137
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(10, "feet")
  41670. },
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(512, "feet"),
  41674. default: true
  41675. },
  41676. {
  41677. name: "Megamacro",
  41678. height: math.unit(256, "miles")
  41679. },
  41680. {
  41681. name: "Gigamacro",
  41682. height: math.unit(4096, "miles")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41688. {
  41689. side: {
  41690. height: math.unit(50, "feet"),
  41691. name: "Side",
  41692. image: {
  41693. source: "./media/characters/froimar/side.svg",
  41694. extra: 855/638,
  41695. bottom: 99/954
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Macro",
  41702. height: math.unit(50, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(210, "miles"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/timothy/front.svg",
  41715. extra: 1007/943,
  41716. bottom: 62/1069
  41717. }
  41718. },
  41719. frontSkirt: {
  41720. height: math.unit(210, "miles"),
  41721. name: "Front (Skirt)",
  41722. image: {
  41723. source: "./media/characters/timothy/front-skirt.svg",
  41724. extra: 1007/943,
  41725. bottom: 62/1069
  41726. }
  41727. },
  41728. frontCoat: {
  41729. height: math.unit(210, "miles"),
  41730. name: "Front (Coat)",
  41731. image: {
  41732. source: "./media/characters/timothy/front-coat.svg",
  41733. extra: 1007/943,
  41734. bottom: 62/1069
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Macro",
  41741. height: math.unit(210, "miles"),
  41742. default: true
  41743. },
  41744. {
  41745. name: "Megamacro",
  41746. height: math.unit(210000, "miles")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(188, "feet"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/pyotr/front.svg",
  41758. extra: 1912/1826,
  41759. bottom: 18/1930
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Macro",
  41766. height: math.unit(188, "feet"),
  41767. default: true
  41768. },
  41769. {
  41770. name: "Megamacro",
  41771. height: math.unit(8, "miles")
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41777. {
  41778. side: {
  41779. height: math.unit(10, "feet"),
  41780. weight: math.unit(4500, "lb"),
  41781. name: "Side",
  41782. image: {
  41783. source: "./media/characters/ackart/side.svg",
  41784. extra: 1776/1668,
  41785. bottom: 116/1892
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Normal",
  41792. height: math.unit(10, "feet"),
  41793. default: true
  41794. },
  41795. ]
  41796. ))
  41797. characterMakers.push(() => makeCharacter(
  41798. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41799. {
  41800. side: {
  41801. height: math.unit(21, "feet"),
  41802. name: "Side",
  41803. image: {
  41804. source: "./media/characters/nolow/side.svg",
  41805. extra: 1484/1434,
  41806. bottom: 85/1569
  41807. }
  41808. },
  41809. sideErect: {
  41810. height: math.unit(21, "feet"),
  41811. name: "Side-erect",
  41812. image: {
  41813. source: "./media/characters/nolow/side-erect.svg",
  41814. extra: 1484/1434,
  41815. bottom: 85/1569
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Regular",
  41822. height: math.unit(12, "feet")
  41823. },
  41824. {
  41825. name: "Big Chee",
  41826. height: math.unit(21, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(7, "feet"),
  41836. weight: math.unit(250, "lb"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/nines/front.svg",
  41840. extra: 1741/1607,
  41841. bottom: 41/1782
  41842. }
  41843. },
  41844. side: {
  41845. height: math.unit(7, "feet"),
  41846. weight: math.unit(250, "lb"),
  41847. name: "Side",
  41848. image: {
  41849. source: "./media/characters/nines/side.svg",
  41850. extra: 1854/1735,
  41851. bottom: 93/1947
  41852. }
  41853. },
  41854. back: {
  41855. height: math.unit(7, "feet"),
  41856. weight: math.unit(250, "lb"),
  41857. name: "Back",
  41858. image: {
  41859. source: "./media/characters/nines/back.svg",
  41860. extra: 1748/1615,
  41861. bottom: 20/1768
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Megamacro",
  41868. height: math.unit(99, "km"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(5 + 10/12, "feet"),
  41878. weight: math.unit(210, "lb"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/zenith/front.svg",
  41882. extra: 1531/1452,
  41883. bottom: 198/1729
  41884. }
  41885. },
  41886. back: {
  41887. height: math.unit(5 + 10/12, "feet"),
  41888. weight: math.unit(210, "lb"),
  41889. name: "Back",
  41890. image: {
  41891. source: "./media/characters/zenith/back.svg",
  41892. extra: 1571/1487,
  41893. bottom: 75/1646
  41894. }
  41895. },
  41896. },
  41897. [
  41898. {
  41899. name: "Normal",
  41900. height: math.unit(5 + 10/12, "feet"),
  41901. default: true
  41902. }
  41903. ]
  41904. ))
  41905. characterMakers.push(() => makeCharacter(
  41906. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41907. {
  41908. front: {
  41909. height: math.unit(4, "feet"),
  41910. weight: math.unit(60, "lb"),
  41911. name: "Front",
  41912. image: {
  41913. source: "./media/characters/jasper/front.svg",
  41914. extra: 1450/1379,
  41915. bottom: 19/1469
  41916. }
  41917. },
  41918. },
  41919. [
  41920. {
  41921. name: "Normal",
  41922. height: math.unit(4, "feet"),
  41923. default: true
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(6 + 5/12, "feet"),
  41932. weight: math.unit(290, "lb"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/tiberius-thyben/front.svg",
  41936. extra: 757/739,
  41937. bottom: 39/796
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Micro",
  41944. height: math.unit(1.5, "inches")
  41945. },
  41946. {
  41947. name: "Normal",
  41948. height: math.unit(6 + 5/12, "feet"),
  41949. default: true
  41950. },
  41951. {
  41952. name: "Macro",
  41953. height: math.unit(300, "feet")
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(5 + 6/12, "feet"),
  41962. weight: math.unit(60, "kg"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/sabre/front.svg",
  41966. extra: 738/671,
  41967. bottom: 27/765
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Teeny",
  41974. height: math.unit(2, "inches")
  41975. },
  41976. {
  41977. name: "Smol",
  41978. height: math.unit(8, "inches")
  41979. },
  41980. {
  41981. name: "Normal",
  41982. height: math.unit(5 + 6/12, "feet"),
  41983. default: true
  41984. },
  41985. {
  41986. name: "Mini-Macro",
  41987. height: math.unit(15, "feet")
  41988. },
  41989. {
  41990. name: "Macro",
  41991. height: math.unit(50, "feet")
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41997. {
  41998. front: {
  41999. height: math.unit(6 + 4/12, "feet"),
  42000. weight: math.unit(170, "lb"),
  42001. name: "Front",
  42002. image: {
  42003. source: "./media/characters/charlie/front.svg",
  42004. extra: 1348/1228,
  42005. bottom: 15/1363
  42006. }
  42007. },
  42008. },
  42009. [
  42010. {
  42011. name: "Macro",
  42012. height: math.unit(1700, "meters"),
  42013. default: true
  42014. },
  42015. {
  42016. name: "MegaMacro",
  42017. height: math.unit(20400, "meters")
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(6 + 3/12, "feet"),
  42026. weight: math.unit(185, "lb"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/susan-grant/front.svg",
  42030. extra: 1351/1327,
  42031. bottom: 26/1377
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(6 + 3/12, "feet"),
  42039. default: true
  42040. },
  42041. {
  42042. name: "Macro",
  42043. height: math.unit(225, "feet")
  42044. },
  42045. {
  42046. name: "Macro+",
  42047. height: math.unit(900, "feet")
  42048. },
  42049. {
  42050. name: "MegaMacro",
  42051. height: math.unit(14400, "feet")
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(5 + 4/12, "feet"),
  42060. weight: math.unit(110, "lb"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/axel-isanov/front.svg",
  42064. extra: 1096/1065,
  42065. bottom: 13/1109
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(5 + 4/12, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(9, "feet"),
  42082. weight: math.unit(467, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/necahual/front.svg",
  42086. extra: 920/873,
  42087. bottom: 26/946
  42088. }
  42089. },
  42090. back: {
  42091. height: math.unit(9, "feet"),
  42092. weight: math.unit(467, "lb"),
  42093. name: "Back",
  42094. image: {
  42095. source: "./media/characters/necahual/back.svg",
  42096. extra: 930/884,
  42097. bottom: 16/946
  42098. }
  42099. },
  42100. frontUnderwear: {
  42101. height: math.unit(9, "feet"),
  42102. weight: math.unit(467, "lb"),
  42103. name: "Front (Underwear)",
  42104. image: {
  42105. source: "./media/characters/necahual/front-underwear.svg",
  42106. extra: 920/873,
  42107. bottom: 26/946
  42108. }
  42109. },
  42110. frontDressed: {
  42111. height: math.unit(9, "feet"),
  42112. weight: math.unit(467, "lb"),
  42113. name: "Front (Dressed)",
  42114. image: {
  42115. source: "./media/characters/necahual/front-dressed.svg",
  42116. extra: 920/873,
  42117. bottom: 26/946
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Comprsesed",
  42124. height: math.unit(9, "feet")
  42125. },
  42126. {
  42127. name: "Natural",
  42128. height: math.unit(15, "feet"),
  42129. default: true
  42130. },
  42131. {
  42132. name: "Boosted",
  42133. height: math.unit(50, "feet")
  42134. },
  42135. {
  42136. name: "Boosted+",
  42137. height: math.unit(150, "feet")
  42138. },
  42139. {
  42140. name: "Max",
  42141. height: math.unit(500, "feet")
  42142. },
  42143. ]
  42144. ))
  42145. characterMakers.push(() => makeCharacter(
  42146. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42147. {
  42148. front: {
  42149. height: math.unit(22 + 1/12, "feet"),
  42150. weight: math.unit(3200, "lb"),
  42151. name: "Front",
  42152. image: {
  42153. source: "./media/characters/theo-acacia/front.svg",
  42154. extra: 1796/1741,
  42155. bottom: 83/1879
  42156. }
  42157. },
  42158. frontUnderwear: {
  42159. height: math.unit(22 + 1/12, "feet"),
  42160. weight: math.unit(3200, "lb"),
  42161. name: "Front (Underwear)",
  42162. image: {
  42163. source: "./media/characters/theo-acacia/front-underwear.svg",
  42164. extra: 1796/1741,
  42165. bottom: 83/1879
  42166. }
  42167. },
  42168. frontNude: {
  42169. height: math.unit(22 + 1/12, "feet"),
  42170. weight: math.unit(3200, "lb"),
  42171. name: "Front (Nude)",
  42172. image: {
  42173. source: "./media/characters/theo-acacia/front-nude.svg",
  42174. extra: 1796/1741,
  42175. bottom: 83/1879
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(22 + 1/12, "feet"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42189. {
  42190. front: {
  42191. height: math.unit(20, "feet"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/astra/front.svg",
  42195. extra: 1850/1714,
  42196. bottom: 106/1956
  42197. }
  42198. },
  42199. frontUndressed: {
  42200. height: math.unit(20, "feet"),
  42201. name: "Front (Undressed)",
  42202. image: {
  42203. source: "./media/characters/astra/front-undressed.svg",
  42204. extra: 1926/1749,
  42205. bottom: 0/1926
  42206. }
  42207. },
  42208. hand: {
  42209. height: math.unit(1.53, "feet"),
  42210. name: "Hand",
  42211. image: {
  42212. source: "./media/characters/astra/hand.svg"
  42213. }
  42214. },
  42215. paw: {
  42216. height: math.unit(1.53, "feet"),
  42217. name: "Paw",
  42218. image: {
  42219. source: "./media/characters/astra/paw.svg"
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Smallest",
  42226. height: math.unit(20, "feet")
  42227. },
  42228. {
  42229. name: "Normal",
  42230. height: math.unit(1e9, "miles"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Larger",
  42235. height: math.unit(5, "multiverses")
  42236. },
  42237. {
  42238. name: "Largest",
  42239. height: math.unit(1e9, "multiverses")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(8, "feet"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/breanna/front.svg",
  42251. extra: 1912/1632,
  42252. bottom: 33/1945
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Smallest",
  42259. height: math.unit(8, "feet")
  42260. },
  42261. {
  42262. name: "Normal",
  42263. height: math.unit(1, "mile"),
  42264. default: true
  42265. },
  42266. {
  42267. name: "Maximum",
  42268. height: math.unit(1500000000000, "lightyears")
  42269. },
  42270. ]
  42271. ))
  42272. characterMakers.push(() => makeCharacter(
  42273. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42274. {
  42275. front: {
  42276. height: math.unit(5 + 11/12, "feet"),
  42277. weight: math.unit(155, "lb"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/cai/front.svg",
  42281. extra: 1823/1702,
  42282. bottom: 32/1855
  42283. }
  42284. },
  42285. back: {
  42286. height: math.unit(5 + 11/12, "feet"),
  42287. weight: math.unit(155, "lb"),
  42288. name: "Back",
  42289. image: {
  42290. source: "./media/characters/cai/back.svg",
  42291. extra: 1809/1708,
  42292. bottom: 31/1840
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(5 + 11/12, "feet"),
  42300. default: true
  42301. },
  42302. {
  42303. name: "Big",
  42304. height: math.unit(15, "feet")
  42305. },
  42306. {
  42307. name: "Macro",
  42308. height: math.unit(200, "feet")
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(5 + 6/12, "feet"),
  42317. weight: math.unit(160, "lb"),
  42318. name: "Front",
  42319. image: {
  42320. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42321. extra: 1227/1174,
  42322. bottom: 37/1264
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Macro",
  42329. height: math.unit(444, "meters"),
  42330. default: true
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(18 + 7/12, "feet"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/rex/front.svg",
  42342. extra: 1941/1807,
  42343. bottom: 66/2007
  42344. }
  42345. },
  42346. back: {
  42347. height: math.unit(18 + 7/12, "feet"),
  42348. name: "Back",
  42349. image: {
  42350. source: "./media/characters/rex/back.svg",
  42351. extra: 1937/1822,
  42352. bottom: 42/1979
  42353. }
  42354. },
  42355. boot: {
  42356. height: math.unit(3.45, "feet"),
  42357. name: "Boot",
  42358. image: {
  42359. source: "./media/characters/rex/boot.svg"
  42360. }
  42361. },
  42362. paw: {
  42363. height: math.unit(4.17, "feet"),
  42364. name: "Paw",
  42365. image: {
  42366. source: "./media/characters/rex/paw.svg"
  42367. }
  42368. },
  42369. head: {
  42370. height: math.unit(6.728, "feet"),
  42371. name: "Head",
  42372. image: {
  42373. source: "./media/characters/rex/head.svg"
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Nano",
  42380. height: math.unit(18 + 7/12, "feet")
  42381. },
  42382. {
  42383. name: "Micro",
  42384. height: math.unit(1.5, "megameters")
  42385. },
  42386. {
  42387. name: "Normal",
  42388. height: math.unit(440, "megameters"),
  42389. default: true
  42390. },
  42391. {
  42392. name: "Macro",
  42393. height: math.unit(2.5, "gigameters")
  42394. },
  42395. {
  42396. name: "Gigamacro",
  42397. height: math.unit(2, "galaxies")
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42403. {
  42404. side: {
  42405. height: math.unit(32, "feet"),
  42406. weight: math.unit(250000, "lb"),
  42407. name: "Side",
  42408. image: {
  42409. source: "./media/characters/silverwing/side.svg",
  42410. extra: 1100/1019,
  42411. bottom: 204/1304
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Normal",
  42418. height: math.unit(32, "feet"),
  42419. default: true
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(6 + 6/12, "feet"),
  42428. weight: math.unit(350, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/tristan-hawthorne/front.svg",
  42432. extra: 1159/1124,
  42433. bottom: 37/1196
  42434. },
  42435. form: "labrador",
  42436. default: true
  42437. },
  42438. skunkFront: {
  42439. height: math.unit(4 + 6/12, "feet"),
  42440. weight: math.unit(120, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42444. extra: 1609/1551,
  42445. bottom: 169/1778
  42446. },
  42447. form: "skunk",
  42448. default: true
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Normal",
  42454. height: math.unit(6 + 6/12, "feet"),
  42455. form: "labrador",
  42456. default: true
  42457. },
  42458. {
  42459. name: "Normal",
  42460. height: math.unit(4 + 6/12, "feet"),
  42461. form: "skunk",
  42462. default: true
  42463. },
  42464. ],
  42465. {
  42466. "labrador": {
  42467. name: "Labrador",
  42468. default: true
  42469. },
  42470. "skunk": {
  42471. name: "Skunk"
  42472. }
  42473. }
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(5 + 11/12, "feet"),
  42480. weight: math.unit(190, "lb"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/mizu/front.svg",
  42484. extra: 1988/1788,
  42485. bottom: 14/2002
  42486. }
  42487. },
  42488. },
  42489. [
  42490. {
  42491. name: "Normal",
  42492. height: math.unit(5 + 11/12, "feet"),
  42493. default: true
  42494. },
  42495. ]
  42496. ))
  42497. characterMakers.push(() => makeCharacter(
  42498. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42499. {
  42500. front: {
  42501. height: math.unit(1.7, "feet"),
  42502. weight: math.unit(50, "lb"),
  42503. name: "Front",
  42504. image: {
  42505. source: "./media/characters/dechroma/front.svg",
  42506. extra: 1095/859,
  42507. bottom: 64/1159
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Normal",
  42514. height: math.unit(1.7, "feet"),
  42515. default: true
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42521. {
  42522. side: {
  42523. height: math.unit(30, "feet"),
  42524. name: "Side",
  42525. image: {
  42526. source: "./media/characters/veluren-thanazel/side.svg",
  42527. extra: 1611/633,
  42528. bottom: 118/1729
  42529. }
  42530. },
  42531. front: {
  42532. height: math.unit(30, "feet"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/veluren-thanazel/front.svg",
  42536. extra: 1486/636,
  42537. bottom: 238/1724
  42538. }
  42539. },
  42540. head: {
  42541. height: math.unit(21.4, "feet"),
  42542. name: "Head",
  42543. image: {
  42544. source: "./media/characters/veluren-thanazel/head.svg"
  42545. }
  42546. },
  42547. genitals: {
  42548. height: math.unit(19.4, "feet"),
  42549. name: "Genitals",
  42550. image: {
  42551. source: "./media/characters/veluren-thanazel/genitals.svg"
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Social",
  42558. height: math.unit(6, "feet")
  42559. },
  42560. {
  42561. name: "Play",
  42562. height: math.unit(12, "feet")
  42563. },
  42564. {
  42565. name: "True",
  42566. height: math.unit(30, "feet"),
  42567. default: true
  42568. },
  42569. ]
  42570. ))
  42571. characterMakers.push(() => makeCharacter(
  42572. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42573. {
  42574. front: {
  42575. height: math.unit(7 + 6/12, "feet"),
  42576. weight: math.unit(500, "kg"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/arcturas/front.svg",
  42580. extra: 1700/1500,
  42581. bottom: 145/1845
  42582. }
  42583. },
  42584. },
  42585. [
  42586. {
  42587. name: "Normal",
  42588. height: math.unit(7 + 6/12, "feet"),
  42589. default: true
  42590. },
  42591. ]
  42592. ))
  42593. characterMakers.push(() => makeCharacter(
  42594. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42595. {
  42596. side: {
  42597. height: math.unit(6, "feet"),
  42598. weight: math.unit(2, "tons"),
  42599. name: "Side",
  42600. image: {
  42601. source: "./media/characters/vitaen/side.svg",
  42602. extra: 1157/617,
  42603. bottom: 122/1279
  42604. }
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Normal",
  42610. height: math.unit(6, "feet"),
  42611. default: true
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42617. {
  42618. front: {
  42619. height: math.unit(19, "feet"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/fia-dreamweaver/front.svg",
  42623. extra: 1630/1504,
  42624. bottom: 25/1655
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Normal",
  42631. height: math.unit(19, "feet"),
  42632. default: true
  42633. },
  42634. ]
  42635. ))
  42636. characterMakers.push(() => makeCharacter(
  42637. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42638. {
  42639. front: {
  42640. height: math.unit(5 + 4/12, "feet"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/artan/front.svg",
  42644. extra: 1618/1535,
  42645. bottom: 46/1664
  42646. }
  42647. },
  42648. back: {
  42649. height: math.unit(5 + 4/12, "feet"),
  42650. name: "Back",
  42651. image: {
  42652. source: "./media/characters/artan/back.svg",
  42653. extra: 1618/1543,
  42654. bottom: 31/1649
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(5 + 4/12, "feet"),
  42662. default: true
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42668. {
  42669. side: {
  42670. height: math.unit(182, "cm"),
  42671. weight: math.unit(1000, "lb"),
  42672. name: "Side",
  42673. image: {
  42674. source: "./media/characters/silver-dragon/side.svg",
  42675. extra: 710/287,
  42676. bottom: 88/798
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(182, "cm"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42690. {
  42691. side: {
  42692. height: math.unit(6 + 6/12, "feet"),
  42693. weight: math.unit(1.5, "tons"),
  42694. name: "Side",
  42695. image: {
  42696. source: "./media/characters/zephyr/side.svg",
  42697. extra: 1433/586,
  42698. bottom: 109/1542
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Normal",
  42705. height: math.unit(6 + 6/12, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42712. {
  42713. side: {
  42714. height: math.unit(1, "feet"),
  42715. name: "Side",
  42716. image: {
  42717. source: "./media/characters/vixye/side.svg",
  42718. extra: 632/541,
  42719. bottom: 0/632
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(1, "feet"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "True",
  42731. height: math.unit(1e15, "multiverses")
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(8 + 2/12, "feet"),
  42740. weight: math.unit(650, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42744. extra: 1174/1137,
  42745. bottom: 82/1256
  42746. }
  42747. },
  42748. back: {
  42749. height: math.unit(8 + 2/12, "feet"),
  42750. weight: math.unit(650, "lb"),
  42751. name: "Back",
  42752. image: {
  42753. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42754. extra: 1204/1157,
  42755. bottom: 46/1250
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Wildform",
  42762. height: math.unit(8 + 2/12, "feet"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(18, "feet"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/cyphin/front.svg",
  42775. extra: 970/886,
  42776. bottom: 42/1012
  42777. }
  42778. },
  42779. back: {
  42780. height: math.unit(18, "feet"),
  42781. name: "Back",
  42782. image: {
  42783. source: "./media/characters/cyphin/back.svg",
  42784. extra: 1009/894,
  42785. bottom: 24/1033
  42786. }
  42787. },
  42788. head: {
  42789. height: math.unit(5.05, "feet"),
  42790. name: "Head",
  42791. image: {
  42792. source: "./media/characters/cyphin/head.svg"
  42793. }
  42794. },
  42795. tailbud: {
  42796. height: math.unit(5, "feet"),
  42797. name: "Tailbud",
  42798. image: {
  42799. source: "./media/characters/cyphin/tailbud.svg"
  42800. }
  42801. },
  42802. },
  42803. [
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42808. {
  42809. side: {
  42810. height: math.unit(10, "feet"),
  42811. weight: math.unit(6, "tons"),
  42812. name: "Side",
  42813. image: {
  42814. source: "./media/characters/raijin/side.svg",
  42815. extra: 1529/613,
  42816. bottom: 337/1866
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Normal",
  42823. height: math.unit(10, "feet"),
  42824. default: true
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42830. {
  42831. side: {
  42832. height: math.unit(9, "feet"),
  42833. name: "Side",
  42834. image: {
  42835. source: "./media/characters/nilghais/side.svg",
  42836. extra: 1047/744,
  42837. bottom: 91/1138
  42838. }
  42839. },
  42840. head: {
  42841. height: math.unit(3.14, "feet"),
  42842. name: "Head",
  42843. image: {
  42844. source: "./media/characters/nilghais/head.svg"
  42845. }
  42846. },
  42847. mouth: {
  42848. height: math.unit(4.6, "feet"),
  42849. name: "Mouth",
  42850. image: {
  42851. source: "./media/characters/nilghais/mouth.svg"
  42852. }
  42853. },
  42854. wings: {
  42855. height: math.unit(24, "feet"),
  42856. name: "Wings",
  42857. image: {
  42858. source: "./media/characters/nilghais/wings.svg"
  42859. }
  42860. },
  42861. ass: {
  42862. height: math.unit(6.12, "feet"),
  42863. name: "Ass",
  42864. image: {
  42865. source: "./media/characters/nilghais/ass.svg"
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Normal",
  42872. height: math.unit(9, "feet"),
  42873. default: true
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42879. {
  42880. regular: {
  42881. height: math.unit(16 + 2/12, "feet"),
  42882. weight: math.unit(2300, "lb"),
  42883. name: "Regular",
  42884. image: {
  42885. source: "./media/characters/zolgar/regular.svg",
  42886. extra: 1246/1004,
  42887. bottom: 124/1370
  42888. }
  42889. },
  42890. boxers: {
  42891. height: math.unit(16 + 2/12, "feet"),
  42892. weight: math.unit(2300, "lb"),
  42893. name: "Boxers",
  42894. image: {
  42895. source: "./media/characters/zolgar/boxers.svg",
  42896. extra: 1246/1004,
  42897. bottom: 124/1370
  42898. }
  42899. },
  42900. armored: {
  42901. height: math.unit(16 + 2/12, "feet"),
  42902. weight: math.unit(2300, "lb"),
  42903. name: "Armored",
  42904. image: {
  42905. source: "./media/characters/zolgar/armored.svg",
  42906. extra: 1246/1004,
  42907. bottom: 124/1370
  42908. }
  42909. },
  42910. goth: {
  42911. height: math.unit(16 + 2/12, "feet"),
  42912. weight: math.unit(2300, "lb"),
  42913. name: "Goth",
  42914. image: {
  42915. source: "./media/characters/zolgar/goth.svg",
  42916. extra: 1246/1004,
  42917. bottom: 124/1370
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Shrunken Down",
  42924. height: math.unit(9 + 2/12, "feet")
  42925. },
  42926. {
  42927. name: "Normal",
  42928. height: math.unit(16 + 2/12, "feet"),
  42929. default: true
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(6, "feet"),
  42938. weight: math.unit(168, "lb"),
  42939. name: "Front",
  42940. image: {
  42941. source: "./media/characters/luca/front.svg",
  42942. extra: 841/667,
  42943. bottom: 102/943
  42944. }
  42945. },
  42946. },
  42947. [
  42948. {
  42949. name: "Normal",
  42950. height: math.unit(6, "feet"),
  42951. default: true
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42957. {
  42958. side: {
  42959. height: math.unit(7 + 3/12, "feet"),
  42960. weight: math.unit(312, "lb"),
  42961. name: "Side",
  42962. image: {
  42963. source: "./media/characters/zezo/side.svg",
  42964. extra: 1192/1067,
  42965. bottom: 63/1255
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(7 + 3/12, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(5 + 5/12, "feet"),
  42982. weight: math.unit(170, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/mayso/front.svg",
  42986. extra: 1215/1108,
  42987. bottom: 16/1231
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(5 + 5/12, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(4 + 3/12, "feet"),
  43004. weight: math.unit(80, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/hess/front.svg",
  43008. extra: 1200/1123,
  43009. bottom: 16/1216
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(4 + 3/12, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43023. {
  43024. front: {
  43025. height: math.unit(1.9, "meters"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/ashgar/front.svg",
  43029. extra: 1177/1146,
  43030. bottom: 99/1276
  43031. }
  43032. },
  43033. back: {
  43034. height: math.unit(1.9, "meters"),
  43035. name: "Back",
  43036. image: {
  43037. source: "./media/characters/ashgar/back.svg",
  43038. extra: 1201/1183,
  43039. bottom: 53/1254
  43040. }
  43041. },
  43042. feral: {
  43043. height: math.unit(1.4, "meters"),
  43044. name: "Feral",
  43045. image: {
  43046. source: "./media/characters/ashgar/feral.svg",
  43047. extra: 370/345,
  43048. bottom: 45/415
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(1.9, "meters"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43062. {
  43063. regular: {
  43064. height: math.unit(6, "feet"),
  43065. weight: math.unit(220, "lb"),
  43066. name: "Regular",
  43067. image: {
  43068. source: "./media/characters/phillip/regular.svg",
  43069. extra: 1373/1277,
  43070. bottom: 75/1448
  43071. }
  43072. },
  43073. dressed: {
  43074. height: math.unit(6, "feet"),
  43075. weight: math.unit(220, "lb"),
  43076. name: "Dressed",
  43077. image: {
  43078. source: "./media/characters/phillip/dressed.svg",
  43079. extra: 1373/1277,
  43080. bottom: 75/1448
  43081. }
  43082. },
  43083. paw: {
  43084. height: math.unit(1.44, "feet"),
  43085. name: "Paw",
  43086. image: {
  43087. source: "./media/characters/phillip/paw.svg"
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Normal",
  43094. height: math.unit(6, "feet"),
  43095. default: true
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43101. {
  43102. side: {
  43103. height: math.unit(42, "feet"),
  43104. name: "Side",
  43105. image: {
  43106. source: "./media/characters/uvula/side.svg",
  43107. extra: 683/586,
  43108. bottom: 60/743
  43109. }
  43110. },
  43111. front: {
  43112. height: math.unit(42, "feet"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/uvula/front.svg",
  43116. extra: 705/613,
  43117. bottom: 54/759
  43118. }
  43119. },
  43120. maw: {
  43121. height: math.unit(23.5, "feet"),
  43122. name: "Maw",
  43123. image: {
  43124. source: "./media/characters/uvula/maw.svg"
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Original Size",
  43131. height: math.unit(14, "inches")
  43132. },
  43133. {
  43134. name: "Human Size",
  43135. height: math.unit(6, "feet")
  43136. },
  43137. {
  43138. name: "Big",
  43139. height: math.unit(42, "feet"),
  43140. default: true
  43141. },
  43142. {
  43143. name: "Bigger",
  43144. height: math.unit(100, "feet")
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(5 + 11/12, "feet"),
  43153. name: "Front",
  43154. image: {
  43155. source: "./media/characters/lannah/front.svg",
  43156. extra: 1208/1113,
  43157. bottom: 97/1305
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(5 + 11/12, "feet"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43171. {
  43172. front: {
  43173. height: math.unit(6 + 3/12, "feet"),
  43174. weight: math.unit(3.5, "tons"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/emberflame/front.svg",
  43178. extra: 1198/672,
  43179. bottom: 82/1280
  43180. }
  43181. },
  43182. side: {
  43183. height: math.unit(6 + 3/12, "feet"),
  43184. weight: math.unit(3.5, "tons"),
  43185. name: "Side",
  43186. image: {
  43187. source: "./media/characters/emberflame/side.svg",
  43188. extra: 938/527,
  43189. bottom: 56/994
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Normal",
  43196. height: math.unit(6 + 3/12, "feet"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43203. {
  43204. side: {
  43205. height: math.unit(17.5, "feet"),
  43206. weight: math.unit(35, "tons"),
  43207. name: "Side",
  43208. image: {
  43209. source: "./media/characters/sophie-ambrose/side.svg",
  43210. extra: 1573/1242,
  43211. bottom: 71/1644
  43212. }
  43213. },
  43214. maw: {
  43215. height: math.unit(7.4, "feet"),
  43216. name: "Maw",
  43217. image: {
  43218. source: "./media/characters/sophie-ambrose/maw.svg"
  43219. }
  43220. },
  43221. },
  43222. [
  43223. {
  43224. name: "Normal",
  43225. height: math.unit(17.5, "feet"),
  43226. default: true
  43227. },
  43228. ]
  43229. ))
  43230. characterMakers.push(() => makeCharacter(
  43231. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43232. {
  43233. front: {
  43234. height: math.unit(280, "feet"),
  43235. weight: math.unit(550, "tons"),
  43236. name: "Front",
  43237. image: {
  43238. source: "./media/characters/king-mugi/front.svg",
  43239. extra: 1102/947,
  43240. bottom: 104/1206
  43241. }
  43242. },
  43243. },
  43244. [
  43245. {
  43246. name: "King Mugi",
  43247. height: math.unit(280, "feet"),
  43248. default: true
  43249. },
  43250. ]
  43251. ))
  43252. characterMakers.push(() => makeCharacter(
  43253. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43254. {
  43255. front: {
  43256. height: math.unit(64, "meters"),
  43257. name: "Front",
  43258. image: {
  43259. source: "./media/characters/nova-fox/front.svg",
  43260. extra: 1310/1246,
  43261. bottom: 65/1375
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Macro",
  43268. height: math.unit(64, "meters"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(6 + 3/12, "feet"),
  43278. weight: math.unit(170, "lb"),
  43279. name: "Front",
  43280. image: {
  43281. source: "./media/characters/sam-bat/front.svg",
  43282. extra: 1601/1411,
  43283. bottom: 125/1726
  43284. }
  43285. },
  43286. back: {
  43287. height: math.unit(6 + 3/12, "feet"),
  43288. weight: math.unit(170, "lb"),
  43289. name: "Back",
  43290. image: {
  43291. source: "./media/characters/sam-bat/back.svg",
  43292. extra: 1577/1405,
  43293. bottom: 58/1635
  43294. }
  43295. },
  43296. },
  43297. [
  43298. {
  43299. name: "Normal",
  43300. height: math.unit(6 + 3/12, "feet"),
  43301. default: true
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43307. {
  43308. front: {
  43309. height: math.unit(59, "feet"),
  43310. weight: math.unit(40000, "lb"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/inari/front.svg",
  43314. extra: 1884/1350,
  43315. bottom: 95/1979
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Gigantamax",
  43322. height: math.unit(59, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(5 + 8/12, "feet"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/elizabeth/front.svg",
  43335. extra: 1395/1298,
  43336. bottom: 54/1449
  43337. }
  43338. },
  43339. mouth: {
  43340. height: math.unit(1.97, "feet"),
  43341. name: "Mouth",
  43342. image: {
  43343. source: "./media/characters/elizabeth/mouth.svg"
  43344. }
  43345. },
  43346. foot: {
  43347. height: math.unit(1.17, "feet"),
  43348. name: "Foot",
  43349. image: {
  43350. source: "./media/characters/elizabeth/foot.svg"
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(5 + 8/12, "feet"),
  43358. default: true
  43359. },
  43360. {
  43361. name: "Minimacro",
  43362. height: math.unit(18, "feet")
  43363. },
  43364. {
  43365. name: "Macro",
  43366. height: math.unit(180, "feet")
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(5 + 2/12, "feet"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/october-gossamer/front.svg",
  43378. extra: 505/454,
  43379. bottom: 7/512
  43380. }
  43381. },
  43382. back: {
  43383. height: math.unit(5 + 2/12, "feet"),
  43384. name: "Back",
  43385. image: {
  43386. source: "./media/characters/october-gossamer/back.svg",
  43387. extra: 501/454,
  43388. bottom: 11/512
  43389. }
  43390. },
  43391. },
  43392. [
  43393. {
  43394. name: "Normal",
  43395. height: math.unit(5 + 2/12, "feet"),
  43396. default: true
  43397. },
  43398. ]
  43399. ))
  43400. characterMakers.push(() => makeCharacter(
  43401. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43402. {
  43403. front: {
  43404. height: math.unit(5, "feet"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/epiglottis/front.svg",
  43408. extra: 923/849,
  43409. bottom: 17/940
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Original Size",
  43416. height: math.unit(10, "inches")
  43417. },
  43418. {
  43419. name: "Human Size",
  43420. height: math.unit(5, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Big",
  43425. height: math.unit(25, "feet")
  43426. },
  43427. {
  43428. name: "Bigger",
  43429. height: math.unit(50, "feet")
  43430. },
  43431. {
  43432. name: "oh lawd",
  43433. height: math.unit(75, "feet")
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(2 + 4/12, "feet"),
  43442. weight: math.unit(60, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/lerm/front.svg",
  43446. extra: 796/790,
  43447. bottom: 79/875
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(2 + 4/12, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(5.5, "feet"),
  43464. weight: math.unit(130, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/xena-nebadon/front.svg",
  43468. extra: 1828/1730,
  43469. bottom: 79/1907
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Tiny Puppy",
  43476. height: math.unit(3, "inches")
  43477. },
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(5.5, "feet"),
  43481. default: true
  43482. },
  43483. {
  43484. name: "Lotta Lady",
  43485. height: math.unit(12, "feet")
  43486. },
  43487. {
  43488. name: "Pretty Big",
  43489. height: math.unit(100, "feet")
  43490. },
  43491. {
  43492. name: "Big",
  43493. height: math.unit(500, "feet")
  43494. },
  43495. {
  43496. name: "Skyscraper Toys",
  43497. height: math.unit(2500, "feet")
  43498. },
  43499. {
  43500. name: "Plane Catcher",
  43501. height: math.unit(8, "miles")
  43502. },
  43503. {
  43504. name: "Planet Toys",
  43505. height: math.unit(15, "earths")
  43506. },
  43507. {
  43508. name: "Stardust",
  43509. height: math.unit(0.25, "galaxies")
  43510. },
  43511. {
  43512. name: "Snacks",
  43513. height: math.unit(70, "universes")
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(1.6, "meters"),
  43522. weight: math.unit(60, "kg"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/bounty/front.svg",
  43526. extra: 1426/1308,
  43527. bottom: 15/1441
  43528. }
  43529. },
  43530. back: {
  43531. height: math.unit(1.6, "meters"),
  43532. weight: math.unit(60, "kg"),
  43533. name: "Back",
  43534. image: {
  43535. source: "./media/characters/bounty/back.svg",
  43536. extra: 1417/1307,
  43537. bottom: 8/1425
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Normal",
  43544. height: math.unit(1.6, "meters"),
  43545. default: true
  43546. },
  43547. {
  43548. name: "Macro",
  43549. height: math.unit(300, "meters")
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43555. {
  43556. front: {
  43557. height: math.unit(2 + 8/12, "feet"),
  43558. weight: math.unit(15, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/mochi/front.svg",
  43562. extra: 1022/852,
  43563. bottom: 435/1457
  43564. }
  43565. },
  43566. back: {
  43567. height: math.unit(2 + 8/12, "feet"),
  43568. weight: math.unit(15, "lb"),
  43569. name: "Back",
  43570. image: {
  43571. source: "./media/characters/mochi/back.svg",
  43572. extra: 1335/1119,
  43573. bottom: 39/1374
  43574. }
  43575. },
  43576. bird: {
  43577. height: math.unit(2 + 8/12, "feet"),
  43578. weight: math.unit(15, "lb"),
  43579. name: "Bird",
  43580. image: {
  43581. source: "./media/characters/mochi/bird.svg",
  43582. extra: 1251/1113,
  43583. bottom: 178/1429
  43584. }
  43585. },
  43586. kaiju: {
  43587. height: math.unit(154, "feet"),
  43588. weight: math.unit(1e7, "lb"),
  43589. name: "Kaiju",
  43590. image: {
  43591. source: "./media/characters/mochi/kaiju.svg",
  43592. extra: 460/324,
  43593. bottom: 40/500
  43594. }
  43595. },
  43596. head: {
  43597. height: math.unit(1.21, "feet"),
  43598. name: "Head",
  43599. image: {
  43600. source: "./media/characters/mochi/head.svg"
  43601. }
  43602. },
  43603. alternateTail: {
  43604. height: math.unit(2 + 8/12, "feet"),
  43605. weight: math.unit(45, "lb"),
  43606. name: "Alternate Tail",
  43607. image: {
  43608. source: "./media/characters/mochi/alternate-tail.svg",
  43609. extra: 139/76,
  43610. bottom: 45/184
  43611. }
  43612. },
  43613. },
  43614. [
  43615. {
  43616. name: "Micro",
  43617. height: math.unit(2, "inches")
  43618. },
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(2 + 8/12, "feet"),
  43622. default: true
  43623. },
  43624. {
  43625. name: "Macro",
  43626. height: math.unit(106, "feet")
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43632. {
  43633. front: {
  43634. height: math.unit(5.67, "feet"),
  43635. weight: math.unit(135, "lb"),
  43636. name: "Front",
  43637. image: {
  43638. source: "./media/characters/sarel/front.svg",
  43639. extra: 865/788,
  43640. bottom: 97/962
  43641. }
  43642. },
  43643. back: {
  43644. height: math.unit(5.67, "feet"),
  43645. weight: math.unit(135, "lb"),
  43646. name: "Back",
  43647. image: {
  43648. source: "./media/characters/sarel/back.svg",
  43649. extra: 857/777,
  43650. bottom: 32/889
  43651. }
  43652. },
  43653. chozoan: {
  43654. height: math.unit(5.67, "feet"),
  43655. weight: math.unit(135, "lb"),
  43656. name: "Chozoan",
  43657. image: {
  43658. source: "./media/characters/sarel/chozoan.svg",
  43659. extra: 865/788,
  43660. bottom: 97/962
  43661. }
  43662. },
  43663. current: {
  43664. height: math.unit(5.67, "feet"),
  43665. weight: math.unit(135, "lb"),
  43666. name: "Current",
  43667. image: {
  43668. source: "./media/characters/sarel/current.svg",
  43669. extra: 865/788,
  43670. bottom: 97/962
  43671. }
  43672. },
  43673. head: {
  43674. height: math.unit(1.77, "feet"),
  43675. name: "Head",
  43676. image: {
  43677. source: "./media/characters/sarel/head.svg"
  43678. }
  43679. },
  43680. claws: {
  43681. height: math.unit(1.8, "feet"),
  43682. name: "Claws",
  43683. image: {
  43684. source: "./media/characters/sarel/claws.svg"
  43685. }
  43686. },
  43687. clawsAlt: {
  43688. height: math.unit(1.8, "feet"),
  43689. name: "Claws-alt",
  43690. image: {
  43691. source: "./media/characters/sarel/claws-alt.svg"
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Normal",
  43698. height: math.unit(5.67, "feet"),
  43699. default: true
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(5500, "feet"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/alyonia/front.svg",
  43711. extra: 1200/1135,
  43712. bottom: 29/1229
  43713. }
  43714. },
  43715. back: {
  43716. height: math.unit(5500, "feet"),
  43717. name: "Back",
  43718. image: {
  43719. source: "./media/characters/alyonia/back.svg",
  43720. extra: 1205/1138,
  43721. bottom: 10/1215
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Small",
  43728. height: math.unit(10, "feet")
  43729. },
  43730. {
  43731. name: "Macro",
  43732. height: math.unit(500, "feet")
  43733. },
  43734. {
  43735. name: "Mega Macro",
  43736. height: math.unit(5500, "feet"),
  43737. default: true
  43738. },
  43739. {
  43740. name: "Mega Macro+",
  43741. height: math.unit(500000, "feet")
  43742. },
  43743. {
  43744. name: "Giga Macro",
  43745. height: math.unit(3000, "miles")
  43746. },
  43747. {
  43748. name: "Tera Macro",
  43749. height: math.unit(2.8e6, "miles")
  43750. },
  43751. {
  43752. name: "Galactic",
  43753. height: math.unit(120000, "lightyears")
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43759. {
  43760. werewolf: {
  43761. height: math.unit(8, "feet"),
  43762. weight: math.unit(425, "lb"),
  43763. name: "Werewolf",
  43764. image: {
  43765. source: "./media/characters/autumn/werewolf.svg",
  43766. extra: 2154/2031,
  43767. bottom: 160/2314
  43768. }
  43769. },
  43770. human: {
  43771. height: math.unit(5 + 8/12, "feet"),
  43772. weight: math.unit(150, "lb"),
  43773. name: "Human",
  43774. image: {
  43775. source: "./media/characters/autumn/human.svg",
  43776. extra: 1200/1149,
  43777. bottom: 30/1230
  43778. }
  43779. },
  43780. },
  43781. [
  43782. {
  43783. name: "Normal",
  43784. height: math.unit(8, "feet"),
  43785. default: true
  43786. },
  43787. ]
  43788. ))
  43789. characterMakers.push(() => makeCharacter(
  43790. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43791. {
  43792. front: {
  43793. height: math.unit(8 + 5/12, "feet"),
  43794. weight: math.unit(825, "lb"),
  43795. name: "Front",
  43796. image: {
  43797. source: "./media/characters/cobalt-charizard/front.svg",
  43798. extra: 1268/1155,
  43799. bottom: 122/1390
  43800. }
  43801. },
  43802. side: {
  43803. height: math.unit(8 + 5/12, "feet"),
  43804. weight: math.unit(825, "lb"),
  43805. name: "Side",
  43806. image: {
  43807. source: "./media/characters/cobalt-charizard/side.svg",
  43808. extra: 1348/1257,
  43809. bottom: 58/1406
  43810. }
  43811. },
  43812. gMax: {
  43813. height: math.unit(134 + 11/12, "feet"),
  43814. name: "G-Max",
  43815. image: {
  43816. source: "./media/characters/cobalt-charizard/g-max.svg",
  43817. extra: 1835/1541,
  43818. bottom: 151/1986
  43819. }
  43820. },
  43821. },
  43822. [
  43823. {
  43824. name: "Normal",
  43825. height: math.unit(8 + 5/12, "feet"),
  43826. default: true
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(6 + 3/12, "feet"),
  43835. weight: math.unit(210, "lb"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/stella/front.svg",
  43839. extra: 3549/3335,
  43840. bottom: 51/3600
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(6 + 3/12, "feet"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43854. {
  43855. front: {
  43856. height: math.unit(5, "feet"),
  43857. weight: math.unit(90, "lb"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/riley-bishop/front.svg",
  43861. extra: 1450/1428,
  43862. bottom: 152/1602
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Normal",
  43869. height: math.unit(5, "feet"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43876. {
  43877. side: {
  43878. height: math.unit(8 + 2/12, "feet"),
  43879. weight: math.unit(500, "kg"),
  43880. name: "Side",
  43881. image: {
  43882. source: "./media/characters/theo-arcanine/side.svg",
  43883. extra: 1342/1074,
  43884. bottom: 111/1453
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Normal",
  43891. height: math.unit(8 + 2/12, "feet"),
  43892. default: true
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(4, "feet"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/kali/front.svg",
  43904. extra: 1921/1357,
  43905. bottom: 70/1991
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(4, "feet"),
  43913. default: true
  43914. },
  43915. {
  43916. name: "Macro",
  43917. height: math.unit(32, "meters")
  43918. },
  43919. {
  43920. name: "Macro+",
  43921. height: math.unit(150, "meters")
  43922. },
  43923. {
  43924. name: "Megamacro",
  43925. height: math.unit(7500, "meters")
  43926. },
  43927. {
  43928. name: "Megamacro+",
  43929. height: math.unit(80, "kilometers")
  43930. },
  43931. ]
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43935. {
  43936. side: {
  43937. height: math.unit(5 + 11/12, "feet"),
  43938. weight: math.unit(236, "lb"),
  43939. name: "Side",
  43940. image: {
  43941. source: "./media/characters/gapp/side.svg",
  43942. extra: 775/340,
  43943. bottom: 58/833
  43944. }
  43945. },
  43946. mouth: {
  43947. height: math.unit(2.98, "feet"),
  43948. name: "Mouth",
  43949. image: {
  43950. source: "./media/characters/gapp/mouth.svg"
  43951. }
  43952. },
  43953. },
  43954. [
  43955. {
  43956. name: "Normal",
  43957. height: math.unit(5 + 1/12, "feet"),
  43958. default: true
  43959. },
  43960. ]
  43961. ))
  43962. characterMakers.push(() => makeCharacter(
  43963. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43964. {
  43965. front: {
  43966. height: math.unit(6, "feet"),
  43967. name: "Front",
  43968. image: {
  43969. source: "./media/characters/persephone/front.svg",
  43970. extra: 1895/1717,
  43971. bottom: 96/1991
  43972. }
  43973. },
  43974. back: {
  43975. height: math.unit(6, "feet"),
  43976. name: "Back",
  43977. image: {
  43978. source: "./media/characters/persephone/back.svg",
  43979. extra: 1868/1679,
  43980. bottom: 26/1894
  43981. }
  43982. },
  43983. casual: {
  43984. height: math.unit(6, "feet"),
  43985. name: "Casual",
  43986. image: {
  43987. source: "./media/characters/persephone/casual.svg",
  43988. extra: 1713/1541,
  43989. bottom: 76/1789
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Human Size",
  43996. height: math.unit(6, "feet")
  43997. },
  43998. {
  43999. name: "Big Steppy",
  44000. height: math.unit(600, "meters"),
  44001. default: true
  44002. },
  44003. {
  44004. name: "Galaxy Brain",
  44005. height: math.unit(1, "zettameter")
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44011. {
  44012. front: {
  44013. height: math.unit(1.85, "meters"),
  44014. name: "Front",
  44015. image: {
  44016. source: "./media/characters/riley-foxthing/front.svg",
  44017. extra: 1495/1354,
  44018. bottom: 122/1617
  44019. }
  44020. },
  44021. frontAlt: {
  44022. height: math.unit(1.85, "meters"),
  44023. name: "Front (Alt)",
  44024. image: {
  44025. source: "./media/characters/riley-foxthing/front-alt.svg",
  44026. extra: 1572/1389,
  44027. bottom: 116/1688
  44028. }
  44029. },
  44030. },
  44031. [
  44032. {
  44033. name: "Normal Sized",
  44034. height: math.unit(1.85, "meters"),
  44035. default: true
  44036. },
  44037. {
  44038. name: "Quite Sizable",
  44039. height: math.unit(5, "meters")
  44040. },
  44041. {
  44042. name: "Rather Large",
  44043. height: math.unit(20, "meters")
  44044. },
  44045. {
  44046. name: "Macro",
  44047. height: math.unit(450, "meters")
  44048. },
  44049. {
  44050. name: "Giga",
  44051. height: math.unit(5, "km")
  44052. },
  44053. ]
  44054. ))
  44055. characterMakers.push(() => makeCharacter(
  44056. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44057. {
  44058. front: {
  44059. height: math.unit(6, "feet"),
  44060. weight: math.unit(200, "lb"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/blizzard/front.svg",
  44064. extra: 1136/990,
  44065. bottom: 136/1272
  44066. }
  44067. },
  44068. back: {
  44069. height: math.unit(6, "feet"),
  44070. weight: math.unit(200, "lb"),
  44071. name: "Back",
  44072. image: {
  44073. source: "./media/characters/blizzard/back.svg",
  44074. extra: 1175/1034,
  44075. bottom: 97/1272
  44076. }
  44077. },
  44078. sitting: {
  44079. height: math.unit(3.725, "feet"),
  44080. weight: math.unit(200, "lb"),
  44081. name: "Sitting",
  44082. image: {
  44083. source: "./media/characters/blizzard/sitting.svg",
  44084. extra: 581/485,
  44085. bottom: 90/671
  44086. }
  44087. },
  44088. frontWizard: {
  44089. height: math.unit(7.9, "feet"),
  44090. weight: math.unit(200, "lb"),
  44091. name: "Front (Wizard)",
  44092. image: {
  44093. source: "./media/characters/blizzard/front-wizard.svg"
  44094. }
  44095. },
  44096. backWizard: {
  44097. height: math.unit(7.9, "feet"),
  44098. weight: math.unit(200, "lb"),
  44099. name: "Back (Wizard)",
  44100. image: {
  44101. source: "./media/characters/blizzard/back-wizard.svg"
  44102. }
  44103. },
  44104. frontNsfw: {
  44105. height: math.unit(6, "feet"),
  44106. weight: math.unit(200, "lb"),
  44107. name: "Front (NSFW)",
  44108. image: {
  44109. source: "./media/characters/blizzard/front-nsfw.svg",
  44110. extra: 1136/990,
  44111. bottom: 136/1272
  44112. }
  44113. },
  44114. backNsfw: {
  44115. height: math.unit(6, "feet"),
  44116. weight: math.unit(200, "lb"),
  44117. name: "Back (NSFW)",
  44118. image: {
  44119. source: "./media/characters/blizzard/back-nsfw.svg",
  44120. extra: 1175/1034,
  44121. bottom: 97/1272
  44122. }
  44123. },
  44124. sittingNsfw: {
  44125. height: math.unit(3.725, "feet"),
  44126. weight: math.unit(200, "lb"),
  44127. name: "Sitting (NSFW)",
  44128. image: {
  44129. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44130. extra: 581/485,
  44131. bottom: 90/671
  44132. }
  44133. },
  44134. wizardFrontNsfw: {
  44135. height: math.unit(7.9, "feet"),
  44136. weight: math.unit(200, "lb"),
  44137. name: "Wizard (Front, NSFW)",
  44138. image: {
  44139. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(6, "feet"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(5 + 2/12, "feet"),
  44156. name: "Front",
  44157. image: {
  44158. source: "./media/characters/lumi/front.svg",
  44159. extra: 1328/1268,
  44160. bottom: 103/1431
  44161. }
  44162. },
  44163. back: {
  44164. height: math.unit(5 + 2/12, "feet"),
  44165. name: "Back",
  44166. image: {
  44167. source: "./media/characters/lumi/back.svg",
  44168. extra: 1381/1327,
  44169. bottom: 43/1424
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(5 + 2/12, "feet"),
  44177. default: true
  44178. },
  44179. ]
  44180. ))
  44181. characterMakers.push(() => makeCharacter(
  44182. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44183. {
  44184. front: {
  44185. height: math.unit(5 + 9/12, "feet"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/aliya-cotton/front.svg",
  44189. extra: 577/564,
  44190. bottom: 29/606
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(5 + 9/12, "feet"),
  44198. default: true
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44204. {
  44205. front: {
  44206. height: math.unit(2.7, "meters"),
  44207. weight: math.unit(25000, "lb"),
  44208. name: "Front",
  44209. image: {
  44210. source: "./media/characters/noah-luxray/front.svg",
  44211. extra: 1644/825,
  44212. bottom: 339/1983
  44213. }
  44214. },
  44215. side: {
  44216. height: math.unit(2.97, "meters"),
  44217. weight: math.unit(25000, "lb"),
  44218. name: "Side",
  44219. image: {
  44220. source: "./media/characters/noah-luxray/side.svg",
  44221. extra: 1319/650,
  44222. bottom: 163/1482
  44223. }
  44224. },
  44225. dick: {
  44226. height: math.unit(7.4, "feet"),
  44227. weight: math.unit(2500, "lb"),
  44228. name: "Dick",
  44229. image: {
  44230. source: "./media/characters/noah-luxray/dick.svg"
  44231. }
  44232. },
  44233. dickAlt: {
  44234. height: math.unit(10.83, "feet"),
  44235. weight: math.unit(2500, "lb"),
  44236. name: "Dick-alt",
  44237. image: {
  44238. source: "./media/characters/noah-luxray/dick-alt.svg"
  44239. }
  44240. },
  44241. },
  44242. [
  44243. {
  44244. name: "BIG",
  44245. height: math.unit(2.7, "meters"),
  44246. default: true
  44247. },
  44248. ]
  44249. ))
  44250. characterMakers.push(() => makeCharacter(
  44251. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44252. {
  44253. standing: {
  44254. height: math.unit(183, "cm"),
  44255. weight: math.unit(68, "kg"),
  44256. name: "Standing",
  44257. image: {
  44258. source: "./media/characters/arion/standing.svg",
  44259. extra: 1869/1807,
  44260. bottom: 93/1962
  44261. }
  44262. },
  44263. reclining: {
  44264. height: math.unit(70.5, "cm"),
  44265. weight: math.unit(68, "lb"),
  44266. name: "Reclining",
  44267. image: {
  44268. source: "./media/characters/arion/reclining.svg",
  44269. extra: 937/870,
  44270. bottom: 63/1000
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Colossus Size, Low",
  44277. height: math.unit(33, "meters"),
  44278. default: true
  44279. },
  44280. {
  44281. name: "Colossus Size, Mid",
  44282. height: math.unit(52, "meters")
  44283. },
  44284. {
  44285. name: "Colossus Size, High",
  44286. height: math.unit(60, "meters")
  44287. },
  44288. {
  44289. name: "Titan Size, Low",
  44290. height: math.unit(91, "meters"),
  44291. },
  44292. {
  44293. name: "Titan Size, Mid",
  44294. height: math.unit(122, "meters")
  44295. },
  44296. {
  44297. name: "Titan Size, High",
  44298. height: math.unit(162, "meters")
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44304. {
  44305. front: {
  44306. height: math.unit(53, "meters"),
  44307. name: "Front",
  44308. image: {
  44309. source: "./media/characters/stellar-marbey/front.svg",
  44310. extra: 1913/1805,
  44311. bottom: 92/2005
  44312. }
  44313. },
  44314. back: {
  44315. height: math.unit(53, "meters"),
  44316. name: "Back",
  44317. image: {
  44318. source: "./media/characters/stellar-marbey/back.svg",
  44319. extra: 1960/1851,
  44320. bottom: 28/1988
  44321. }
  44322. },
  44323. mouth: {
  44324. height: math.unit(3.5, "meters"),
  44325. name: "Mouth",
  44326. image: {
  44327. source: "./media/characters/stellar-marbey/mouth.svg"
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Macro",
  44334. height: math.unit(53, "meters"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(8 + 1/12, "feet"),
  44344. weight: math.unit(233, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/matsu/front.svg",
  44348. extra: 832/772,
  44349. bottom: 40/872
  44350. }
  44351. },
  44352. back: {
  44353. height: math.unit(8 + 1/12, "feet"),
  44354. weight: math.unit(233, "lb"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/matsu/back.svg",
  44358. extra: 839/780,
  44359. bottom: 47/886
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(8 + 1/12, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(4, "feet"),
  44376. weight: math.unit(148, "lb"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/thiz/front.svg",
  44380. extra: 1913/1748,
  44381. bottom: 62/1975
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "Normal",
  44388. height: math.unit(4, "feet"),
  44389. default: true
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44395. {
  44396. front: {
  44397. height: math.unit(7 + 6/12, "feet"),
  44398. weight: math.unit(267, "lb"),
  44399. name: "Front",
  44400. image: {
  44401. source: "./media/characters/marcel/front.svg",
  44402. extra: 1221/1096,
  44403. bottom: 76/1297
  44404. }
  44405. },
  44406. },
  44407. [
  44408. {
  44409. name: "Normal",
  44410. height: math.unit(7 + 6/12, "feet"),
  44411. default: true
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44417. {
  44418. side: {
  44419. height: math.unit(42, "meters"),
  44420. name: "Side",
  44421. image: {
  44422. source: "./media/characters/flake/side.svg",
  44423. extra: 1525/1306,
  44424. bottom: 209/1734
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(42, "meters"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44438. {
  44439. dressed: {
  44440. height: math.unit(6 + 4/12, "feet"),
  44441. weight: math.unit(520, "lb"),
  44442. name: "Dressed",
  44443. image: {
  44444. source: "./media/characters/someonne/dressed.svg",
  44445. extra: 1020/1010,
  44446. bottom: 178/1198
  44447. }
  44448. },
  44449. undressed: {
  44450. height: math.unit(6 + 4/12, "feet"),
  44451. weight: math.unit(520, "lb"),
  44452. name: "Undressed",
  44453. image: {
  44454. source: "./media/characters/someonne/undressed.svg",
  44455. extra: 1019/1014,
  44456. bottom: 169/1188
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(6 + 4/12, "feet"),
  44464. default: true
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44470. {
  44471. front: {
  44472. height: math.unit(3, "feet"),
  44473. weight: math.unit(30, "lb"),
  44474. name: "Front",
  44475. image: {
  44476. source: "./media/characters/till/front.svg",
  44477. extra: 892/823,
  44478. bottom: 55/947
  44479. }
  44480. },
  44481. },
  44482. [
  44483. {
  44484. name: "Normal",
  44485. height: math.unit(3, "feet"),
  44486. default: true
  44487. },
  44488. ]
  44489. ))
  44490. characterMakers.push(() => makeCharacter(
  44491. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44492. {
  44493. front: {
  44494. height: math.unit(9 + 8/12, "feet"),
  44495. weight: math.unit(800, "lb"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/sydney-heki/front.svg",
  44499. extra: 1360/1300,
  44500. bottom: 22/1382
  44501. }
  44502. },
  44503. back: {
  44504. height: math.unit(9 + 8/12, "feet"),
  44505. weight: math.unit(800, "lb"),
  44506. name: "Back",
  44507. image: {
  44508. source: "./media/characters/sydney-heki/back.svg",
  44509. extra: 1356/1293,
  44510. bottom: 12/1368
  44511. }
  44512. },
  44513. frontDressed: {
  44514. height: math.unit(9 + 8/12, "feet"),
  44515. weight: math.unit(800, "lb"),
  44516. name: "Front-dressed",
  44517. image: {
  44518. source: "./media/characters/sydney-heki/front-dressed.svg",
  44519. extra: 1360/1300,
  44520. bottom: 22/1382
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(9 + 8/12, "feet"),
  44528. default: true
  44529. },
  44530. {
  44531. name: "Macro",
  44532. height: math.unit(500, "feet")
  44533. },
  44534. {
  44535. name: "Megamacro",
  44536. height: math.unit(3.6, "miles")
  44537. },
  44538. ]
  44539. ))
  44540. characterMakers.push(() => makeCharacter(
  44541. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44542. {
  44543. front: {
  44544. height: math.unit(200, "cm"),
  44545. weight: math.unit(250, "lb"),
  44546. name: "Front",
  44547. image: {
  44548. source: "./media/characters/fowler-karlsson/front.svg",
  44549. extra: 897/845,
  44550. bottom: 123/1020
  44551. }
  44552. },
  44553. back: {
  44554. height: math.unit(200, "cm"),
  44555. weight: math.unit(250, "lb"),
  44556. name: "Back",
  44557. image: {
  44558. source: "./media/characters/fowler-karlsson/back.svg",
  44559. extra: 999/944,
  44560. bottom: 26/1025
  44561. }
  44562. },
  44563. dick: {
  44564. height: math.unit(1.92, "feet"),
  44565. weight: math.unit(150, "lb"),
  44566. name: "Dick",
  44567. image: {
  44568. source: "./media/characters/fowler-karlsson/dick.svg"
  44569. }
  44570. },
  44571. },
  44572. [
  44573. {
  44574. name: "Normal",
  44575. height: math.unit(200, "cm"),
  44576. default: true
  44577. },
  44578. {
  44579. name: "Smaller Macro",
  44580. height: math.unit(90, "m")
  44581. },
  44582. {
  44583. name: "Macro",
  44584. height: math.unit(150, "m")
  44585. },
  44586. {
  44587. name: "Bigger Macro",
  44588. height: math.unit(300, "m")
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44594. {
  44595. side: {
  44596. height: math.unit(8 + 2/12, "feet"),
  44597. weight: math.unit(1, "tonne"),
  44598. name: "Side",
  44599. image: {
  44600. source: "./media/characters/rylide/side.svg",
  44601. extra: 1318/1034,
  44602. bottom: 106/1424
  44603. }
  44604. },
  44605. sitting: {
  44606. height: math.unit(303, "cm"),
  44607. weight: math.unit(1, "tonne"),
  44608. name: "Sitting",
  44609. image: {
  44610. source: "./media/characters/rylide/sitting.svg",
  44611. extra: 1303/1103,
  44612. bottom: 36/1339
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(8 + 2/12, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(5 + 10/12, "feet"),
  44629. weight: math.unit(160, "lb"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/pudask/front.svg",
  44633. extra: 1616/1590,
  44634. bottom: 161/1777
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Ferret Height",
  44641. height: math.unit(2 + 5/12, "feet")
  44642. },
  44643. {
  44644. name: "Canon Height",
  44645. height: math.unit(5 + 10/12, "feet"),
  44646. default: true
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44652. {
  44653. front: {
  44654. height: math.unit(3 + 6/12, "feet"),
  44655. weight: math.unit(60, "lb"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/ramita/front.svg",
  44659. extra: 1402/1232,
  44660. bottom: 62/1464
  44661. }
  44662. },
  44663. dressed: {
  44664. height: math.unit(3 + 6/12, "feet"),
  44665. weight: math.unit(60, "lb"),
  44666. name: "Dressed",
  44667. image: {
  44668. source: "./media/characters/ramita/dressed.svg",
  44669. extra: 1534/1249,
  44670. bottom: 50/1584
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(3 + 6/12, "feet"),
  44678. default: true
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44684. {
  44685. front: {
  44686. height: math.unit(8, "feet"),
  44687. name: "Front",
  44688. image: {
  44689. source: "./media/characters/ark/front.svg",
  44690. extra: 772/693,
  44691. bottom: 45/817
  44692. }
  44693. },
  44694. },
  44695. [
  44696. {
  44697. name: "Normal",
  44698. height: math.unit(8, "feet"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44705. {
  44706. front: {
  44707. height: math.unit(6, "feet"),
  44708. weight: math.unit(250, "lb"),
  44709. volume: math.unit(5/8, "gallons"),
  44710. name: "Front",
  44711. image: {
  44712. source: "./media/characters/ludwig-horn/front.svg",
  44713. extra: 1782/1635,
  44714. bottom: 96/1878
  44715. }
  44716. },
  44717. back: {
  44718. height: math.unit(6, "feet"),
  44719. weight: math.unit(250, "lb"),
  44720. volume: math.unit(5/8, "gallons"),
  44721. name: "Back",
  44722. image: {
  44723. source: "./media/characters/ludwig-horn/back.svg",
  44724. extra: 1874/1729,
  44725. bottom: 27/1901
  44726. }
  44727. },
  44728. dick: {
  44729. height: math.unit(1.05, "feet"),
  44730. weight: math.unit(15, "lb"),
  44731. volume: math.unit(5/8, "gallons"),
  44732. name: "Dick",
  44733. image: {
  44734. source: "./media/characters/ludwig-horn/dick.svg"
  44735. }
  44736. },
  44737. },
  44738. [
  44739. {
  44740. name: "Small",
  44741. height: math.unit(6, "feet")
  44742. },
  44743. {
  44744. name: "Typical",
  44745. height: math.unit(12, "feet"),
  44746. default: true
  44747. },
  44748. {
  44749. name: "Building",
  44750. height: math.unit(80, "feet")
  44751. },
  44752. {
  44753. name: "Town",
  44754. height: math.unit(800, "feet")
  44755. },
  44756. {
  44757. name: "Kingdom",
  44758. height: math.unit(80000, "feet")
  44759. },
  44760. {
  44761. name: "Planet",
  44762. height: math.unit(8000000, "feet")
  44763. },
  44764. {
  44765. name: "Universe",
  44766. height: math.unit(8000000000, "feet")
  44767. },
  44768. {
  44769. name: "Transcended",
  44770. height: math.unit(8e27, "feet")
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44776. {
  44777. front: {
  44778. height: math.unit(5, "feet"),
  44779. weight: math.unit(50, "kg"),
  44780. name: "Front",
  44781. image: {
  44782. source: "./media/characters/biot-avery/front.svg",
  44783. extra: 1295/1232,
  44784. bottom: 86/1381
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(5, "feet"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(6, "feet"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/kitsune-kiro/front.svg",
  44804. extra: 1270/1158,
  44805. bottom: 42/1312
  44806. }
  44807. },
  44808. frontAlt: {
  44809. height: math.unit(6, "feet"),
  44810. name: "Front-alt",
  44811. image: {
  44812. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44813. extra: 1130/1081,
  44814. bottom: 36/1166
  44815. }
  44816. },
  44817. },
  44818. [
  44819. {
  44820. name: "Smol",
  44821. height: math.unit(3, "feet")
  44822. },
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(6, "feet"),
  44826. default: true
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44832. {
  44833. front: {
  44834. height: math.unit(6, "feet"),
  44835. weight: math.unit(125, "lb"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/jack-thatcher/front.svg",
  44839. extra: 1474/1370,
  44840. bottom: 26/1500
  44841. }
  44842. },
  44843. back: {
  44844. height: math.unit(6, "feet"),
  44845. weight: math.unit(125, "lb"),
  44846. name: "Back",
  44847. image: {
  44848. source: "./media/characters/jack-thatcher/back.svg",
  44849. extra: 1489/1384,
  44850. bottom: 18/1507
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Normal",
  44857. height: math.unit(6, "feet"),
  44858. default: true
  44859. },
  44860. {
  44861. name: "Macro",
  44862. height: math.unit(75, "feet")
  44863. },
  44864. {
  44865. name: "Macro-er",
  44866. height: math.unit(250, "feet")
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(7, "feet"),
  44875. weight: math.unit(110, "kg"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/max-hyper/front.svg",
  44879. extra: 1969/1881,
  44880. bottom: 49/2018
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Normal",
  44887. height: math.unit(7, "feet"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44894. {
  44895. front: {
  44896. height: math.unit(5 + 5/12, "feet"),
  44897. weight: math.unit(160, "lb"),
  44898. name: "Front",
  44899. image: {
  44900. source: "./media/characters/spook/front.svg",
  44901. extra: 794/791,
  44902. bottom: 54/848
  44903. }
  44904. },
  44905. back: {
  44906. height: math.unit(5 + 5/12, "feet"),
  44907. weight: math.unit(160, "lb"),
  44908. name: "Back",
  44909. image: {
  44910. source: "./media/characters/spook/back.svg",
  44911. extra: 812/798,
  44912. bottom: 32/844
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(5 + 5/12, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(18, "feet"),
  44929. name: "Front",
  44930. image: {
  44931. source: "./media/characters/xeaduulix/front.svg",
  44932. extra: 1380/1166,
  44933. bottom: 110/1490
  44934. }
  44935. },
  44936. back: {
  44937. height: math.unit(18, "feet"),
  44938. name: "Back",
  44939. image: {
  44940. source: "./media/characters/xeaduulix/back.svg",
  44941. extra: 1592/1170,
  44942. bottom: 128/1720
  44943. }
  44944. },
  44945. frontNsfw: {
  44946. height: math.unit(18, "feet"),
  44947. name: "Front (NSFW)",
  44948. image: {
  44949. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44950. extra: 1380/1166,
  44951. bottom: 110/1490
  44952. }
  44953. },
  44954. backNsfw: {
  44955. height: math.unit(18, "feet"),
  44956. name: "Back (NSFW)",
  44957. image: {
  44958. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44959. extra: 1592/1170,
  44960. bottom: 128/1720
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(18, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44974. {
  44975. spreadWings: {
  44976. height: math.unit(20, "feet"),
  44977. name: "Spread Wings",
  44978. image: {
  44979. source: "./media/characters/fledge/spread-wings.svg",
  44980. extra: 693/635,
  44981. bottom: 26/719
  44982. }
  44983. },
  44984. front: {
  44985. height: math.unit(20, "feet"),
  44986. name: "Front",
  44987. image: {
  44988. source: "./media/characters/fledge/front.svg",
  44989. extra: 684/637,
  44990. bottom: 18/702
  44991. }
  44992. },
  44993. frontAlt: {
  44994. height: math.unit(20, "feet"),
  44995. name: "Front (Alt)",
  44996. image: {
  44997. source: "./media/characters/fledge/front-alt.svg",
  44998. extra: 708/664,
  44999. bottom: 13/721
  45000. }
  45001. },
  45002. back: {
  45003. height: math.unit(20, "feet"),
  45004. name: "Back",
  45005. image: {
  45006. source: "./media/characters/fledge/back.svg",
  45007. extra: 718/634,
  45008. bottom: 22/740
  45009. }
  45010. },
  45011. head: {
  45012. height: math.unit(5.55, "feet"),
  45013. name: "Head",
  45014. image: {
  45015. source: "./media/characters/fledge/head.svg"
  45016. }
  45017. },
  45018. headAlt: {
  45019. height: math.unit(5.1, "feet"),
  45020. name: "Head (Alt)",
  45021. image: {
  45022. source: "./media/characters/fledge/head-alt.svg"
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Small",
  45029. height: math.unit(6 + 2/12, "feet")
  45030. },
  45031. {
  45032. name: "Big",
  45033. height: math.unit(20, "feet"),
  45034. default: true
  45035. },
  45036. {
  45037. name: "Giant",
  45038. height: math.unit(100, "feet")
  45039. },
  45040. {
  45041. name: "Macro",
  45042. height: math.unit(200, "feet")
  45043. },
  45044. ]
  45045. ))
  45046. characterMakers.push(() => makeCharacter(
  45047. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45048. {
  45049. front: {
  45050. height: math.unit(1, "meter"),
  45051. name: "Front",
  45052. image: {
  45053. source: "./media/characters/atlas-morenai/front.svg",
  45054. extra: 1275/1043,
  45055. bottom: 19/1294
  45056. }
  45057. },
  45058. back: {
  45059. height: math.unit(1, "meter"),
  45060. name: "Back",
  45061. image: {
  45062. source: "./media/characters/atlas-morenai/back.svg",
  45063. extra: 1141/1001,
  45064. bottom: 25/1166
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Normal",
  45071. height: math.unit(1, "meter"),
  45072. default: true
  45073. },
  45074. {
  45075. name: "Magic-Infused",
  45076. height: math.unit(5, "meters")
  45077. },
  45078. ]
  45079. ))
  45080. characterMakers.push(() => makeCharacter(
  45081. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45082. {
  45083. front: {
  45084. height: math.unit(5, "meters"),
  45085. name: "Front",
  45086. image: {
  45087. source: "./media/characters/cintia/front.svg",
  45088. extra: 1312/1228,
  45089. bottom: 38/1350
  45090. }
  45091. },
  45092. back: {
  45093. height: math.unit(5, "meters"),
  45094. name: "Back",
  45095. image: {
  45096. source: "./media/characters/cintia/back.svg",
  45097. extra: 1260/1166,
  45098. bottom: 98/1358
  45099. }
  45100. },
  45101. frontDick: {
  45102. height: math.unit(5, "meters"),
  45103. name: "Front (Dick)",
  45104. image: {
  45105. source: "./media/characters/cintia/front-dick.svg",
  45106. extra: 1312/1228,
  45107. bottom: 38/1350
  45108. }
  45109. },
  45110. backDick: {
  45111. height: math.unit(5, "meters"),
  45112. name: "Back (Dick)",
  45113. image: {
  45114. source: "./media/characters/cintia/back-dick.svg",
  45115. extra: 1260/1166,
  45116. bottom: 98/1358
  45117. }
  45118. },
  45119. bust: {
  45120. height: math.unit(1.97, "meters"),
  45121. name: "Bust",
  45122. image: {
  45123. source: "./media/characters/cintia/bust.svg",
  45124. extra: 617/565,
  45125. bottom: 0/617
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(5, "meters"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45139. {
  45140. side: {
  45141. height: math.unit(100, "feet"),
  45142. name: "Side",
  45143. image: {
  45144. source: "./media/characters/denora/side.svg",
  45145. extra: 875/803,
  45146. bottom: 9/884
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Standard",
  45153. height: math.unit(100, "feet"),
  45154. default: true
  45155. },
  45156. {
  45157. name: "Grand",
  45158. height: math.unit(1000, "feet")
  45159. },
  45160. {
  45161. name: "Conquering",
  45162. height: math.unit(10000, "feet")
  45163. },
  45164. ]
  45165. ))
  45166. characterMakers.push(() => makeCharacter(
  45167. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45168. {
  45169. dressed: {
  45170. height: math.unit(8 + 5/12, "feet"),
  45171. weight: math.unit(700, "lb"),
  45172. name: "Dressed",
  45173. image: {
  45174. source: "./media/characters/kiva/dressed.svg",
  45175. extra: 1102/1055,
  45176. bottom: 60/1162
  45177. }
  45178. },
  45179. nude: {
  45180. height: math.unit(8 + 5/12, "feet"),
  45181. weight: math.unit(700, "lb"),
  45182. name: "Nude",
  45183. image: {
  45184. source: "./media/characters/kiva/nude.svg",
  45185. extra: 1102/1055,
  45186. bottom: 60/1162
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Base Height",
  45193. height: math.unit(8 + 5/12, "feet"),
  45194. default: true
  45195. },
  45196. {
  45197. name: "Macro",
  45198. height: math.unit(100, "feet")
  45199. },
  45200. {
  45201. name: "Max",
  45202. height: math.unit(3280, "feet")
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45208. {
  45209. front: {
  45210. height: math.unit(6 + 8/12, "feet"),
  45211. weight: math.unit(250, "lb"),
  45212. name: "Front",
  45213. image: {
  45214. source: "./media/characters/ztragon/front.svg",
  45215. extra: 1825/1684,
  45216. bottom: 98/1923
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(6 + 8/12, "feet"),
  45224. default: true
  45225. },
  45226. {
  45227. name: "Macro",
  45228. height: math.unit(80, "feet")
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45234. {
  45235. front: {
  45236. height: math.unit(10.4, "feet"),
  45237. weight: math.unit(2, "tons"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/yesenia/front.svg",
  45241. extra: 1479/1474,
  45242. bottom: 233/1712
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(10.4, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45256. {
  45257. normal: {
  45258. height: math.unit(6 + 1/12, "feet"),
  45259. weight: math.unit(180, "lb"),
  45260. name: "Normal",
  45261. image: {
  45262. source: "./media/characters/leanne-lycheborne/normal.svg",
  45263. extra: 1748/1660,
  45264. bottom: 98/1846
  45265. }
  45266. },
  45267. were: {
  45268. height: math.unit(12, "feet"),
  45269. weight: math.unit(1600, "lb"),
  45270. name: "Were",
  45271. image: {
  45272. source: "./media/characters/leanne-lycheborne/were.svg",
  45273. extra: 1485/1432,
  45274. bottom: 66/1551
  45275. }
  45276. },
  45277. },
  45278. [
  45279. {
  45280. name: "Normal",
  45281. height: math.unit(6 + 1/12, "feet"),
  45282. default: true
  45283. },
  45284. ]
  45285. ))
  45286. characterMakers.push(() => makeCharacter(
  45287. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45288. {
  45289. side: {
  45290. height: math.unit(13, "feet"),
  45291. name: "Side",
  45292. image: {
  45293. source: "./media/characters/kira-tyler/side.svg",
  45294. extra: 693/393,
  45295. bottom: 58/751
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Normal",
  45302. height: math.unit(13, "feet"),
  45303. default: true
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(10.3, "feet"),
  45312. weight: math.unit(150, "lb"),
  45313. name: "Front",
  45314. image: {
  45315. source: "./media/characters/blaze/front.svg",
  45316. extra: 1378/1286,
  45317. bottom: 172/1550
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(10.3, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45331. {
  45332. side: {
  45333. height: math.unit(2, "meters"),
  45334. weight: math.unit(400, "kg"),
  45335. name: "Side",
  45336. image: {
  45337. source: "./media/characters/anu/side.svg",
  45338. extra: 506/394,
  45339. bottom: 18/524
  45340. }
  45341. },
  45342. },
  45343. [
  45344. {
  45345. name: "Humanoid",
  45346. height: math.unit(2, "meters")
  45347. },
  45348. {
  45349. name: "Normal",
  45350. height: math.unit(5, "meters"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45357. {
  45358. front: {
  45359. height: math.unit(5 + 5/12, "feet"),
  45360. weight: math.unit(170, "lb"),
  45361. name: "Front",
  45362. image: {
  45363. source: "./media/characters/synx-the-lynx/front.svg",
  45364. extra: 1893/1745,
  45365. bottom: 17/1910
  45366. }
  45367. },
  45368. side: {
  45369. height: math.unit(5 + 5/12, "feet"),
  45370. weight: math.unit(170, "lb"),
  45371. name: "Side",
  45372. image: {
  45373. source: "./media/characters/synx-the-lynx/side.svg",
  45374. extra: 1884/1740,
  45375. bottom: 39/1923
  45376. }
  45377. },
  45378. back: {
  45379. height: math.unit(5 + 5/12, "feet"),
  45380. weight: math.unit(170, "lb"),
  45381. name: "Back",
  45382. image: {
  45383. source: "./media/characters/synx-the-lynx/back.svg",
  45384. extra: 1903/1755,
  45385. bottom: 14/1917
  45386. }
  45387. },
  45388. },
  45389. [
  45390. {
  45391. name: "Normal",
  45392. height: math.unit(5 + 5/12, "feet"),
  45393. default: true
  45394. },
  45395. ]
  45396. ))
  45397. characterMakers.push(() => makeCharacter(
  45398. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45399. {
  45400. back: {
  45401. height: math.unit(15, "feet"),
  45402. name: "Back",
  45403. image: {
  45404. source: "./media/characters/nadezda-fex/back.svg",
  45405. extra: 1695/1481,
  45406. bottom: 25/1720
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(15, "feet"),
  45414. default: true
  45415. },
  45416. {
  45417. name: "Macro",
  45418. height: math.unit(2.5, "miles")
  45419. },
  45420. {
  45421. name: "Goddess",
  45422. height: math.unit(2, "multiverses")
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45428. {
  45429. front: {
  45430. height: math.unit(216, "cm"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/lev/front.svg",
  45434. extra: 1728/1670,
  45435. bottom: 82/1810
  45436. }
  45437. },
  45438. back: {
  45439. height: math.unit(216, "cm"),
  45440. name: "Back",
  45441. image: {
  45442. source: "./media/characters/lev/back.svg",
  45443. extra: 1738/1675,
  45444. bottom: 24/1762
  45445. }
  45446. },
  45447. dressed: {
  45448. height: math.unit(216, "cm"),
  45449. name: "Dressed",
  45450. image: {
  45451. source: "./media/characters/lev/dressed.svg",
  45452. extra: 1397/1351,
  45453. bottom: 73/1470
  45454. }
  45455. },
  45456. head: {
  45457. height: math.unit(0.51, "meter"),
  45458. name: "Head",
  45459. image: {
  45460. source: "./media/characters/lev/head.svg"
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(216, "cm"),
  45468. default: true
  45469. },
  45470. {
  45471. name: "Relatively Macro",
  45472. height: math.unit(80, "meters")
  45473. },
  45474. {
  45475. name: "Megamacro",
  45476. height: math.unit(21600, "meters")
  45477. },
  45478. {
  45479. name: "Megamacro+",
  45480. height: math.unit(64800, "meters")
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45486. {
  45487. front: {
  45488. height: math.unit(2, "meters"),
  45489. weight: math.unit(80, "kg"),
  45490. name: "Front",
  45491. image: {
  45492. source: "./media/characters/moka/front.svg",
  45493. extra: 1337/1255,
  45494. bottom: 58/1395
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Micro",
  45501. height: math.unit(15, "cm")
  45502. },
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(2, "meters"),
  45506. default: true
  45507. },
  45508. {
  45509. name: "Macro",
  45510. height: math.unit(20, "meters"),
  45511. },
  45512. ]
  45513. ))
  45514. characterMakers.push(() => makeCharacter(
  45515. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45516. {
  45517. front: {
  45518. height: math.unit(9, "feet"),
  45519. weight: math.unit(240, "lb"),
  45520. name: "Front",
  45521. image: {
  45522. source: "./media/characters/kuzco/front.svg",
  45523. extra: 1593/1487,
  45524. bottom: 32/1625
  45525. }
  45526. },
  45527. side: {
  45528. height: math.unit(9, "feet"),
  45529. weight: math.unit(240, "lb"),
  45530. name: "Side",
  45531. image: {
  45532. source: "./media/characters/kuzco/side.svg",
  45533. extra: 1575/1485,
  45534. bottom: 30/1605
  45535. }
  45536. },
  45537. back: {
  45538. height: math.unit(9, "feet"),
  45539. weight: math.unit(240, "lb"),
  45540. name: "Back",
  45541. image: {
  45542. source: "./media/characters/kuzco/back.svg",
  45543. extra: 1603/1514,
  45544. bottom: 14/1617
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(9, "feet"),
  45552. default: true
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45558. {
  45559. side: {
  45560. height: math.unit(2, "meters"),
  45561. weight: math.unit(300, "kg"),
  45562. name: "Side",
  45563. image: {
  45564. source: "./media/characters/ceruleus/side.svg",
  45565. extra: 1068/974,
  45566. bottom: 126/1194
  45567. }
  45568. },
  45569. },
  45570. [
  45571. {
  45572. name: "Normal",
  45573. height: math.unit(16, "meters"),
  45574. default: true
  45575. },
  45576. ]
  45577. ))
  45578. characterMakers.push(() => makeCharacter(
  45579. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45580. {
  45581. front: {
  45582. height: math.unit(9, "feet"),
  45583. weight: math.unit(500, "kg"),
  45584. name: "Front",
  45585. image: {
  45586. source: "./media/characters/acouya/front.svg",
  45587. extra: 1660/1473,
  45588. bottom: 28/1688
  45589. }
  45590. },
  45591. },
  45592. [
  45593. {
  45594. name: "Normal",
  45595. height: math.unit(9, "feet"),
  45596. default: true
  45597. },
  45598. ]
  45599. ))
  45600. characterMakers.push(() => makeCharacter(
  45601. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45602. {
  45603. front: {
  45604. height: math.unit(5 + 6/12, "feet"),
  45605. weight: math.unit(195, "lb"),
  45606. name: "Front",
  45607. image: {
  45608. source: "./media/characters/vant/front.svg",
  45609. extra: 1396/1320,
  45610. bottom: 20/1416
  45611. }
  45612. },
  45613. back: {
  45614. height: math.unit(5 + 6/12, "feet"),
  45615. weight: math.unit(195, "lb"),
  45616. name: "Back",
  45617. image: {
  45618. source: "./media/characters/vant/back.svg",
  45619. extra: 1396/1320,
  45620. bottom: 20/1416
  45621. }
  45622. },
  45623. maw: {
  45624. height: math.unit(0.75, "feet"),
  45625. name: "Maw",
  45626. image: {
  45627. source: "./media/characters/vant/maw.svg"
  45628. }
  45629. },
  45630. paw: {
  45631. height: math.unit(1.07, "feet"),
  45632. name: "Paw",
  45633. image: {
  45634. source: "./media/characters/vant/paw.svg"
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Micro",
  45641. height: math.unit(0.25, "inches")
  45642. },
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(5 + 6/12, "feet"),
  45646. default: true
  45647. },
  45648. {
  45649. name: "Macro",
  45650. height: math.unit(75, "feet")
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(30, "meters"),
  45659. weight: math.unit(363, "tons"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/ahra/front.svg",
  45663. extra: 1914/1814,
  45664. bottom: 46/1960
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Macro",
  45671. height: math.unit(30, "meters"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45678. {
  45679. undressed: {
  45680. height: math.unit(2, "m"),
  45681. weight: math.unit(250, "kg"),
  45682. name: "Undressed",
  45683. image: {
  45684. source: "./media/characters/coriander/undressed.svg",
  45685. extra: 1757/1606,
  45686. bottom: 107/1864
  45687. }
  45688. },
  45689. dressed: {
  45690. height: math.unit(2, "m"),
  45691. weight: math.unit(250, "kg"),
  45692. name: "Dressed",
  45693. image: {
  45694. source: "./media/characters/coriander/dressed.svg",
  45695. extra: 1757/1606,
  45696. bottom: 107/1864
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(4, "meters"),
  45704. default: true
  45705. },
  45706. {
  45707. name: "XL",
  45708. height: math.unit(6, "meters")
  45709. },
  45710. {
  45711. name: "XXL",
  45712. height: math.unit(8, "meters")
  45713. },
  45714. ]
  45715. ))
  45716. characterMakers.push(() => makeCharacter(
  45717. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45718. {
  45719. front: {
  45720. height: math.unit(6, "feet"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/syrinx/front.svg",
  45724. extra: 1557/1259,
  45725. bottom: 171/1728
  45726. }
  45727. },
  45728. },
  45729. [
  45730. {
  45731. name: "Normal",
  45732. height: math.unit(6 + 3/12, "feet"),
  45733. default: true
  45734. },
  45735. ]
  45736. ))
  45737. characterMakers.push(() => makeCharacter(
  45738. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45739. {
  45740. front: {
  45741. height: math.unit(11 + 6/12, "feet"),
  45742. weight: math.unit(1.5, "tons"),
  45743. name: "Front",
  45744. image: {
  45745. source: "./media/characters/bor/front.svg",
  45746. extra: 1189/1109,
  45747. bottom: 170/1359
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Normal",
  45754. height: math.unit(11 + 6/12, "feet"),
  45755. default: true
  45756. },
  45757. {
  45758. name: "Macro",
  45759. height: math.unit(32 + 9/12, "feet")
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45765. {
  45766. anthro: {
  45767. height: math.unit(9, "feet"),
  45768. weight: math.unit(2076, "lb"),
  45769. name: "Anthro",
  45770. image: {
  45771. source: "./media/characters/abacus/anthro.svg",
  45772. extra: 1540/1494,
  45773. bottom: 233/1773
  45774. }
  45775. },
  45776. pigeon: {
  45777. height: math.unit(1, "feet"),
  45778. name: "Pigeon",
  45779. image: {
  45780. source: "./media/characters/abacus/pigeon.svg",
  45781. extra: 528/525,
  45782. bottom: 46/574
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(9, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45796. {
  45797. side: {
  45798. height: math.unit(6, "feet"),
  45799. name: "Side",
  45800. image: {
  45801. source: "./media/characters/delkhan/side.svg",
  45802. extra: 1884/1786,
  45803. bottom: 308/2192
  45804. }
  45805. },
  45806. head: {
  45807. height: math.unit(3.38, "feet"),
  45808. name: "Head",
  45809. image: {
  45810. source: "./media/characters/delkhan/head.svg"
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(72, "feet"),
  45818. default: true
  45819. },
  45820. {
  45821. name: "Giant",
  45822. height: math.unit(172, "feet")
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45828. {
  45829. standing: {
  45830. height: math.unit(6, "feet"),
  45831. name: "Standing",
  45832. image: {
  45833. source: "./media/characters/euchidat/standing.svg",
  45834. extra: 1612/1553,
  45835. bottom: 116/1728
  45836. }
  45837. },
  45838. leaning: {
  45839. height: math.unit(6, "feet"),
  45840. name: "Leaning",
  45841. image: {
  45842. source: "./media/characters/euchidat/leaning.svg",
  45843. extra: 1719/1674,
  45844. bottom: 27/1746
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(175, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Megamacro",
  45856. height: math.unit(190, "miles")
  45857. },
  45858. {
  45859. name: "Gigamacro",
  45860. height: math.unit(190000, "miles")
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(6, "feet"),
  45869. weight: math.unit(150, "lb"),
  45870. name: "Front",
  45871. image: {
  45872. source: "./media/characters/rebecca-stack/front.svg",
  45873. extra: 1256/1201,
  45874. bottom: 18/1274
  45875. }
  45876. },
  45877. },
  45878. [
  45879. {
  45880. name: "Normal",
  45881. height: math.unit(5 + 8/12, "feet"),
  45882. default: true
  45883. },
  45884. {
  45885. name: "Demolitionist",
  45886. height: math.unit(200, "feet")
  45887. },
  45888. {
  45889. name: "Out of Control",
  45890. height: math.unit(2, "miles")
  45891. },
  45892. {
  45893. name: "Giga",
  45894. height: math.unit(7200, "miles")
  45895. },
  45896. ]
  45897. ))
  45898. characterMakers.push(() => makeCharacter(
  45899. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45900. {
  45901. front: {
  45902. height: math.unit(6, "feet"),
  45903. weight: math.unit(150, "lb"),
  45904. name: "Front",
  45905. image: {
  45906. source: "./media/characters/jenny-cartwright/front.svg",
  45907. extra: 1384/1376,
  45908. bottom: 58/1442
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(6 + 7/12, "feet"),
  45916. default: true
  45917. },
  45918. {
  45919. name: "Librarian",
  45920. height: math.unit(55, "feet")
  45921. },
  45922. {
  45923. name: "Sightseer",
  45924. height: math.unit(50, "miles")
  45925. },
  45926. {
  45927. name: "Giga",
  45928. height: math.unit(30000, "miles")
  45929. },
  45930. ]
  45931. ))
  45932. characterMakers.push(() => makeCharacter(
  45933. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45934. {
  45935. nude: {
  45936. height: math.unit(8, "feet"),
  45937. weight: math.unit(225, "lb"),
  45938. name: "Nude",
  45939. image: {
  45940. source: "./media/characters/marvy/nude.svg",
  45941. extra: 1900/1683,
  45942. bottom: 89/1989
  45943. }
  45944. },
  45945. dressed: {
  45946. height: math.unit(8, "feet"),
  45947. weight: math.unit(225, "lb"),
  45948. name: "Dressed",
  45949. image: {
  45950. source: "./media/characters/marvy/dressed.svg",
  45951. extra: 1900/1683,
  45952. bottom: 89/1989
  45953. }
  45954. },
  45955. head: {
  45956. height: math.unit(2.85, "feet"),
  45957. name: "Head",
  45958. image: {
  45959. source: "./media/characters/marvy/head.svg"
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(8, "feet"),
  45967. default: true
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45973. {
  45974. front: {
  45975. height: math.unit(8, "feet"),
  45976. weight: math.unit(250, "lb"),
  45977. name: "Front",
  45978. image: {
  45979. source: "./media/characters/leah/front.svg",
  45980. extra: 1257/1149,
  45981. bottom: 109/1366
  45982. }
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Normal",
  45988. height: math.unit(8, "feet"),
  45989. default: true
  45990. },
  45991. {
  45992. name: "Minimacro",
  45993. height: math.unit(40, "feet")
  45994. },
  45995. {
  45996. name: "Macro",
  45997. height: math.unit(124, "feet")
  45998. },
  45999. {
  46000. name: "Megamacro",
  46001. height: math.unit(850, "feet")
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46007. {
  46008. side: {
  46009. height: math.unit(13 + 6/12, "feet"),
  46010. weight: math.unit(3200, "lb"),
  46011. name: "Side",
  46012. image: {
  46013. source: "./media/characters/alvir/side.svg",
  46014. extra: 896/589,
  46015. bottom: 26/922
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(13 + 6/12, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46029. {
  46030. front: {
  46031. height: math.unit(5 + 4/12, "feet"),
  46032. weight: math.unit(236, "lb"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/zaina-khalil/front.svg",
  46036. extra: 1533/1485,
  46037. bottom: 94/1627
  46038. }
  46039. },
  46040. side: {
  46041. height: math.unit(5 + 4/12, "feet"),
  46042. weight: math.unit(236, "lb"),
  46043. name: "Side",
  46044. image: {
  46045. source: "./media/characters/zaina-khalil/side.svg",
  46046. extra: 1537/1498,
  46047. bottom: 66/1603
  46048. }
  46049. },
  46050. back: {
  46051. height: math.unit(5 + 4/12, "feet"),
  46052. weight: math.unit(236, "lb"),
  46053. name: "Back",
  46054. image: {
  46055. source: "./media/characters/zaina-khalil/back.svg",
  46056. extra: 1546/1494,
  46057. bottom: 89/1635
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "Normal",
  46064. height: math.unit(5 + 4/12, "feet"),
  46065. default: true
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46071. {
  46072. side: {
  46073. height: math.unit(12, "feet"),
  46074. weight: math.unit(4000, "lb"),
  46075. name: "Side",
  46076. image: {
  46077. source: "./media/characters/terry/side.svg",
  46078. extra: 1518/1439,
  46079. bottom: 149/1667
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(12, "feet"),
  46087. default: true
  46088. },
  46089. ]
  46090. ))
  46091. characterMakers.push(() => makeCharacter(
  46092. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46093. {
  46094. front: {
  46095. height: math.unit(12, "feet"),
  46096. weight: math.unit(1500, "lb"),
  46097. name: "Front",
  46098. image: {
  46099. source: "./media/characters/kahea/front.svg",
  46100. extra: 1722/1617,
  46101. bottom: 179/1901
  46102. }
  46103. },
  46104. },
  46105. [
  46106. {
  46107. name: "Normal",
  46108. height: math.unit(12, "feet"),
  46109. default: true
  46110. },
  46111. ]
  46112. ))
  46113. characterMakers.push(() => makeCharacter(
  46114. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46115. {
  46116. demonFront: {
  46117. height: math.unit(36, "feet"),
  46118. name: "Front",
  46119. image: {
  46120. source: "./media/characters/alex-xuria/demon-front.svg",
  46121. extra: 1705/1673,
  46122. bottom: 198/1903
  46123. },
  46124. form: "demon",
  46125. default: true
  46126. },
  46127. demonBack: {
  46128. height: math.unit(36, "feet"),
  46129. name: "Back",
  46130. image: {
  46131. source: "./media/characters/alex-xuria/demon-back.svg",
  46132. extra: 1725/1693,
  46133. bottom: 70/1795
  46134. },
  46135. form: "demon"
  46136. },
  46137. demonHead: {
  46138. height: math.unit(2.14, "meters"),
  46139. name: "Head",
  46140. image: {
  46141. source: "./media/characters/alex-xuria/demon-head.svg"
  46142. },
  46143. form: "demon"
  46144. },
  46145. demonHand: {
  46146. height: math.unit(1.61, "meters"),
  46147. name: "Hand",
  46148. image: {
  46149. source: "./media/characters/alex-xuria/demon-hand.svg"
  46150. },
  46151. form: "demon"
  46152. },
  46153. demonPaw: {
  46154. height: math.unit(1.35, "meters"),
  46155. name: "Paw",
  46156. image: {
  46157. source: "./media/characters/alex-xuria/demon-paw.svg"
  46158. },
  46159. form: "demon"
  46160. },
  46161. demonFoot: {
  46162. height: math.unit(2.2, "meters"),
  46163. name: "Foot",
  46164. image: {
  46165. source: "./media/characters/alex-xuria/demon-foot.svg"
  46166. },
  46167. form: "demon"
  46168. },
  46169. demonCock: {
  46170. height: math.unit(1.74, "meters"),
  46171. name: "Cock",
  46172. image: {
  46173. source: "./media/characters/alex-xuria/demon-cock.svg"
  46174. },
  46175. form: "demon"
  46176. },
  46177. demonTailClosed: {
  46178. height: math.unit(1.47, "meters"),
  46179. name: "Tail (Closed)",
  46180. image: {
  46181. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46182. },
  46183. form: "demon"
  46184. },
  46185. demonTailOpen: {
  46186. height: math.unit(2.85, "meters"),
  46187. name: "Tail (Open)",
  46188. image: {
  46189. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46190. },
  46191. form: "demon"
  46192. },
  46193. incubusFront: {
  46194. height: math.unit(12, "feet"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/alex-xuria/incubus-front.svg",
  46198. extra: 1754/1677,
  46199. bottom: 125/1879
  46200. },
  46201. form: "incubus",
  46202. default: true
  46203. },
  46204. incubusBack: {
  46205. height: math.unit(12, "feet"),
  46206. name: "Back",
  46207. image: {
  46208. source: "./media/characters/alex-xuria/incubus-back.svg",
  46209. extra: 1702/1647,
  46210. bottom: 30/1732
  46211. },
  46212. form: "incubus"
  46213. },
  46214. incubusHead: {
  46215. height: math.unit(3.45, "feet"),
  46216. name: "Head",
  46217. image: {
  46218. source: "./media/characters/alex-xuria/incubus-head.svg"
  46219. },
  46220. form: "incubus"
  46221. },
  46222. rabbitFront: {
  46223. height: math.unit(6, "feet"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46227. extra: 1369/1349,
  46228. bottom: 45/1414
  46229. },
  46230. form: "rabbit",
  46231. default: true
  46232. },
  46233. rabbitSide: {
  46234. height: math.unit(6, "feet"),
  46235. name: "Side",
  46236. image: {
  46237. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46238. extra: 1370/1356,
  46239. bottom: 37/1407
  46240. },
  46241. form: "rabbit"
  46242. },
  46243. rabbitBack: {
  46244. height: math.unit(6, "feet"),
  46245. name: "Back",
  46246. image: {
  46247. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46248. extra: 1375/1358,
  46249. bottom: 43/1418
  46250. },
  46251. form: "rabbit"
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(6, "feet"),
  46258. default: true,
  46259. form: "rabbit"
  46260. },
  46261. {
  46262. name: "Incubus",
  46263. height: math.unit(12, "feet"),
  46264. default: true,
  46265. form: "incubus"
  46266. },
  46267. {
  46268. name: "Demon",
  46269. height: math.unit(36, "feet"),
  46270. default: true,
  46271. form: "demon"
  46272. }
  46273. ],
  46274. {
  46275. "demon": {
  46276. name: "Demon",
  46277. default: true
  46278. },
  46279. "incubus": {
  46280. name: "Incubus",
  46281. },
  46282. "rabbit": {
  46283. name: "Rabbit"
  46284. }
  46285. }
  46286. ))
  46287. characterMakers.push(() => makeCharacter(
  46288. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46289. {
  46290. front: {
  46291. height: math.unit(7 + 5/12, "feet"),
  46292. weight: math.unit(510, "lb"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/syrup/front.svg",
  46296. extra: 932/916,
  46297. bottom: 26/958
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "Normal",
  46304. height: math.unit(7 + 5/12, "feet"),
  46305. default: true
  46306. },
  46307. {
  46308. name: "Big",
  46309. height: math.unit(50, "feet")
  46310. },
  46311. {
  46312. name: "Macro",
  46313. height: math.unit(300, "feet")
  46314. },
  46315. {
  46316. name: "Megamacro",
  46317. height: math.unit(1, "mile")
  46318. },
  46319. ]
  46320. ))
  46321. characterMakers.push(() => makeCharacter(
  46322. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46323. {
  46324. front: {
  46325. height: math.unit(6 + 9/12, "feet"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/zeimne/front.svg",
  46329. extra: 1969/1806,
  46330. bottom: 53/2022
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(6 + 9/12, "feet"),
  46338. default: true
  46339. },
  46340. {
  46341. name: "Giant",
  46342. height: math.unit(550, "feet")
  46343. },
  46344. {
  46345. name: "Mega",
  46346. height: math.unit(3, "miles")
  46347. },
  46348. {
  46349. name: "Giga",
  46350. height: math.unit(250, "miles")
  46351. },
  46352. {
  46353. name: "Tera",
  46354. height: math.unit(1, "AU")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(5 + 2/12, "feet"),
  46363. name: "Front",
  46364. image: {
  46365. source: "./media/characters/grar/front.svg",
  46366. extra: 1331/1119,
  46367. bottom: 60/1391
  46368. }
  46369. },
  46370. back: {
  46371. height: math.unit(5 + 2/12, "feet"),
  46372. name: "Back",
  46373. image: {
  46374. source: "./media/characters/grar/back.svg",
  46375. extra: 1385/1169,
  46376. bottom: 23/1408
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(5 + 2/12, "feet"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46390. {
  46391. front: {
  46392. height: math.unit(13 + 7/12, "feet"),
  46393. weight: math.unit(2200, "lb"),
  46394. name: "Front",
  46395. image: {
  46396. source: "./media/characters/endraya/front.svg",
  46397. extra: 1289/1215,
  46398. bottom: 50/1339
  46399. }
  46400. },
  46401. nude: {
  46402. height: math.unit(13 + 7/12, "feet"),
  46403. weight: math.unit(2200, "lb"),
  46404. name: "Nude",
  46405. image: {
  46406. source: "./media/characters/endraya/nude.svg",
  46407. extra: 1247/1171,
  46408. bottom: 40/1287
  46409. }
  46410. },
  46411. head: {
  46412. height: math.unit(2.6, "feet"),
  46413. name: "Head",
  46414. image: {
  46415. source: "./media/characters/endraya/head.svg"
  46416. }
  46417. },
  46418. slit: {
  46419. height: math.unit(3.4, "feet"),
  46420. name: "Slit",
  46421. image: {
  46422. source: "./media/characters/endraya/slit.svg"
  46423. }
  46424. },
  46425. },
  46426. [
  46427. {
  46428. name: "Normal",
  46429. height: math.unit(13 + 7/12, "feet"),
  46430. default: true
  46431. },
  46432. {
  46433. name: "Macro",
  46434. height: math.unit(200, "feet")
  46435. },
  46436. ]
  46437. ))
  46438. characterMakers.push(() => makeCharacter(
  46439. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46440. {
  46441. front: {
  46442. height: math.unit(1.81, "meters"),
  46443. weight: math.unit(69, "kg"),
  46444. name: "Front",
  46445. image: {
  46446. source: "./media/characters/rodryana/front.svg",
  46447. extra: 2002/1921,
  46448. bottom: 53/2055
  46449. }
  46450. },
  46451. back: {
  46452. height: math.unit(1.81, "meters"),
  46453. weight: math.unit(69, "kg"),
  46454. name: "Back",
  46455. image: {
  46456. source: "./media/characters/rodryana/back.svg",
  46457. extra: 1993/1926,
  46458. bottom: 48/2041
  46459. }
  46460. },
  46461. maw: {
  46462. height: math.unit(0.19769417475, "meters"),
  46463. name: "Maw",
  46464. image: {
  46465. source: "./media/characters/rodryana/maw.svg"
  46466. }
  46467. },
  46468. slit: {
  46469. height: math.unit(0.31631067961, "meters"),
  46470. name: "Slit",
  46471. image: {
  46472. source: "./media/characters/rodryana/slit.svg"
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(1.81, "meters")
  46480. },
  46481. {
  46482. name: "Mini Macro",
  46483. height: math.unit(181, "meters")
  46484. },
  46485. {
  46486. name: "Macro",
  46487. height: math.unit(452, "meters"),
  46488. default: true
  46489. },
  46490. {
  46491. name: "Mega Macro",
  46492. height: math.unit(1.375, "km")
  46493. },
  46494. {
  46495. name: "Giga Macro",
  46496. height: math.unit(13.575, "km")
  46497. },
  46498. ]
  46499. ))
  46500. characterMakers.push(() => makeCharacter(
  46501. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46502. {
  46503. front: {
  46504. height: math.unit(6, "feet"),
  46505. weight: math.unit(1000, "lb"),
  46506. name: "Front",
  46507. image: {
  46508. source: "./media/characters/asaya/front.svg",
  46509. extra: 1460/1200,
  46510. bottom: 71/1531
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Normal",
  46517. height: math.unit(8, "km"),
  46518. default: true
  46519. },
  46520. ]
  46521. ))
  46522. characterMakers.push(() => makeCharacter(
  46523. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46524. {
  46525. front: {
  46526. height: math.unit(3.5, "meters"),
  46527. name: "Front",
  46528. image: {
  46529. source: "./media/characters/sarzu-and-israz/front.svg",
  46530. extra: 1570/1558,
  46531. bottom: 150/1720
  46532. },
  46533. },
  46534. back: {
  46535. height: math.unit(3.5, "meters"),
  46536. name: "Back",
  46537. image: {
  46538. source: "./media/characters/sarzu-and-israz/back.svg",
  46539. extra: 1523/1509,
  46540. bottom: 132/1655
  46541. },
  46542. },
  46543. frontFemale: {
  46544. height: math.unit(3.5, "meters"),
  46545. name: "Front (Female)",
  46546. image: {
  46547. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46548. extra: 1570/1558,
  46549. bottom: 150/1720
  46550. },
  46551. },
  46552. frontHerm: {
  46553. height: math.unit(3.5, "meters"),
  46554. name: "Front (Herm)",
  46555. image: {
  46556. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46557. extra: 1570/1558,
  46558. bottom: 150/1720
  46559. },
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(3.5, "meters"),
  46566. default: true,
  46567. },
  46568. {
  46569. name: "Macro",
  46570. height: math.unit(65.5, "meters"),
  46571. },
  46572. ],
  46573. ))
  46574. characterMakers.push(() => makeCharacter(
  46575. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46576. {
  46577. front: {
  46578. height: math.unit(6, "feet"),
  46579. weight: math.unit(250, "lb"),
  46580. name: "Front",
  46581. image: {
  46582. source: "./media/characters/zenimma/front.svg",
  46583. extra: 1346/1320,
  46584. bottom: 58/1404
  46585. }
  46586. },
  46587. back: {
  46588. height: math.unit(6, "feet"),
  46589. weight: math.unit(250, "lb"),
  46590. name: "Back",
  46591. image: {
  46592. source: "./media/characters/zenimma/back.svg",
  46593. extra: 1324/1308,
  46594. bottom: 44/1368
  46595. }
  46596. },
  46597. dick: {
  46598. height: math.unit(1.44, "feet"),
  46599. name: "Dick",
  46600. image: {
  46601. source: "./media/characters/zenimma/dick.svg"
  46602. }
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Canon Height",
  46608. height: math.unit(66, "miles"),
  46609. default: true
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46615. {
  46616. nude: {
  46617. height: math.unit(6, "feet"),
  46618. weight: math.unit(150, "lb"),
  46619. name: "Nude",
  46620. image: {
  46621. source: "./media/characters/shavon/nude.svg",
  46622. extra: 1242/1096,
  46623. bottom: 98/1340
  46624. }
  46625. },
  46626. dressed: {
  46627. height: math.unit(6, "feet"),
  46628. weight: math.unit(150, "lb"),
  46629. name: "Dressed",
  46630. image: {
  46631. source: "./media/characters/shavon/dressed.svg",
  46632. extra: 1242/1096,
  46633. bottom: 98/1340
  46634. }
  46635. },
  46636. },
  46637. [
  46638. {
  46639. name: "Macro",
  46640. height: math.unit(255, "feet"),
  46641. default: true
  46642. },
  46643. ]
  46644. ))
  46645. characterMakers.push(() => makeCharacter(
  46646. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46647. {
  46648. front: {
  46649. height: math.unit(6, "feet"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/steph/front.svg",
  46653. extra: 1430/1330,
  46654. bottom: 54/1484
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(6, "feet"),
  46662. default: true
  46663. },
  46664. ]
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46668. {
  46669. front: {
  46670. height: math.unit(9, "feet"),
  46671. weight: math.unit(400, "lb"),
  46672. name: "Front",
  46673. image: {
  46674. source: "./media/characters/kil'aman/front.svg",
  46675. extra: 1210/1159,
  46676. bottom: 109/1319
  46677. }
  46678. },
  46679. head: {
  46680. height: math.unit(2.14, "feet"),
  46681. name: "Head",
  46682. image: {
  46683. source: "./media/characters/kil'aman/head.svg"
  46684. }
  46685. },
  46686. maw: {
  46687. height: math.unit(1.21, "feet"),
  46688. name: "Maw",
  46689. image: {
  46690. source: "./media/characters/kil'aman/maw.svg"
  46691. }
  46692. },
  46693. foot: {
  46694. height: math.unit(1.7, "feet"),
  46695. name: "Foot",
  46696. image: {
  46697. source: "./media/characters/kil'aman/foot.svg"
  46698. }
  46699. },
  46700. dick: {
  46701. height: math.unit(2.1, "feet"),
  46702. name: "Dick",
  46703. image: {
  46704. source: "./media/characters/kil'aman/dick.svg"
  46705. }
  46706. },
  46707. },
  46708. [
  46709. {
  46710. name: "Normal",
  46711. height: math.unit(9, "feet")
  46712. },
  46713. {
  46714. name: "Canon Height",
  46715. height: math.unit(10, "miles"),
  46716. default: true
  46717. },
  46718. {
  46719. name: "Maximum",
  46720. height: math.unit(6e9, "miles")
  46721. },
  46722. ]
  46723. ))
  46724. characterMakers.push(() => makeCharacter(
  46725. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46726. {
  46727. front: {
  46728. height: math.unit(90, "feet"),
  46729. weight: math.unit(675000, "lb"),
  46730. name: "Front",
  46731. image: {
  46732. source: "./media/characters/qadan/front.svg",
  46733. extra: 1012/1004,
  46734. bottom: 78/1090
  46735. }
  46736. },
  46737. back: {
  46738. height: math.unit(90, "feet"),
  46739. weight: math.unit(675000, "lb"),
  46740. name: "Back",
  46741. image: {
  46742. source: "./media/characters/qadan/back.svg",
  46743. extra: 1042/1031,
  46744. bottom: 55/1097
  46745. }
  46746. },
  46747. armored: {
  46748. height: math.unit(90, "feet"),
  46749. weight: math.unit(675000, "lb"),
  46750. name: "Armored",
  46751. image: {
  46752. source: "./media/characters/qadan/armored.svg",
  46753. extra: 1047/1037,
  46754. bottom: 48/1095
  46755. }
  46756. },
  46757. },
  46758. [
  46759. {
  46760. name: "Normal",
  46761. height: math.unit(90, "feet"),
  46762. default: true
  46763. },
  46764. ]
  46765. ))
  46766. characterMakers.push(() => makeCharacter(
  46767. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46768. {
  46769. front: {
  46770. height: math.unit(6, "feet"),
  46771. weight: math.unit(225, "lb"),
  46772. name: "Front",
  46773. image: {
  46774. source: "./media/characters/brooke/front.svg",
  46775. extra: 1050/1010,
  46776. bottom: 66/1116
  46777. }
  46778. },
  46779. back: {
  46780. height: math.unit(6, "feet"),
  46781. weight: math.unit(225, "lb"),
  46782. name: "Back",
  46783. image: {
  46784. source: "./media/characters/brooke/back.svg",
  46785. extra: 1053/1013,
  46786. bottom: 41/1094
  46787. }
  46788. },
  46789. dressed: {
  46790. height: math.unit(6, "feet"),
  46791. weight: math.unit(225, "lb"),
  46792. name: "Dressed",
  46793. image: {
  46794. source: "./media/characters/brooke/dressed.svg",
  46795. extra: 1050/1010,
  46796. bottom: 66/1116
  46797. }
  46798. },
  46799. },
  46800. [
  46801. {
  46802. name: "Canon Height",
  46803. height: math.unit(500, "miles"),
  46804. default: true
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46810. {
  46811. front: {
  46812. height: math.unit(6 + 2/12, "feet"),
  46813. weight: math.unit(210, "lb"),
  46814. name: "Front",
  46815. image: {
  46816. source: "./media/characters/wubs/front.svg",
  46817. extra: 1345/1325,
  46818. bottom: 70/1415
  46819. }
  46820. },
  46821. back: {
  46822. height: math.unit(6 + 2/12, "feet"),
  46823. weight: math.unit(210, "lb"),
  46824. name: "Back",
  46825. image: {
  46826. source: "./media/characters/wubs/back.svg",
  46827. extra: 1296/1275,
  46828. bottom: 58/1354
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Normal",
  46835. height: math.unit(6 + 2/12, "feet"),
  46836. default: true
  46837. },
  46838. {
  46839. name: "Macro",
  46840. height: math.unit(1000, "feet")
  46841. },
  46842. {
  46843. name: "Megamacro",
  46844. height: math.unit(1, "mile")
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(4, "feet"),
  46853. weight: math.unit(120, "lb"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/blue/front.svg",
  46857. extra: 1636/1525,
  46858. bottom: 43/1679
  46859. }
  46860. },
  46861. back: {
  46862. height: math.unit(4, "feet"),
  46863. weight: math.unit(120, "lb"),
  46864. name: "Back",
  46865. image: {
  46866. source: "./media/characters/blue/back.svg",
  46867. extra: 1660/1560,
  46868. bottom: 57/1717
  46869. }
  46870. },
  46871. paws: {
  46872. height: math.unit(0.826, "feet"),
  46873. name: "Paws",
  46874. image: {
  46875. source: "./media/characters/blue/paws.svg"
  46876. }
  46877. },
  46878. },
  46879. [
  46880. {
  46881. name: "Micro",
  46882. height: math.unit(3, "inches")
  46883. },
  46884. {
  46885. name: "Normal",
  46886. height: math.unit(4, "feet"),
  46887. default: true
  46888. },
  46889. {
  46890. name: "Femenine Form",
  46891. height: math.unit(14, "feet")
  46892. },
  46893. {
  46894. name: "Werebat Form",
  46895. height: math.unit(18, "feet")
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46901. {
  46902. female: {
  46903. height: math.unit(7 + 4/12, "feet"),
  46904. weight: math.unit(243, "lb"),
  46905. name: "Female",
  46906. image: {
  46907. source: "./media/characters/kaya/female.svg",
  46908. extra: 975/898,
  46909. bottom: 34/1009
  46910. }
  46911. },
  46912. herm: {
  46913. height: math.unit(7 + 4/12, "feet"),
  46914. weight: math.unit(243, "lb"),
  46915. name: "Herm",
  46916. image: {
  46917. source: "./media/characters/kaya/herm.svg",
  46918. extra: 975/898,
  46919. bottom: 34/1009
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(7 + 4/12, "feet"),
  46927. default: true
  46928. },
  46929. ]
  46930. ))
  46931. characterMakers.push(() => makeCharacter(
  46932. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46933. {
  46934. female: {
  46935. height: math.unit(9 + 4/12, "feet"),
  46936. weight: math.unit(398, "lb"),
  46937. name: "Female",
  46938. image: {
  46939. source: "./media/characters/kassandra/female.svg",
  46940. extra: 908/839,
  46941. bottom: 61/969
  46942. }
  46943. },
  46944. intersex: {
  46945. height: math.unit(9 + 4/12, "feet"),
  46946. weight: math.unit(398, "lb"),
  46947. name: "Intersex",
  46948. image: {
  46949. source: "./media/characters/kassandra/intersex.svg",
  46950. extra: 908/839,
  46951. bottom: 61/969
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Normal",
  46958. height: math.unit(9 + 4/12, "feet"),
  46959. default: true
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46965. {
  46966. front: {
  46967. height: math.unit(3, "meters"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/amy/front.svg",
  46971. extra: 1380/1343,
  46972. bottom: 70/1450
  46973. }
  46974. },
  46975. back: {
  46976. height: math.unit(3, "meters"),
  46977. name: "Back",
  46978. image: {
  46979. source: "./media/characters/amy/back.svg",
  46980. extra: 1380/1347,
  46981. bottom: 66/1446
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(3, "meters"),
  46989. default: true
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46995. {
  46996. side: {
  46997. height: math.unit(47, "cm"),
  46998. weight: math.unit(10.8, "kg"),
  46999. name: "Side",
  47000. image: {
  47001. source: "./media/characters/alphaschakal/side.svg",
  47002. extra: 1058/568,
  47003. bottom: 62/1120
  47004. }
  47005. },
  47006. back: {
  47007. height: math.unit(78, "cm"),
  47008. weight: math.unit(10.8, "kg"),
  47009. name: "Back",
  47010. image: {
  47011. source: "./media/characters/alphaschakal/back.svg",
  47012. extra: 1102/942,
  47013. bottom: 185/1287
  47014. }
  47015. },
  47016. head: {
  47017. height: math.unit(28, "cm"),
  47018. name: "Head",
  47019. image: {
  47020. source: "./media/characters/alphaschakal/head.svg",
  47021. extra: 696/508,
  47022. bottom: 0/696
  47023. }
  47024. },
  47025. paw: {
  47026. height: math.unit(16, "cm"),
  47027. name: "Paw",
  47028. image: {
  47029. source: "./media/characters/alphaschakal/paw.svg"
  47030. }
  47031. },
  47032. },
  47033. [
  47034. {
  47035. name: "Normal",
  47036. height: math.unit(47, "cm"),
  47037. default: true
  47038. },
  47039. {
  47040. name: "Macro",
  47041. height: math.unit(340, "cm")
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47047. {
  47048. front: {
  47049. height: math.unit(36, "earths"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/ecobyss/front.svg",
  47053. extra: 1282/1215,
  47054. bottom: 11/1293
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(36, "earths"),
  47059. name: "Back",
  47060. image: {
  47061. source: "./media/characters/ecobyss/back.svg",
  47062. extra: 1291/1222,
  47063. bottom: 8/1299
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(36, "earths"),
  47071. default: true
  47072. },
  47073. ]
  47074. ))
  47075. characterMakers.push(() => makeCharacter(
  47076. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47077. {
  47078. front: {
  47079. height: math.unit(12, "feet"),
  47080. name: "Front",
  47081. image: {
  47082. source: "./media/characters/vasuk/front.svg",
  47083. extra: 1326/1207,
  47084. bottom: 64/1390
  47085. }
  47086. },
  47087. },
  47088. [
  47089. {
  47090. name: "Normal",
  47091. height: math.unit(12, "feet"),
  47092. default: true
  47093. },
  47094. ]
  47095. ))
  47096. characterMakers.push(() => makeCharacter(
  47097. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47098. {
  47099. side: {
  47100. height: math.unit(100, "feet"),
  47101. name: "Side",
  47102. image: {
  47103. source: "./media/characters/linneaus/side.svg",
  47104. extra: 987/807,
  47105. bottom: 47/1034
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "Macro",
  47112. height: math.unit(100, "feet"),
  47113. default: true
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47119. {
  47120. front: {
  47121. height: math.unit(8, "feet"),
  47122. weight: math.unit(1200, "lb"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/nyterious-daligdig/front.svg",
  47126. extra: 1284/1094,
  47127. bottom: 84/1368
  47128. }
  47129. },
  47130. back: {
  47131. height: math.unit(8, "feet"),
  47132. weight: math.unit(1200, "lb"),
  47133. name: "Back",
  47134. image: {
  47135. source: "./media/characters/nyterious-daligdig/back.svg",
  47136. extra: 1301/1121,
  47137. bottom: 129/1430
  47138. }
  47139. },
  47140. mouth: {
  47141. height: math.unit(1.464, "feet"),
  47142. name: "Mouth",
  47143. image: {
  47144. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Small",
  47151. height: math.unit(8, "feet"),
  47152. default: true
  47153. },
  47154. {
  47155. name: "Normal",
  47156. height: math.unit(15, "feet")
  47157. },
  47158. {
  47159. name: "Macro",
  47160. height: math.unit(90, "feet")
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47166. {
  47167. front: {
  47168. height: math.unit(7 + 4/12, "feet"),
  47169. weight: math.unit(252, "lb"),
  47170. name: "Front",
  47171. image: {
  47172. source: "./media/characters/bandel/front.svg",
  47173. extra: 1946/1775,
  47174. bottom: 26/1972
  47175. }
  47176. },
  47177. back: {
  47178. height: math.unit(7 + 4/12, "feet"),
  47179. weight: math.unit(252, "lb"),
  47180. name: "Back",
  47181. image: {
  47182. source: "./media/characters/bandel/back.svg",
  47183. extra: 1940/1770,
  47184. bottom: 25/1965
  47185. }
  47186. },
  47187. maw: {
  47188. height: math.unit(2.15, "feet"),
  47189. name: "Maw",
  47190. image: {
  47191. source: "./media/characters/bandel/maw.svg"
  47192. }
  47193. },
  47194. stomach: {
  47195. height: math.unit(1.95, "feet"),
  47196. name: "Stomach",
  47197. image: {
  47198. source: "./media/characters/bandel/stomach.svg"
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(7 + 4/12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(10 + 5/12, "feet"),
  47215. weight: math.unit(773.5, "kg"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/zed/front.svg",
  47219. extra: 987/941,
  47220. bottom: 52/1039
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Short",
  47227. height: math.unit(5 + 4/12, "feet")
  47228. },
  47229. {
  47230. name: "Average",
  47231. height: math.unit(10 + 5/12, "feet"),
  47232. default: true
  47233. },
  47234. {
  47235. name: "Mini-Macro",
  47236. height: math.unit(24 + 9/12, "feet")
  47237. },
  47238. {
  47239. name: "Macro",
  47240. height: math.unit(249, "feet")
  47241. },
  47242. {
  47243. name: "Mega-Macro",
  47244. height: math.unit(12490, "feet")
  47245. },
  47246. {
  47247. name: "Giga-Macro",
  47248. height: math.unit(24.9, "miles")
  47249. },
  47250. {
  47251. name: "Tera-Macro",
  47252. height: math.unit(24900, "miles")
  47253. },
  47254. {
  47255. name: "Cosmic Scale",
  47256. height: math.unit(38.9, "lightyears")
  47257. },
  47258. {
  47259. name: "Universal Scale",
  47260. height: math.unit(138e12, "lightyears")
  47261. },
  47262. ]
  47263. ))
  47264. characterMakers.push(() => makeCharacter(
  47265. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47266. {
  47267. front: {
  47268. height: math.unit(1561, "inches"),
  47269. name: "Front",
  47270. image: {
  47271. source: "./media/characters/ivan/front.svg",
  47272. extra: 1126/1071,
  47273. bottom: 26/1152
  47274. }
  47275. },
  47276. back: {
  47277. height: math.unit(1561, "inches"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/ivan/back.svg",
  47281. extra: 1134/1079,
  47282. bottom: 30/1164
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(1561, "inches"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(5 + 7/12, "feet"),
  47299. weight: math.unit(150, "lb"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/robin-arctic-hare/front.svg",
  47303. extra: 1148/974,
  47304. bottom: 20/1168
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(5 + 7/12, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47318. {
  47319. side: {
  47320. height: math.unit(5, "feet"),
  47321. name: "Side",
  47322. image: {
  47323. source: "./media/characters/birch/side.svg",
  47324. extra: 985/796,
  47325. bottom: 111/1096
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(5, "feet"),
  47333. default: true
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47339. {
  47340. front: {
  47341. height: math.unit(4, "feet"),
  47342. name: "Front",
  47343. image: {
  47344. source: "./media/characters/rasp/front.svg",
  47345. extra: 561/478,
  47346. bottom: 74/635
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(4, "feet"),
  47354. default: true
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47360. {
  47361. front: {
  47362. height: math.unit(4 + 6/12, "feet"),
  47363. name: "Front",
  47364. image: {
  47365. source: "./media/characters/agatha/front.svg",
  47366. extra: 947/933,
  47367. bottom: 42/989
  47368. }
  47369. },
  47370. back: {
  47371. height: math.unit(4 + 6/12, "feet"),
  47372. name: "Back",
  47373. image: {
  47374. source: "./media/characters/agatha/back.svg",
  47375. extra: 935/922,
  47376. bottom: 48/983
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(4 + 6 /12, "feet"),
  47384. default: true
  47385. },
  47386. {
  47387. name: "Max Size",
  47388. height: math.unit(500, "feet")
  47389. },
  47390. ]
  47391. ))
  47392. characterMakers.push(() => makeCharacter(
  47393. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47394. {
  47395. side: {
  47396. height: math.unit(30, "feet"),
  47397. name: "Side",
  47398. image: {
  47399. source: "./media/characters/roggy/side.svg",
  47400. extra: 909/643,
  47401. bottom: 63/972
  47402. }
  47403. },
  47404. lounging: {
  47405. height: math.unit(20, "feet"),
  47406. name: "Lounging",
  47407. image: {
  47408. source: "./media/characters/roggy/lounging.svg",
  47409. extra: 643/479,
  47410. bottom: 145/788
  47411. }
  47412. },
  47413. handpaw: {
  47414. height: math.unit(13.1, "feet"),
  47415. name: "Handpaw",
  47416. image: {
  47417. source: "./media/characters/roggy/handpaw.svg"
  47418. }
  47419. },
  47420. footpaw: {
  47421. height: math.unit(15.8, "feet"),
  47422. name: "Footpaw",
  47423. image: {
  47424. source: "./media/characters/roggy/footpaw.svg"
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Menacing",
  47431. height: math.unit(30, "feet"),
  47432. default: true
  47433. },
  47434. ]
  47435. ))
  47436. characterMakers.push(() => makeCharacter(
  47437. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47438. {
  47439. front: {
  47440. height: math.unit(5 + 7/12, "feet"),
  47441. weight: math.unit(135, "lb"),
  47442. name: "Front",
  47443. image: {
  47444. source: "./media/characters/naomi/front.svg",
  47445. extra: 1209/1154,
  47446. bottom: 129/1338
  47447. }
  47448. },
  47449. back: {
  47450. height: math.unit(5 + 7/12, "feet"),
  47451. weight: math.unit(135, "lb"),
  47452. name: "Back",
  47453. image: {
  47454. source: "./media/characters/naomi/back.svg",
  47455. extra: 1252/1190,
  47456. bottom: 23/1275
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(5 + 7 /12, "feet"),
  47464. default: true
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47470. {
  47471. side: {
  47472. height: math.unit(35, "meters"),
  47473. name: "Side",
  47474. image: {
  47475. source: "./media/characters/kimpi/side.svg",
  47476. extra: 419/382,
  47477. bottom: 63/482
  47478. }
  47479. },
  47480. hand: {
  47481. height: math.unit(8.96, "meters"),
  47482. name: "Hand",
  47483. image: {
  47484. source: "./media/characters/kimpi/hand.svg"
  47485. }
  47486. },
  47487. },
  47488. [
  47489. {
  47490. name: "Normal",
  47491. height: math.unit(35, "meters"),
  47492. default: true
  47493. },
  47494. ]
  47495. ))
  47496. characterMakers.push(() => makeCharacter(
  47497. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47498. {
  47499. front: {
  47500. height: math.unit(4 + 4/12, "feet"),
  47501. name: "Front",
  47502. image: {
  47503. source: "./media/characters/pepper-purrloin/front.svg",
  47504. extra: 1141/1024,
  47505. bottom: 21/1162
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(4 + 4/12, "feet"),
  47513. default: true
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(6 + 2/12, "feet"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/raphael/front.svg",
  47525. extra: 1101/962,
  47526. bottom: 59/1160
  47527. }
  47528. },
  47529. },
  47530. [
  47531. {
  47532. name: "Normal",
  47533. height: math.unit(6 + 2/12, "feet"),
  47534. default: true
  47535. },
  47536. ]
  47537. ))
  47538. characterMakers.push(() => makeCharacter(
  47539. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47540. {
  47541. front: {
  47542. height: math.unit(6, "feet"),
  47543. weight: math.unit(150, "lb"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/victor-williams/front.svg",
  47547. extra: 1894/1825,
  47548. bottom: 67/1961
  47549. }
  47550. },
  47551. },
  47552. [
  47553. {
  47554. name: "Normal",
  47555. height: math.unit(6, "feet"),
  47556. default: true
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47562. {
  47563. front: {
  47564. height: math.unit(5 + 8/12, "feet"),
  47565. weight: math.unit(150, "lb"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/rachel/front.svg",
  47569. extra: 1902/1787,
  47570. bottom: 46/1948
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Base Height",
  47577. height: math.unit(5 + 8/12, "feet"),
  47578. default: true
  47579. },
  47580. {
  47581. name: "Macro",
  47582. height: math.unit(200, "feet")
  47583. },
  47584. {
  47585. name: "Mega Macro",
  47586. height: math.unit(1, "mile")
  47587. },
  47588. {
  47589. name: "Giga Macro",
  47590. height: math.unit(1500, "miles")
  47591. },
  47592. {
  47593. name: "Tera Macro",
  47594. height: math.unit(8000, "miles")
  47595. },
  47596. {
  47597. name: "Tera Macro+",
  47598. height: math.unit(2e5, "miles")
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47604. {
  47605. front: {
  47606. height: math.unit(6.5, "feet"),
  47607. name: "Front",
  47608. image: {
  47609. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47610. extra: 860/819,
  47611. bottom: 307/1167
  47612. }
  47613. },
  47614. back: {
  47615. height: math.unit(6.5, "feet"),
  47616. name: "Back",
  47617. image: {
  47618. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47619. extra: 880/837,
  47620. bottom: 395/1275
  47621. }
  47622. },
  47623. sleeping: {
  47624. height: math.unit(2.79, "feet"),
  47625. name: "Sleeping",
  47626. image: {
  47627. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47628. extra: 465/383,
  47629. bottom: 263/728
  47630. }
  47631. },
  47632. maw: {
  47633. height: math.unit(2.52, "feet"),
  47634. name: "Maw",
  47635. image: {
  47636. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(6.5, "feet"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47650. {
  47651. front: {
  47652. height: math.unit(5, "feet"),
  47653. name: "Front",
  47654. image: {
  47655. source: "./media/characters/nova-nerium/front.svg",
  47656. extra: 1548/1392,
  47657. bottom: 374/1922
  47658. }
  47659. },
  47660. back: {
  47661. height: math.unit(5, "feet"),
  47662. name: "Back",
  47663. image: {
  47664. source: "./media/characters/nova-nerium/back.svg",
  47665. extra: 1658/1468,
  47666. bottom: 257/1915
  47667. }
  47668. },
  47669. },
  47670. [
  47671. {
  47672. name: "Normal",
  47673. height: math.unit(5, "feet"),
  47674. default: true
  47675. },
  47676. ]
  47677. ))
  47678. characterMakers.push(() => makeCharacter(
  47679. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47680. {
  47681. front: {
  47682. height: math.unit(5 + 4/12, "feet"),
  47683. name: "Front",
  47684. image: {
  47685. source: "./media/characters/ashe-pyriph/front.svg",
  47686. extra: 1935/1747,
  47687. bottom: 60/1995
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(5 + 4/12, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(8.7, "feet"),
  47704. name: "Front",
  47705. image: {
  47706. source: "./media/characters/flicker-wisp/front.svg",
  47707. extra: 1835/1613,
  47708. bottom: 449/2284
  47709. }
  47710. },
  47711. side: {
  47712. height: math.unit(8.7, "feet"),
  47713. name: "Side",
  47714. image: {
  47715. source: "./media/characters/flicker-wisp/side.svg",
  47716. extra: 1841/1642,
  47717. bottom: 336/2177
  47718. },
  47719. default: true
  47720. },
  47721. maw: {
  47722. height: math.unit(3.35, "feet"),
  47723. name: "Maw",
  47724. image: {
  47725. source: "./media/characters/flicker-wisp/maw.svg",
  47726. extra: 2338/1506,
  47727. bottom: 0/2338
  47728. }
  47729. },
  47730. ovipositor: {
  47731. height: math.unit(4.95, "feet"),
  47732. name: "Ovipositor",
  47733. image: {
  47734. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47735. }
  47736. },
  47737. egg: {
  47738. height: math.unit(0.385, "feet"),
  47739. weight: math.unit(2, "lb"),
  47740. name: "Egg",
  47741. image: {
  47742. source: "./media/characters/flicker-wisp/egg.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(8.7, "feet"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47756. {
  47757. side: {
  47758. height: math.unit(11, "feet"),
  47759. name: "Side",
  47760. image: {
  47761. source: "./media/characters/faefnul/side.svg",
  47762. extra: 1100/1007,
  47763. bottom: 0/1100
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(11, "feet"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47777. {
  47778. front: {
  47779. height: math.unit(6 + 2/12, "feet"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/shady/front.svg",
  47783. extra: 502/461,
  47784. bottom: 9/511
  47785. }
  47786. },
  47787. kneeling: {
  47788. height: math.unit(4.6, "feet"),
  47789. name: "Kneeling",
  47790. image: {
  47791. source: "./media/characters/shady/kneeling.svg",
  47792. extra: 1328/1219,
  47793. bottom: 117/1445
  47794. }
  47795. },
  47796. maw: {
  47797. height: math.unit(2, "feet"),
  47798. name: "Maw",
  47799. image: {
  47800. source: "./media/characters/shady/maw.svg"
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Nano",
  47807. height: math.unit(1, "mm")
  47808. },
  47809. {
  47810. name: "Micro",
  47811. height: math.unit(12, "mm")
  47812. },
  47813. {
  47814. name: "Tiny",
  47815. height: math.unit(3, "inches")
  47816. },
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(6 + 2/12, "feet"),
  47820. default: true
  47821. },
  47822. {
  47823. name: "Big",
  47824. height: math.unit(15, "feet")
  47825. },
  47826. {
  47827. name: "Macro",
  47828. height: math.unit(150, "feet")
  47829. },
  47830. {
  47831. name: "Titanic",
  47832. height: math.unit(500, "feet")
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(12, "feet"),
  47841. name: "Front",
  47842. image: {
  47843. source: "./media/characters/fenrir/front.svg",
  47844. extra: 968/875,
  47845. bottom: 22/990
  47846. }
  47847. },
  47848. },
  47849. [
  47850. {
  47851. name: "Big",
  47852. height: math.unit(12, "feet"),
  47853. default: true
  47854. },
  47855. ]
  47856. ))
  47857. characterMakers.push(() => makeCharacter(
  47858. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47859. {
  47860. front: {
  47861. height: math.unit(5 + 4/12, "feet"),
  47862. name: "Front",
  47863. image: {
  47864. source: "./media/characters/makar/front.svg",
  47865. extra: 1181/1112,
  47866. bottom: 78/1259
  47867. }
  47868. },
  47869. },
  47870. [
  47871. {
  47872. name: "Normal",
  47873. height: math.unit(5 + 4/12, "feet"),
  47874. default: true
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47880. {
  47881. front: {
  47882. height: math.unit(5 + 7/12, "feet"),
  47883. name: "Front",
  47884. image: {
  47885. source: "./media/characters/callow/front.svg",
  47886. extra: 1482/1304,
  47887. bottom: 23/1505
  47888. }
  47889. },
  47890. back: {
  47891. height: math.unit(5 + 7/12, "feet"),
  47892. name: "Back",
  47893. image: {
  47894. source: "./media/characters/callow/back.svg",
  47895. extra: 1484/1296,
  47896. bottom: 25/1509
  47897. }
  47898. },
  47899. },
  47900. [
  47901. {
  47902. name: "Micro",
  47903. height: math.unit(3, "inches"),
  47904. default: true
  47905. },
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(5 + 7/12, "feet")
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47914. {
  47915. front: {
  47916. height: math.unit(6 + 2/12, "feet"),
  47917. name: "Front",
  47918. image: {
  47919. source: "./media/characters/natel/front.svg",
  47920. extra: 1833/1692,
  47921. bottom: 166/1999
  47922. }
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(6 + 2/12, "feet"),
  47929. default: true
  47930. },
  47931. ]
  47932. ))
  47933. characterMakers.push(() => makeCharacter(
  47934. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47935. {
  47936. front: {
  47937. height: math.unit(1.75, "meters"),
  47938. name: "Front",
  47939. image: {
  47940. source: "./media/characters/misu/front.svg",
  47941. extra: 1690/1558,
  47942. bottom: 234/1924
  47943. }
  47944. },
  47945. back: {
  47946. height: math.unit(1.75, "meters"),
  47947. name: "Back",
  47948. image: {
  47949. source: "./media/characters/misu/back.svg",
  47950. extra: 1762/1618,
  47951. bottom: 146/1908
  47952. }
  47953. },
  47954. frontNude: {
  47955. height: math.unit(1.75, "meters"),
  47956. name: "Front (Nude)",
  47957. image: {
  47958. source: "./media/characters/misu/front-nude.svg",
  47959. extra: 1690/1558,
  47960. bottom: 234/1924
  47961. }
  47962. },
  47963. backNude: {
  47964. height: math.unit(1.75, "meters"),
  47965. name: "Back (Nude)",
  47966. image: {
  47967. source: "./media/characters/misu/back-nude.svg",
  47968. extra: 1762/1618,
  47969. bottom: 146/1908
  47970. }
  47971. },
  47972. frontErect: {
  47973. height: math.unit(1.75, "meters"),
  47974. name: "Front (Erect)",
  47975. image: {
  47976. source: "./media/characters/misu/front-erect.svg",
  47977. extra: 1690/1558,
  47978. bottom: 234/1924
  47979. }
  47980. },
  47981. maw: {
  47982. height: math.unit(0.47, "meters"),
  47983. name: "Maw",
  47984. image: {
  47985. source: "./media/characters/misu/maw.svg"
  47986. }
  47987. },
  47988. head: {
  47989. height: math.unit(0.35, "meters"),
  47990. name: "Head",
  47991. image: {
  47992. source: "./media/characters/misu/head.svg"
  47993. }
  47994. },
  47995. rear: {
  47996. height: math.unit(0.47, "meters"),
  47997. name: "Rear",
  47998. image: {
  47999. source: "./media/characters/misu/rear.svg"
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(1.75, "meters")
  48007. },
  48008. {
  48009. name: "Not good for the people",
  48010. height: math.unit(42, "meters")
  48011. },
  48012. {
  48013. name: "Not good for the neighborhood",
  48014. height: math.unit(135, "meters")
  48015. },
  48016. {
  48017. name: "Bit bigger problem",
  48018. height: math.unit(380, "meters"),
  48019. default: true
  48020. },
  48021. {
  48022. name: "Not good for the city",
  48023. height: math.unit(1.5, "km")
  48024. },
  48025. {
  48026. name: "Not good for the county",
  48027. height: math.unit(5.5, "km")
  48028. },
  48029. {
  48030. name: "Not good for the state",
  48031. height: math.unit(25, "km")
  48032. },
  48033. {
  48034. name: "Not good for the country",
  48035. height: math.unit(125, "km")
  48036. },
  48037. {
  48038. name: "Not good for the continent",
  48039. height: math.unit(2100, "km")
  48040. },
  48041. {
  48042. name: "Not good for the planet",
  48043. height: math.unit(35000, "km")
  48044. },
  48045. {
  48046. name: "Just no",
  48047. height: math.unit(8.5e18, "km")
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(6.5, "feet"),
  48056. name: "Front",
  48057. image: {
  48058. source: "./media/characters/poppy/front.svg",
  48059. extra: 1878/1812,
  48060. bottom: 43/1921
  48061. }
  48062. },
  48063. feet: {
  48064. height: math.unit(1.06, "feet"),
  48065. name: "Feet",
  48066. image: {
  48067. source: "./media/characters/poppy/feet.svg",
  48068. extra: 1083/1083,
  48069. bottom: 87/1170
  48070. }
  48071. },
  48072. },
  48073. [
  48074. {
  48075. name: "Human",
  48076. height: math.unit(6.5, "feet")
  48077. },
  48078. {
  48079. name: "Default",
  48080. height: math.unit(300, "feet"),
  48081. default: true
  48082. },
  48083. {
  48084. name: "Huge",
  48085. height: math.unit(850, "feet")
  48086. },
  48087. {
  48088. name: "Mega",
  48089. height: math.unit(8000, "feet")
  48090. },
  48091. {
  48092. name: "Giga",
  48093. height: math.unit(300, "miles")
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48099. {
  48100. bipedal: {
  48101. height: math.unit(7, "feet"),
  48102. name: "Bipedal",
  48103. image: {
  48104. source: "./media/characters/zener/bipedal.svg",
  48105. extra: 874/805,
  48106. bottom: 109/983
  48107. }
  48108. },
  48109. quadrupedal: {
  48110. height: math.unit(4.64, "feet"),
  48111. name: "Quadrupedal",
  48112. image: {
  48113. source: "./media/characters/zener/quadrupedal.svg",
  48114. extra: 638/507,
  48115. bottom: 190/828
  48116. }
  48117. },
  48118. cock: {
  48119. height: math.unit(18, "inches"),
  48120. name: "Cock",
  48121. image: {
  48122. source: "./media/characters/zener/cock.svg"
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(7, "feet"),
  48130. default: true
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48136. {
  48137. nude: {
  48138. height: math.unit(5 + 6/12, "feet"),
  48139. name: "Nude",
  48140. image: {
  48141. source: "./media/characters/charlie-dog/nude.svg",
  48142. extra: 768/734,
  48143. bottom: 26/794
  48144. }
  48145. },
  48146. dressed: {
  48147. height: math.unit(5 + 6/12, "feet"),
  48148. name: "Dressed",
  48149. image: {
  48150. source: "./media/characters/charlie-dog/dressed.svg",
  48151. extra: 768/734,
  48152. bottom: 26/794
  48153. }
  48154. },
  48155. },
  48156. [
  48157. {
  48158. name: "Normal",
  48159. height: math.unit(5 + 6/12, "feet"),
  48160. default: true
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48166. {
  48167. front: {
  48168. height: math.unit(6 + 4/12, "feet"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/ir'istrasz/front.svg",
  48172. extra: 1014/977,
  48173. bottom: 65/1079
  48174. }
  48175. },
  48176. back: {
  48177. height: math.unit(6 + 4/12, "feet"),
  48178. name: "Back",
  48179. image: {
  48180. source: "./media/characters/ir'istrasz/back.svg",
  48181. extra: 1024/992,
  48182. bottom: 34/1058
  48183. }
  48184. },
  48185. },
  48186. [
  48187. {
  48188. name: "Normal",
  48189. height: math.unit(6 + 4/12, "feet"),
  48190. default: true
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48196. {
  48197. front: {
  48198. height: math.unit(5 + 8/12, "feet"),
  48199. name: "Front",
  48200. image: {
  48201. source: "./media/characters/dee-ditto/front.svg",
  48202. extra: 1874/1785,
  48203. bottom: 68/1942
  48204. }
  48205. },
  48206. back: {
  48207. height: math.unit(5 + 8/12, "feet"),
  48208. name: "Back",
  48209. image: {
  48210. source: "./media/characters/dee-ditto/back.svg",
  48211. extra: 1870/1783,
  48212. bottom: 77/1947
  48213. }
  48214. },
  48215. },
  48216. [
  48217. {
  48218. name: "Normal",
  48219. height: math.unit(5 + 8/12, "feet"),
  48220. default: true
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48226. {
  48227. front: {
  48228. height: math.unit(7 + 6/12, "feet"),
  48229. name: "Front",
  48230. image: {
  48231. source: "./media/characters/fey/front.svg",
  48232. extra: 995/979,
  48233. bottom: 30/1025
  48234. }
  48235. },
  48236. back: {
  48237. height: math.unit(7 + 6/12, "feet"),
  48238. name: "Back",
  48239. image: {
  48240. source: "./media/characters/fey/back.svg",
  48241. extra: 1079/1008,
  48242. bottom: 5/1084
  48243. }
  48244. },
  48245. dressed: {
  48246. height: math.unit(7 + 6/12, "feet"),
  48247. name: "Dressed",
  48248. image: {
  48249. source: "./media/characters/fey/dressed.svg",
  48250. extra: 995/979,
  48251. bottom: 30/1025
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(7 + 6/12, "feet"),
  48259. default: true
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48265. {
  48266. standing: {
  48267. height: math.unit(17, "feet"),
  48268. name: "Standing",
  48269. image: {
  48270. source: "./media/characters/aster/standing.svg",
  48271. extra: 1798/1598,
  48272. bottom: 117/1915
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Normal",
  48279. height: math.unit(17, "feet"),
  48280. default: true
  48281. },
  48282. {
  48283. name: "Homewrecker",
  48284. height: math.unit(95, "feet")
  48285. },
  48286. {
  48287. name: "Planet Devourer",
  48288. height: math.unit(1008000, "miles")
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48294. {
  48295. front: {
  48296. height: math.unit(6 + 5/12, "feet"),
  48297. weight: math.unit(265, "lb"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/devon-childs/front.svg",
  48301. extra: 1795/1721,
  48302. bottom: 41/1836
  48303. }
  48304. },
  48305. side: {
  48306. height: math.unit(6 + 5/12, "feet"),
  48307. weight: math.unit(265, "lb"),
  48308. name: "Side",
  48309. image: {
  48310. source: "./media/characters/devon-childs/side.svg",
  48311. extra: 1812/1738,
  48312. bottom: 30/1842
  48313. }
  48314. },
  48315. back: {
  48316. height: math.unit(6 + 5/12, "feet"),
  48317. weight: math.unit(265, "lb"),
  48318. name: "Back",
  48319. image: {
  48320. source: "./media/characters/devon-childs/back.svg",
  48321. extra: 1808/1735,
  48322. bottom: 23/1831
  48323. }
  48324. },
  48325. hand: {
  48326. height: math.unit(1.464, "feet"),
  48327. name: "Hand",
  48328. image: {
  48329. source: "./media/characters/devon-childs/hand.svg"
  48330. }
  48331. },
  48332. foot: {
  48333. height: math.unit(1.6, "feet"),
  48334. name: "Foot",
  48335. image: {
  48336. source: "./media/characters/devon-childs/foot.svg"
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Micro",
  48343. height: math.unit(7, "cm")
  48344. },
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(6 + 5/12, "feet"),
  48348. default: true
  48349. },
  48350. {
  48351. name: "Macro",
  48352. height: math.unit(154, "feet")
  48353. },
  48354. ]
  48355. ))
  48356. characterMakers.push(() => makeCharacter(
  48357. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48358. {
  48359. front: {
  48360. height: math.unit(6, "feet"),
  48361. weight: math.unit(180, "lb"),
  48362. name: "Front",
  48363. image: {
  48364. source: "./media/characters/lydemox-vir/front.svg",
  48365. extra: 1632/1435,
  48366. bottom: 58/1690
  48367. }
  48368. },
  48369. frontSFW: {
  48370. height: math.unit(6, "feet"),
  48371. weight: math.unit(180, "lb"),
  48372. name: "Front (SFW)",
  48373. image: {
  48374. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48375. extra: 1632/1435,
  48376. bottom: 58/1690
  48377. }
  48378. },
  48379. back: {
  48380. height: math.unit(6, "feet"),
  48381. weight: math.unit(180, "lb"),
  48382. name: "Back",
  48383. image: {
  48384. source: "./media/characters/lydemox-vir/back.svg",
  48385. extra: 1593/1408,
  48386. bottom: 31/1624
  48387. }
  48388. },
  48389. paw: {
  48390. height: math.unit(1.85, "feet"),
  48391. name: "Paw",
  48392. image: {
  48393. source: "./media/characters/lydemox-vir/paw.svg"
  48394. }
  48395. },
  48396. dick: {
  48397. height: math.unit(1.8, "feet"),
  48398. name: "Dick",
  48399. image: {
  48400. source: "./media/characters/lydemox-vir/dick.svg"
  48401. }
  48402. },
  48403. },
  48404. [
  48405. {
  48406. name: "Macro",
  48407. height: math.unit(100, "feet"),
  48408. default: true
  48409. },
  48410. {
  48411. name: "Teramacro",
  48412. height: math.unit(1, "earth")
  48413. },
  48414. {
  48415. name: "Planetary",
  48416. height: math.unit(20, "earths")
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48422. {
  48423. front: {
  48424. height: math.unit(15 + 8/12, "feet"),
  48425. weight: math.unit(1237, "kg"),
  48426. name: "Front",
  48427. image: {
  48428. source: "./media/characters/mia/front.svg",
  48429. extra: 1573/1446,
  48430. bottom: 58/1631
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Small",
  48437. height: math.unit(9 + 5/12, "feet")
  48438. },
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(15 + 8/12, "feet"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48448. {
  48449. front: {
  48450. height: math.unit(10 + 6/12, "feet"),
  48451. weight: math.unit(1.3, "tons"),
  48452. name: "Front",
  48453. image: {
  48454. source: "./media/characters/mr-graves/front.svg",
  48455. extra: 1779/1695,
  48456. bottom: 198/1977
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(10 + 6 /12, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48470. {
  48471. dressedFront: {
  48472. height: math.unit(5 + 8/12, "feet"),
  48473. weight: math.unit(125, "lb"),
  48474. name: "Dressed (Front)",
  48475. image: {
  48476. source: "./media/characters/jess/dressed-front.svg",
  48477. extra: 1176/1152,
  48478. bottom: 42/1218
  48479. }
  48480. },
  48481. dressedSide: {
  48482. height: math.unit(5 + 8/12, "feet"),
  48483. weight: math.unit(125, "lb"),
  48484. name: "Dressed (Side)",
  48485. image: {
  48486. source: "./media/characters/jess/dressed-side.svg",
  48487. extra: 1204/1190,
  48488. bottom: 6/1210
  48489. }
  48490. },
  48491. nudeFront: {
  48492. height: math.unit(5 + 8/12, "feet"),
  48493. weight: math.unit(125, "lb"),
  48494. name: "Nude (Front)",
  48495. image: {
  48496. source: "./media/characters/jess/nude-front.svg",
  48497. extra: 1176/1152,
  48498. bottom: 42/1218
  48499. }
  48500. },
  48501. nudeSide: {
  48502. height: math.unit(5 + 8/12, "feet"),
  48503. weight: math.unit(125, "lb"),
  48504. name: "Nude (Side)",
  48505. image: {
  48506. source: "./media/characters/jess/nude-side.svg",
  48507. extra: 1204/1190,
  48508. bottom: 6/1210
  48509. }
  48510. },
  48511. organsFront: {
  48512. height: math.unit(2.83799342105, "feet"),
  48513. name: "Organs (Front)",
  48514. image: {
  48515. source: "./media/characters/jess/organs-front.svg"
  48516. }
  48517. },
  48518. organsSide: {
  48519. height: math.unit(2.64225290474, "feet"),
  48520. name: "Organs (Side)",
  48521. image: {
  48522. source: "./media/characters/jess/organs-side.svg"
  48523. }
  48524. },
  48525. digestiveTractFront: {
  48526. height: math.unit(2.8106580871, "feet"),
  48527. name: "Digestive Tract (Front)",
  48528. image: {
  48529. source: "./media/characters/jess/digestive-tract-front.svg"
  48530. }
  48531. },
  48532. digestiveTractSide: {
  48533. height: math.unit(2.54365045014, "feet"),
  48534. name: "Digestive Tract (Side)",
  48535. image: {
  48536. source: "./media/characters/jess/digestive-tract-side.svg"
  48537. }
  48538. },
  48539. respiratorySystemFront: {
  48540. height: math.unit(1.11196233456, "feet"),
  48541. name: "Respiratory System (Front)",
  48542. image: {
  48543. source: "./media/characters/jess/respiratory-system-front.svg"
  48544. }
  48545. },
  48546. respiratorySystemSide: {
  48547. height: math.unit(0.89327966297, "feet"),
  48548. name: "Respiratory System (Side)",
  48549. image: {
  48550. source: "./media/characters/jess/respiratory-system-side.svg"
  48551. }
  48552. },
  48553. urinaryTractFront: {
  48554. height: math.unit(1.16126356186, "feet"),
  48555. name: "Urinary Tract (Front)",
  48556. image: {
  48557. source: "./media/characters/jess/urinary-tract-front.svg"
  48558. }
  48559. },
  48560. urinaryTractSide: {
  48561. height: math.unit(1.20910039627, "feet"),
  48562. name: "Urinary Tract (Side)",
  48563. image: {
  48564. source: "./media/characters/jess/urinary-tract-side.svg"
  48565. }
  48566. },
  48567. reproductiveOrgansFront: {
  48568. height: math.unit(0.48422591566, "feet"),
  48569. name: "Reproductive Organs (Front)",
  48570. image: {
  48571. source: "./media/characters/jess/reproductive-organs-front.svg"
  48572. }
  48573. },
  48574. reproductiveOrgansSide: {
  48575. height: math.unit(0.61553314481, "feet"),
  48576. name: "Reproductive Organs (Side)",
  48577. image: {
  48578. source: "./media/characters/jess/reproductive-organs-side.svg"
  48579. }
  48580. },
  48581. breastsFront: {
  48582. height: math.unit(0.47690395121, "feet"),
  48583. name: "Breasts (Front)",
  48584. image: {
  48585. source: "./media/characters/jess/breasts-front.svg"
  48586. }
  48587. },
  48588. breastsSide: {
  48589. height: math.unit(0.30556998307, "feet"),
  48590. name: "Breasts (Side)",
  48591. image: {
  48592. source: "./media/characters/jess/breasts-side.svg"
  48593. }
  48594. },
  48595. heartFront: {
  48596. height: math.unit(0.53011022622, "feet"),
  48597. name: "Heart (Front)",
  48598. image: {
  48599. source: "./media/characters/jess/heart-front.svg"
  48600. }
  48601. },
  48602. heartSide: {
  48603. height: math.unit(0.51790695213, "feet"),
  48604. name: "Heart (Side)",
  48605. image: {
  48606. source: "./media/characters/jess/heart-side.svg"
  48607. }
  48608. },
  48609. earsAndNoseFront: {
  48610. height: math.unit(0.29385483995, "feet"),
  48611. name: "Ears and Nose (Front)",
  48612. image: {
  48613. source: "./media/characters/jess/ears-and-nose-front.svg"
  48614. }
  48615. },
  48616. earsAndNoseSide: {
  48617. height: math.unit(0.18109658741, "feet"),
  48618. name: "Ears and Nose (Side)",
  48619. image: {
  48620. source: "./media/characters/jess/ears-and-nose-side.svg"
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(5 + 8/12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(6, "feet"),
  48637. weight: math.unit(6.64467e-7, "grams"),
  48638. name: "Front",
  48639. image: {
  48640. source: "./media/characters/wimpering/front.svg",
  48641. extra: 597/587,
  48642. bottom: 34/631
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Micro",
  48649. height: math.unit(0.4, "mm"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(5 + 2/12, "feet"),
  48659. weight: math.unit(110, "lb"),
  48660. name: "Front",
  48661. image: {
  48662. source: "./media/characters/keltre/front.svg",
  48663. extra: 1099/1057,
  48664. bottom: 22/1121
  48665. }
  48666. },
  48667. back: {
  48668. height: math.unit(5 + 2/12, "feet"),
  48669. weight: math.unit(110, "lb"),
  48670. name: "Back",
  48671. image: {
  48672. source: "./media/characters/keltre/back.svg",
  48673. extra: 1095/1053,
  48674. bottom: 17/1112
  48675. }
  48676. },
  48677. dressed: {
  48678. height: math.unit(5 + 2/12, "feet"),
  48679. weight: math.unit(110, "lb"),
  48680. name: "Dressed",
  48681. image: {
  48682. source: "./media/characters/keltre/dressed.svg",
  48683. extra: 1099/1057,
  48684. bottom: 22/1121
  48685. }
  48686. },
  48687. winter: {
  48688. height: math.unit(5 + 2/12, "feet"),
  48689. weight: math.unit(110, "lb"),
  48690. name: "Winter",
  48691. image: {
  48692. source: "./media/characters/keltre/winter.svg",
  48693. extra: 1099/1057,
  48694. bottom: 22/1121
  48695. }
  48696. },
  48697. head: {
  48698. height: math.unit(1.61 * 0.86, "feet"),
  48699. name: "Head",
  48700. image: {
  48701. source: "./media/characters/keltre/head.svg",
  48702. extra: 534/421,
  48703. bottom: 0/534
  48704. }
  48705. },
  48706. hand: {
  48707. height: math.unit(1.3 * 0.86, "feet"),
  48708. name: "Hand",
  48709. image: {
  48710. source: "./media/characters/keltre/hand.svg"
  48711. }
  48712. },
  48713. foot: {
  48714. height: math.unit(1.8 * 0.86, "feet"),
  48715. name: "Foot",
  48716. image: {
  48717. source: "./media/characters/keltre/foot.svg"
  48718. }
  48719. },
  48720. },
  48721. [
  48722. {
  48723. name: "Fine",
  48724. height: math.unit(1, "inch")
  48725. },
  48726. {
  48727. name: "Dimnutive",
  48728. height: math.unit(4, "inches")
  48729. },
  48730. {
  48731. name: "Tiny",
  48732. height: math.unit(1, "foot")
  48733. },
  48734. {
  48735. name: "Small",
  48736. height: math.unit(3, "feet")
  48737. },
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(5 + 2/12, "feet"),
  48741. default: true
  48742. },
  48743. ]
  48744. ))
  48745. characterMakers.push(() => makeCharacter(
  48746. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48747. {
  48748. front: {
  48749. height: math.unit(6 + 2/12, "feet"),
  48750. name: "Front",
  48751. image: {
  48752. source: "./media/characters/nox/front.svg",
  48753. extra: 1917/1830,
  48754. bottom: 74/1991
  48755. }
  48756. },
  48757. back: {
  48758. height: math.unit(6 + 2/12, "feet"),
  48759. name: "Back",
  48760. image: {
  48761. source: "./media/characters/nox/back.svg",
  48762. extra: 1896/1815,
  48763. bottom: 21/1917
  48764. }
  48765. },
  48766. head: {
  48767. height: math.unit(1.1, "feet"),
  48768. name: "Head",
  48769. image: {
  48770. source: "./media/characters/nox/head.svg",
  48771. extra: 874/704,
  48772. bottom: 0/874
  48773. }
  48774. },
  48775. tattoo: {
  48776. height: math.unit(0.729, "feet"),
  48777. name: "Tattoo",
  48778. image: {
  48779. source: "./media/characters/nox/tattoo.svg"
  48780. }
  48781. },
  48782. },
  48783. [
  48784. {
  48785. name: "Normal",
  48786. height: math.unit(6 + 2/12, "feet")
  48787. },
  48788. {
  48789. name: "Gigamacro",
  48790. height: math.unit(2, "earths"),
  48791. default: true
  48792. },
  48793. {
  48794. name: "Cosmic",
  48795. height: math.unit(867, "yottameters")
  48796. },
  48797. ]
  48798. ))
  48799. characterMakers.push(() => makeCharacter(
  48800. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48801. {
  48802. front: {
  48803. height: math.unit(6, "feet"),
  48804. weight: math.unit(150, "lb"),
  48805. name: "Front",
  48806. image: {
  48807. source: "./media/characters/caspian/front.svg",
  48808. extra: 1443/1359,
  48809. bottom: 0/1443
  48810. }
  48811. },
  48812. back: {
  48813. height: math.unit(6, "feet"),
  48814. weight: math.unit(150, "lb"),
  48815. name: "Back",
  48816. image: {
  48817. source: "./media/characters/caspian/back.svg",
  48818. extra: 1379/1309,
  48819. bottom: 0/1379
  48820. }
  48821. },
  48822. head: {
  48823. height: math.unit(0.9, "feet"),
  48824. name: "Head",
  48825. image: {
  48826. source: "./media/characters/caspian/head.svg",
  48827. extra: 692/492,
  48828. bottom: 0/692
  48829. }
  48830. },
  48831. headAlt: {
  48832. height: math.unit(0.95, "feet"),
  48833. name: "Head (Alt)",
  48834. image: {
  48835. source: "./media/characters/caspian/head-alt.svg",
  48836. extra: 668/508,
  48837. bottom: 0/668
  48838. }
  48839. },
  48840. hand: {
  48841. height: math.unit(0.8, "feet"),
  48842. name: "Hand",
  48843. image: {
  48844. source: "./media/characters/caspian/hand.svg"
  48845. }
  48846. },
  48847. paw: {
  48848. height: math.unit(0.95, "feet"),
  48849. name: "Paw",
  48850. image: {
  48851. source: "./media/characters/caspian/paw.svg"
  48852. }
  48853. },
  48854. },
  48855. [
  48856. {
  48857. name: "Normal",
  48858. height: math.unit(162, "feet"),
  48859. default: true
  48860. },
  48861. ]
  48862. ))
  48863. characterMakers.push(() => makeCharacter(
  48864. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48865. {
  48866. front: {
  48867. height: math.unit(6, "feet"),
  48868. name: "Front",
  48869. image: {
  48870. source: "./media/characters/myra-aisling/front.svg",
  48871. extra: 1268/1166,
  48872. bottom: 73/1341
  48873. }
  48874. },
  48875. back: {
  48876. height: math.unit(6, "feet"),
  48877. name: "Back",
  48878. image: {
  48879. source: "./media/characters/myra-aisling/back.svg",
  48880. extra: 1249/1149,
  48881. bottom: 79/1328
  48882. }
  48883. },
  48884. dressed: {
  48885. height: math.unit(6, "feet"),
  48886. name: "Dressed",
  48887. image: {
  48888. source: "./media/characters/myra-aisling/dressed.svg",
  48889. extra: 1290/1189,
  48890. bottom: 47/1337
  48891. }
  48892. },
  48893. hand: {
  48894. height: math.unit(1.1, "feet"),
  48895. name: "Hand",
  48896. image: {
  48897. source: "./media/characters/myra-aisling/hand.svg"
  48898. }
  48899. },
  48900. paw: {
  48901. height: math.unit(1.23, "feet"),
  48902. name: "Paw",
  48903. image: {
  48904. source: "./media/characters/myra-aisling/paw.svg"
  48905. }
  48906. },
  48907. },
  48908. [
  48909. {
  48910. name: "Normal",
  48911. height: math.unit(160, "feet"),
  48912. default: true
  48913. },
  48914. ]
  48915. ))
  48916. characterMakers.push(() => makeCharacter(
  48917. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48918. {
  48919. front: {
  48920. height: math.unit(6, "feet"),
  48921. name: "Front",
  48922. image: {
  48923. source: "./media/characters/tenley-sidero/front.svg",
  48924. extra: 1365/1276,
  48925. bottom: 47/1412
  48926. }
  48927. },
  48928. back: {
  48929. height: math.unit(6, "feet"),
  48930. name: "Back",
  48931. image: {
  48932. source: "./media/characters/tenley-sidero/back.svg",
  48933. extra: 1383/1283,
  48934. bottom: 35/1418
  48935. }
  48936. },
  48937. dressed: {
  48938. height: math.unit(6, "feet"),
  48939. name: "Dressed",
  48940. image: {
  48941. source: "./media/characters/tenley-sidero/dressed.svg",
  48942. extra: 1364/1275,
  48943. bottom: 42/1406
  48944. }
  48945. },
  48946. head: {
  48947. height: math.unit(1.47, "feet"),
  48948. name: "Head",
  48949. image: {
  48950. source: "./media/characters/tenley-sidero/head.svg",
  48951. extra: 610/490,
  48952. bottom: 0/610
  48953. }
  48954. },
  48955. },
  48956. [
  48957. {
  48958. name: "Normal",
  48959. height: math.unit(154, "feet"),
  48960. default: true
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48966. {
  48967. front: {
  48968. height: math.unit(5, "inches"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/mallory/front.svg",
  48972. extra: 1919/1678,
  48973. bottom: 29/1948
  48974. }
  48975. },
  48976. hand: {
  48977. height: math.unit(0.73, "inches"),
  48978. name: "Hand",
  48979. image: {
  48980. source: "./media/characters/mallory/hand.svg"
  48981. }
  48982. },
  48983. paw: {
  48984. height: math.unit(0.68, "inches"),
  48985. name: "Paw",
  48986. image: {
  48987. source: "./media/characters/mallory/paw.svg"
  48988. }
  48989. },
  48990. },
  48991. [
  48992. {
  48993. name: "Small",
  48994. height: math.unit(5, "inches"),
  48995. default: true
  48996. },
  48997. ]
  48998. ))
  48999. characterMakers.push(() => makeCharacter(
  49000. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49001. {
  49002. naked: {
  49003. height: math.unit(6, "feet"),
  49004. name: "Naked",
  49005. image: {
  49006. source: "./media/characters/mab/naked.svg",
  49007. extra: 1855/1757,
  49008. bottom: 208/2063
  49009. }
  49010. },
  49011. outside: {
  49012. height: math.unit(6, "feet"),
  49013. name: "Outside",
  49014. image: {
  49015. source: "./media/characters/mab/outside.svg",
  49016. extra: 1855/1757,
  49017. bottom: 208/2063
  49018. }
  49019. },
  49020. party: {
  49021. height: math.unit(6, "feet"),
  49022. name: "Party",
  49023. image: {
  49024. source: "./media/characters/mab/party.svg",
  49025. extra: 1855/1757,
  49026. bottom: 208/2063
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Normal",
  49033. height: math.unit(165, "feet"),
  49034. default: true
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49040. {
  49041. front: {
  49042. height: math.unit(12, "feet"),
  49043. weight: math.unit(4000, "lb"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/winter/front.svg",
  49047. extra: 1286/943,
  49048. bottom: 112/1398
  49049. }
  49050. },
  49051. frontNsfw: {
  49052. height: math.unit(12, "feet"),
  49053. weight: math.unit(4000, "lb"),
  49054. name: "Front (NSFW)",
  49055. image: {
  49056. source: "./media/characters/winter/front-nsfw.svg",
  49057. extra: 1286/943,
  49058. bottom: 112/1398
  49059. }
  49060. },
  49061. dick: {
  49062. height: math.unit(3.79, "feet"),
  49063. name: "Dick",
  49064. image: {
  49065. source: "./media/characters/winter/dick.svg"
  49066. }
  49067. },
  49068. },
  49069. [
  49070. {
  49071. name: "Big",
  49072. height: math.unit(12, "feet"),
  49073. default: true
  49074. },
  49075. ]
  49076. ))
  49077. characterMakers.push(() => makeCharacter(
  49078. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49079. {
  49080. front: {
  49081. height: math.unit(4.1, "inches"),
  49082. name: "Front",
  49083. image: {
  49084. source: "./media/characters/alto/front.svg",
  49085. extra: 736/627,
  49086. bottom: 90/826
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(4.1, "inches"),
  49094. default: true
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49100. {
  49101. sitting: {
  49102. height: math.unit(3, "feet"),
  49103. name: "Sitting",
  49104. image: {
  49105. source: "./media/characters/ratstrid-v/sitting.svg",
  49106. extra: 355/310,
  49107. bottom: 136/491
  49108. }
  49109. },
  49110. },
  49111. [
  49112. {
  49113. name: "Normal",
  49114. height: math.unit(3, "feet"),
  49115. default: true
  49116. },
  49117. ]
  49118. ))
  49119. characterMakers.push(() => makeCharacter(
  49120. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49121. {
  49122. back: {
  49123. height: math.unit(6, "feet"),
  49124. weight: math.unit(350, "lb"),
  49125. name: "Back",
  49126. image: {
  49127. source: "./media/characters/siz/back.svg",
  49128. extra: 1449/1274,
  49129. bottom: 13/1462
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Over-Overcompressed",
  49136. height: math.unit(8, "feet")
  49137. },
  49138. {
  49139. name: "Overcompressed",
  49140. height: math.unit(32, "feet")
  49141. },
  49142. {
  49143. name: "Compressed",
  49144. height: math.unit(128, "feet"),
  49145. default: true
  49146. },
  49147. {
  49148. name: "Half-Compressed",
  49149. height: math.unit(512, "feet")
  49150. },
  49151. {
  49152. name: "Quarter-Compressed",
  49153. height: math.unit(2048, "feet")
  49154. },
  49155. {
  49156. name: "Uncompressed?",
  49157. height: math.unit(8192, "feet")
  49158. },
  49159. ]
  49160. ))
  49161. characterMakers.push(() => makeCharacter(
  49162. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49163. {
  49164. front: {
  49165. height: math.unit(5 + 9/12, "feet"),
  49166. weight: math.unit(150, "lb"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/ven/front.svg",
  49170. extra: 1372/1320,
  49171. bottom: 73/1445
  49172. }
  49173. },
  49174. side: {
  49175. height: math.unit(5 + 9/12, "feet"),
  49176. weight: math.unit(1150, "lb"),
  49177. name: "Side",
  49178. image: {
  49179. source: "./media/characters/ven/side.svg",
  49180. extra: 1119/1070,
  49181. bottom: 42/1161
  49182. },
  49183. default: true
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Normal",
  49189. height: math.unit(5 + 9/12, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49196. {
  49197. front: {
  49198. height: math.unit(12, "feet"),
  49199. weight: math.unit(1000, "kg"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/maple/front.svg",
  49203. extra: 1193/1081,
  49204. bottom: 22/1215
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Normal",
  49211. height: math.unit(12, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49218. {
  49219. front: {
  49220. height: math.unit(9, "feet"),
  49221. weight: math.unit(1500, "lb"),
  49222. name: "Front",
  49223. image: {
  49224. source: "./media/characters/nora/front.svg",
  49225. extra: 1348/1286,
  49226. bottom: 218/1566
  49227. }
  49228. },
  49229. erect: {
  49230. height: math.unit(9, "feet"),
  49231. weight: math.unit(11500, "lb"),
  49232. name: "Erect",
  49233. image: {
  49234. source: "./media/characters/nora/erect.svg",
  49235. extra: 1488/1433,
  49236. bottom: 133/1621
  49237. }
  49238. },
  49239. },
  49240. [
  49241. {
  49242. name: "Normal",
  49243. height: math.unit(9, "feet"),
  49244. default: true
  49245. },
  49246. ]
  49247. ))
  49248. characterMakers.push(() => makeCharacter(
  49249. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49250. {
  49251. front: {
  49252. height: math.unit(25, "feet"),
  49253. weight: math.unit(27500, "lb"),
  49254. name: "Front",
  49255. image: {
  49256. source: "./media/characters/north-caudin/front.svg",
  49257. extra: 1184/1082,
  49258. bottom: 23/1207
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(25, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49272. {
  49273. front: {
  49274. height: math.unit(9, "feet"),
  49275. weight: math.unit(1250, "lb"),
  49276. name: "Front",
  49277. image: {
  49278. source: "./media/characters/merrian/front.svg",
  49279. extra: 2393/2304,
  49280. bottom: 40/2433
  49281. }
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(9, "feet"),
  49288. default: true
  49289. },
  49290. ]
  49291. ))
  49292. characterMakers.push(() => makeCharacter(
  49293. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49294. {
  49295. front: {
  49296. height: math.unit(9, "feet"),
  49297. weight: math.unit(1000, "lb"),
  49298. name: "Front",
  49299. image: {
  49300. source: "./media/characters/hazel/front.svg",
  49301. extra: 2351/2298,
  49302. bottom: 38/2389
  49303. }
  49304. },
  49305. },
  49306. [
  49307. {
  49308. name: "Normal",
  49309. height: math.unit(9, "feet"),
  49310. default: true
  49311. },
  49312. ]
  49313. ))
  49314. characterMakers.push(() => makeCharacter(
  49315. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49316. {
  49317. front: {
  49318. height: math.unit(13, "feet"),
  49319. weight: math.unit(3200, "lb"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/emma/front.svg",
  49323. extra: 2263/2029,
  49324. bottom: 68/2331
  49325. }
  49326. },
  49327. },
  49328. [
  49329. {
  49330. name: "Normal",
  49331. height: math.unit(13, "feet"),
  49332. default: true
  49333. },
  49334. ]
  49335. ))
  49336. //characters
  49337. function makeCharacters() {
  49338. const results = [];
  49339. characterMakers.forEach(character => {
  49340. results.push(character());
  49341. });
  49342. return results;
  49343. }